1.限速的那点事
scp -l 200 -P portnum [email protected]:files ./(单位为bit)
wget -q -t 0 -w 30 --limit=60k url/file (单位可指定)
2.定时任务那点事
crontab -e (编辑)
-l (列出当前的任务)
临时
at (at 时间 命令 ctrl + D 结束)
atq 查询当前任务列表
atrm
at 13:10
> /bin/command
ctrl + D
此处需要绝对路径
3.链接(快捷方式)的那点事
lndir -silent 源文件夹 目的文件夹
ln -s 源 目的 (此处需要绝对路径) (软连接)
文件夹无法创建硬连接
4.linux交互那点事
mesg 控制终端是否接收消息
write 指定一个在线用户接收消息
wall 向所有在线用户广播
mseg y/mseg n (打开或关闭终端消息)
wall "messages"
$write root pts/0
$"message"
$Ctrl+C
5.系统设置(开机自启等)的那点事
ntsysv
setup (红帽系)
6.其他
lsof -i :portnumber -t
-t 只输出进程号 用于管道命令
bash_completion bash命令参数补全
直接 yum
yum install bash_completion
无密码登录
ssh-keygen -t rsa
scp ~/.ssh/id_rsa.pub [email protected]:.ssh/id_rsa.pub
时间: 2024-09-28 02:21:11