Skip to content

Commit 65893a0

Browse files
committed
progressing remote-dev note
1 parent dbb8060 commit 65893a0

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

content/notes/posts/zellij-tmux-cf-remote-dev.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,51 @@ draft: true
2222

2323
## Install Zellij
2424

25+
Zellij is a modern terminal workspace and multiplexer written in Rust.
2526

27+
### Download and Install
28+
29+
1. Create a local bin directory for user installations:
30+
```bash
31+
mkdir -p ~/.local/bin
32+
```
33+
34+
2. Download Zellij for Linux:
35+
```bash
36+
cd /tmp
37+
wget https://github.com/zellij-org/zellij/releases/download/v0.43.1/zellij-x86_64-unknown-linux-musl.tar.gz
38+
```
39+
40+
3. Extract and install the binary:
41+
```bash
42+
tar -xvf zellij-x86_64-unknown-linux-musl.tar.gz
43+
chmod +x zellij
44+
mv zellij ~/.local/bin/
45+
```
46+
47+
4. Add the local bin directory to your PATH:
48+
```bash
49+
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
50+
source ~/.bashrc
51+
```
52+
53+
5. Verify the installation:
54+
```bash
55+
zellij --version
56+
# Output: zellij 0.43.1
57+
```
58+
59+
### First Run
60+
61+
Start Zellij with:
62+
```bash
63+
zellij
64+
```
65+
66+
Or attach to an existing session:
67+
```bash
68+
zellij attach
69+
```
2670

2771
## Install Cloudflared
2872

0 commit comments

Comments
 (0)