3.6 KiB
3.6 KiB
code终端复现工具
less 类似cat 功能命令
启动 zellij
bash <(curl -L zellij.dev/launch)
或者
https://cn.x-cmd.com/
eval "$(curl https://get.x-cmd.com)"
sudo bash launch-script.sh
zellij --layout devs_rust.kdl
x zellij attach de_rustings
启动 ranger ranger
启动helix hx .
hx --health
rustup component add rust-analyzer
rustup update cargo clean
git clone https://github.com/Axect/Zellaygen
git clone https://github.com/helix-editor/helix
cargo install --locked zellij
cargo install termusic termusic-server --locked
hx .
zellij --layout rustings.kdl
https://zellij.dev/documentation/creating-a-layout.html
bash <(curl -L zellij.dev/launch)
ryan ALL=(ALL) NOPASSWD: /home/ryan/zellaygen/zellij
2022年rust下的tui编程环境体验也可以这么好用了!!!
终端编辑工具:https://github.com/helix-editor/helix (hx)
https://docs.helix-editor.com/install.html
snap install --classic helix
https://www.bilibili.com/read/cv25583084/
https://blog.csdn.net/castellan/article/details/134778980
https://www.163.com/dy/article/HSDF7S5205315NUH.html
使用指南 https://zhuanlan.zhihu.com/p/607673321?utm_id=0
https://www.zhihu.com/question/462847687
helix配置参考 https://github.com/ryan6981/my_helix_editor_config
终端复用工具:https://github.com/zellij-org/zellij (zellij)
https://zellij.dev/
tar -xvf zellij*.tar.gz
check for the execution bit:
chmod +x zellij
and then execute Zellij:
./zellij
Try Zellij without installing
bash/zsh:
bash <(curl -L zellij.dev/launch)
zellij的布局配置工具:https://github.com/Axect/Zellaygen
终端下的git客户端:https://github.com/jesseduffield/lazygit (lazygit)
终端下的文件管理器:https://github.com/ranger/ranger (ranger)
终端下的音乐播放器:https://github.com/tramhao/termusic (termusic)
终端下的文件管理器安装:https://blog.csdn.net/crayon0/article/details/127561052
git clone https://github.com/HeyPuter/puter
git clone https://github.com/Axect/Zellaygen.git
cd puter
docker compose up
增加交换空间:如果你的物理内存有限,可以考虑增加交换空间。在 Linux 系统中,可以通过以下命令查看和创建 swap 文件:
查看现有交换空间:
bash
free -h
创建一个新的 swap 文件(例如创建一个 2GB 的 swap 文件):
bash
sudo fallocate -l 2G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
若要永久启用新的 swap 文件,将其添加到 /etc/fstab 文件中
请问怎么添加?具体操作
若要将新创建的 swap 文件永久添加到系统中,请按照以下步骤操作:
打开 /etc/fstab 文件进行编辑。这通常需要管理员权限,你可以使用以下命令之一:
bash
sudo nano /etc/fstab
# 或者使用你喜欢的编辑器,如 vim:
sudo vim /etc/fstab
在 /etc/fstab 文件的末尾添加一行,指定 swap 文件的位置以及相关选项。例如,如果你之前创建了一个名为 /swapfile 的 swap 文件,那么应该添加这样的行:
bash
/swapfile none swap sw 0 0
这里的含义是:
/swapfile 是你的 swap 文件路径。
none 表示没有挂载点,因为 swap 不是一个文件系统,而是一种特殊类型的“设备”。
swap 表示此条目是用于 swap 类型的分区或文件。
sw 是标志,指定了 swap 设备的标准选项。
0 表示优先级,这里设置为 0,意味着正常默认优先级。
0 表示是否在启动时检查 swap 分区,设为 0 表示不检查。
保存并退出编辑器。在 Nano 中,按 Ctrl+X,然后按 `Y