ubuntu(Linux)常用命令2
这些命令一定要非常熟悉,最好是全部背下来,做到能够手写输入
查看软件xxx安装内容
- dpkg -L xxx
- apt-cache search 正则表达式
- dpkg -S filename
apt-file search filename
- apt-cache depends xxx
查询软件xxx被哪些包依赖
- apt-cache rdepends xxx
- sudo apt-cdrom add
- sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade
- dpkg -l |grep ^rc|awk '{print $2}' |tr ["n"] [" "]|sudo xargs dpkg -P -
- sudo auto-apt run ./configure
- ls /var/cache/apt/archives
- dpkg --get-selections | grep -v deinstall > ~/somefile
- dpkg --set-selections < ~/somefile
sudo dselect
- sudo apt-get autoclean
- sudo apt-get clean
- sudo apt-get autoremove
- apt-get -qq --print-uris install ssh | cut -d' -f2
- uname -a
- cat /etc/issue
- lsmod
- lspci
- lsusb
- sudo ethtool eth0
- cat /proc/cpuinfo
- lshw
- sudo fdisk -l
- sudo hdparm -i /dev/hda
- sudo hdparm -I /dev/sda
或
sudo apt-get install blktool
sudo blktool /dev/sda id
- df -h
df -H
- du -hs 目录名
- sync
fuser -km /media/usbdisk
- free -m
- ps -A
- kill 进程号(就是ps -A中的第一列的数字)
或者 killall 进程名
- kill -9 进程号
或者 killall -9 进程名
- xkill 出现骷髅标志的鼠标,点击需要中止的程序即可
- top
- lsof -p
- sudo pppoeconf
- sudo pon dsl-provider
- sudo /etc/ppp/pppoe_on_boot
- sudo poff
- sudo plog
- #首先去 http://www.3322.org 申请一个动态域名
#然后修改 /etc/ppp/ip-up 增加拨号时更新域名指令
sudo vim /etc/ppp/ip-up
#在最后增加如下行
w3m -no-cookie -dump 'http://username:password@members.3322.org/dyndns/update?system=dyndns&hostname=yourdns.3322.org'
- arping IP地址
- ifconfig eth0 |awk '/inet/ {split($2,x,":");print x[2]}'
- w3m -no-cookie -dump www.ip138.com|grep -o '[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}'
w3m -no-cookie -dump www.123cha.com|grep -o '[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}'
w3m -no-cookie -dump ip.loveroot.com|grep -o '[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}'
- lsof -i :80
- arp -a | awk '{print $4}'
ifconfig eth0 | head -1 | awk '{print $5}'
- echo 1 | sudo tee /proc/sys/net/ipv4/ip_forward
sudo iptables -t nat -I POSTROUTING -j MASQUERADE
- netstat -rn
sudo route -n
- sudo route add -net 192.168.0.0 netmask 255.255.255.0 gw 172.16.0.1
sudo route del -net 192.168.0.0 netmask 255.255.255.0 gw 172.16.0.1
- sudo ifconfig eth0 down #关闭网卡
sudo ifconfig eth0 hw ether 00:AA:BB:CC:DD:EE #然后改地址
sudo ifconfig eth0 up #然后启动网卡
- netstat -na|grep ESTABLISHED|awk '{print $5}'|awk -F: '{print $1}'|sort|uniq -c|sort -r -n
netstat -na|grep SYN|awk '{print $5}'|awk -F: '{print $1}'|sort|uniq -c|sort -r -n
- tcpdump -tnn -c 20000 -i eth0 | awk -F "." '{print $1"."$2"."$3"."$4}' | sort | uniq -c | sort -nr | awk ' $1 > 100 '
- echo "blacklist ipv6" | sudo tee /etc/modprobe.d/blacklist-ipv6
- sudo update-rc.d 服务名 defaults 99
- sudo update-rc.d 服务名 remove
- /etc/init.d/服务名 restart
- /etc/init.d/服务名 stop
- /etc/init.d/服务名 start
- sudo update-alternatives --config java
- sudo chfn userid
- export http_proxy=http://xx.xx.xx.xx:xxx
- sudo vim /etc/motd
- sudo apt-get install convmv
convmv -r -f cp936 -t utf8 --notest --nosmart *
- find src -type d -exec mkdir -p utf8/{} ;
find src -type f -exec iconv -f GBK -t UTF-8 {} -o utf8/{} ;
mv utf8/* src
rm -fr utf8
- iconv -f gbk -t utf8 $i > newfile
- sudo apt-get install python-mutagen
find . -iname “*.mp3” -execdir mid3iconv -e GBK {} ;
- sudo apt-get install zhcon
使用时,输入zhcon即可
- whereis filename
- find 目录 -name 文件名
- file filename
- tail -n 6 xxx
- tail -n 10 -f /var/log/apache2/access.log
- sed -n '5,10p' /var/log/apache2/access.log
- grep -l -r xxx .
- apropos xxx
man -k xxx
- scp -rp /path/filename username@remoteIP:/path #将本地文件拷贝到服务器上
scp -rp username@remoteIP:/path/filename /path #将远程文件从服务器下载到本地
- lsof 文件名
- rename 's/.rm$/.rmvb/' *
- rename 'tr/A-Z/a-z/' *
- rm -- --help.txt 或者 rm ./--help.txt
- ls -d */. 或 echo */.
- find . -type f -atime -30 -exec mv {} ../back ;
- find . -mmin +120 -mmin -480 -exec more {} ;
- find . -type f -mtime +30 -mtime -3600 -exec rm {} ;
- find . -name '*.avi' -o -name '*.rm' -user 'guest' -exec rm {} ;
- find . ! -name *.java ! -name ‘*.xml’ -atime +7 -exec rm {} ;
- ls /usr/bin|wc -w
- ls -l /usr/bin|grep ^d|wc -l
- ls -l |grep 2006-01-01 |awk '{print $8}'
- tar -zxvf xxx.tar.gz
- tar -jxvf xxx.tar.bz2
- tar -zcvf xxx.tar.gz aaa bbb
- tar -jcvf xxx.tar.bz2 aaa bbb
- Ctrl+h
- Ctrl+l
- * computer:/// - 全部挂载的设备和网络
* network:/// - 浏览可用的网络
* burn:/// - 一个刻录 CDs/DVDs 的数据虚拟目录
* smb:/// - 可用的 windows/samba 网络资源
* x-nautilus-desktop:/// - 桌面项目和图标
* file:/// - 本地文件
* trash:/// - 本地回收站目录
* ftp:// - FTP 文件夹
* ssh:// - SSH 文件夹
* fonts:/// - 字体文件夹,可将字体文件拖到此处以完成安装
* themes:/// - 系统主题文件夹
- 在nautilus的地址栏里输入”fonts:///“,就可以查看本机所有的fonts
- strace -f -F -o outfile <cmd>
- #date -s mm/dd/yy
- #date -s HH:MM
- hwclock --systohc
- hwclock --hctosys
- sudo ntpdate time.nist.gov
sudo ntpdate time.windows.com
- Ctrl + ALT + ←
Ctrl + ALT + →
- Ctrl + ALT + Fn(n:1~7)
- SHIFT + pageUp/pageDown
- setterm -dump n(n:1~7)
- /var/lib/mysql
- mysqldump 数据库名 > 文件名 #导出数据库
mysqladmin create 数据库名 #建立数据库
mysql 数据库名 < 文件名 #导入数据库
- sudo /etc/init.d/mysql stop
sudo mysqld_safe --skip-grant-tables &
sudo mysqladmin -u user password 'newpassword''
sudo mysqladmin flush-privileges
- sudo mysqladmin -uroot -p password '你的新密码'
- wget -r -p -np -k http://www.21cn.com
· -r:在本机建立服务器端目录结构;
· -p: 下载显示HTML文件的所有图片;
· -np:只下载目标站点指定目录及其子目录的内容;
· -k: 转换非相对链接为相对链接。
- rm ~/.recently-used
- 点击菜单,鼠标停留在某条菜单上,键盘输入任意你所需要的键,可以是组合键,会立即生效;
如果要清除该快捷键,请使用backspace
- sudo cp /usr/share/vim/vimcurrent/vimrc_example.vim /usr/share/vim/vimrc
- cd ~/.config/autostart
rm 需要删除启动程序