linux常用命令
查看ip: ip addr show
查看内存使用 free
终端分屏/多屏管理 screen/tmux
编辑文件 gedit
或 vim
vim退出: :wq
(保存) :q!
(不保存)
tmux 向上向下翻页,翻屏
先按 ctrl +b
,松开,然后再按 [
实现上下翻页
进入翻屏模式后,PgUp
PgDn
实现上下翻页
退出翻屏模式:按q
deb文件的安装与卸载
- 安装:
sudo dpkg -i package_name.deb
- 卸载:
- 不知道包名的情况下:
dpkg -l '*name*'
(先模糊搜索列出包名) - 知道包名后,再
sudo dpkg -r package_name.deb
- 不知道包名的情况下:
软连接
ln -s 源文件 目标文件
例如: ln -s ~/Develop/1.py ./1.py
查看文件夹大小
du -sh ./
查看docker占用
docker stats
设置自启动项
在/etc/rc.local
文件夹中编辑需要的命令即可,例如,若要开机运行code-server &
命令,则:
#!/bin/bash
# THIS FILE IS ADDED FOR COMPATIBILITY PURPOSES
#
# It is highly advisable to create own systemd services or udev rules
# to run scripts during boot instead of using this file.
#
# In contrast to previous versions due to parallel execution during boot
# this script will NOT be run after all other services.
#
# Please note that you must run 'chmod +x /etc/rc.d/rc.local' to ensure
# that this script will be executed during boot.
touch /var/lock/subsys/local
code-server &
echo started
exit 0
tmux 向上向下翻页,翻屏
进入tmux翻屏模式
先按 ctrl +b,松开,然后再按 [
实现上下翻页
进入翻屏模式后,PgUp PgDn 实现上下翻页
退出翻屏模式
q