Skip to content

Commit 602f5ac

Browse files
author
OPC CI
committed
Adds tmux article.
1 parent f7d3ab3 commit 602f5ac

File tree

2 files changed

+60
-0
lines changed

2 files changed

+60
-0
lines changed

TABLE_OF_CONTENTS.md

+1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@
7575
* [Capture a screenshot](./development/guides/capture-a-screenshot.md)
7676
* [Compare two fingerprints](./development/guides/diff-fingerprints.md)
7777
* [Customize the drive ui](./development/guides/customize-the-drive-ui.md)
78+
* [TMUX and EON Cheatsheet](./development/guides/tmux.md)
7879

7980
### Tools
8081

development/guides/tmux.md

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# Comma EON: tmux cheatsheet for NEOS
2+
3+
This is more of a reference post rather than a tutorial.
4+
The EON is specifically different with normal tmux documentation.
5+
6+
Although I don’t understand the reasoning just yet, I can tell you the basics of what I’ve learned. I will continue to update this reference as I get more information. I’m also going to give you a cross platform view of different ways to attach tmux in different terminal emulators. From what I’m seeing, they’re all the same.
7+
8+
**TLDR;**
9+
If you’re just looking to detach from tmux on EON, the hot keys are ```+ `d`
10+
11+
## Open Terminal / PowerShell
12+
13+
On **Mac**: `CMD+SPACEBAR` and type `Terminal` and press **Return**.
14+
15+
![img](https://cdn-images-1.medium.com/max/800/1*ZyRv0BkXaGwYjXkR2WdWuQ.gif)
16+
17+
On **Windows**: Press the`WINDOWS KEY` on your keyboard and type `PowerShell` and Right click the result and click `Run as Administrator` or right click the Start Menu icon and go to `Power Shell (Admin)`
18+
19+
![img](https://cdn-images-1.medium.com/max/800/1*xZRlRe01VE-CW9mvj3G5oQ.gif)
20+
21+
> **A NOTE ABOUT WINDOWS**:
22+
> I recommend getting comfortable with PowerShell and using Chocolatey Package Manager + OpenSSH.
23+
> Learn how to set this up by following my guide below:
24+
25+
[**Comma EON: Installing Tools for Accessing EON via SSH on Windows 10**
26+
*On most unix-based platforms, including MacOS and Ubuntu you will have the tools you need to connect to your Comma EON…*medium.com](https://medium.com/@jfrux/comma-eon-installing-tools-for-accessing-eon-via-ssh-on-windows-d8eb1ba7e7e5)
27+
28+
On **Ubuntu**: `CTRL+ALT+T`
29+
30+
You will remain in Terminal / PowerShell for the majority of this article series.
31+
32+
## Get Connected
33+
34+
Ensure your EON is connected to the same wifi network as you and then connect to it via SSH like so:
35+
36+
```
37+
ssh root@<IP_ADDRESS_OF_EON> -p 8022 -i ~/.ssh/openpilot_rsa
38+
```
39+
40+
> For additional information on how to SSH into your EON, checkout my article on [Connecting to EON via SSH](https://medium.com/@jfrux/comma-eon-getting-connected-with-ssh-3ed6136e4a75). It also contains information on determining your EON’s IP address, and its Wifi settings.
41+
42+
[**Comma EON: Getting Connected with SSH**
43+
*Recently I’ve noticed loads of requests for a simpler guide to getting connected to EON. The “dashcam” device that is…*medium.com](https://medium.com/@jfrux/comma-eon-getting-connected-with-ssh-3ed6136e4a75)
44+
45+
![img](https://cdn-images-1.medium.com/max/800/1*V2RwhZQ5GOWHHQ0aSPgXxw.gif)
46+
47+
### Attaching
48+
49+
You can attach to the tmux session with the standard command:
50+
51+
```
52+
tmux attach
53+
```
54+
55+
### Detaching
56+
57+
Detaching from the EON tmux session is different than normal…
58+
59+
On Mac: ``` + `d`On Linux: ``` + `d`On Windows w/ OpenSSH: ``` + `d`On Windows w/ PuTTY: ``` + `d`

0 commit comments

Comments
 (0)