ls mkdir rm rm -f
man -rm ( 参数 /-f 查找 n 退出 q )
文件结构:
分区 sda1 。。
http://billie66.github.io/TLCL/book/index.html
wget http://imooc.com
file index.html
mv index.html index
cat less 分页 vim grep 查找 echo
man -rm ( 参数 /-f 查找 n 退出 q )
文件结构:
分区 sda1 。。
http://billie66.github.io/TLCL/book/index.html
wget http://imooc.com
file index.html
mv index.html index
cat less 分页 vim grep 查找 echo
2017-12-09
解压缩
unzip *.zip
tar zxvf *.tar.gz
tar jxvf *.tar.bz2
打包
zip -r *.zip /*/*/
tar zcvf *.tat.gz /*/*/
tar zcvf *.tar.bz2
unzip *.zip
tar zxvf *.tar.gz
tar jxvf *.tar.bz2
打包
zip -r *.zip /*/*/
tar zcvf *.tat.gz /*/*/
tar zcvf *.tar.bz2
2017-12-09
everything is file
/dev --硬件信息
标准输出:
> >> 2> -stderror
标准输入:
< 管道 |
keep it simple
cat files.txt | uniq | grep txt | sort
用户文件权限:
change file mode chmod
/dev --硬件信息
标准输出:
> >> 2> -stderror
标准输入:
< 管道 |
keep it simple
cat files.txt | uniq | grep txt | sort
用户文件权限:
change file mode chmod
2017-12-09
进程 process PID
ps process status
ps aux | less
ps aux | grep java
Ctrl + Shift + c 复制 Ctrl + Shift + v 粘贴
kill PID kill -9 PID
Ctrl + ⬆️ 切换到上一个命令的终端标签
Ctrl + Alt + F1 新的控制台
Ctrl + Alt + F7 回到之前的控制台
ps process status
ps aux | less
ps aux | grep java
Ctrl + Shift + c 复制 Ctrl + Shift + v 粘贴
kill PID kill -9 PID
Ctrl + ⬆️ 切换到上一个命令的终端标签
Ctrl + Alt + F1 新的控制台
Ctrl + Alt + F7 回到之前的控制台
2017-12-09
查找
locate
find
grep
sudo updatedb --每天只自动执行一次 --locate --> db
find . | grep .txt --> file System
find . -type f
find . -type d
locate
find
grep
sudo updatedb --每天只自动执行一次 --locate --> db
find . | grep .txt --> file System
find . -type f
find . -type d
2017-12-09
--链接
ssh 22
tumx --终端插件
remote synchronization rsync 远程终端同步数据
上传
rsync -r mydir root@remotehost:
下载
rsync -r root@remotehost:mydir .
Linux 安装软件
手动安装 deb包 从apt-get 仓库安装
ssh 22
tumx --终端插件
remote synchronization rsync 远程终端同步数据
上传
rsync -r mydir root@remotehost:
下载
rsync -r root@remotehost:mydir .
Linux 安装软件
手动安装 deb包 从apt-get 仓库安装
2017-12-09