Linux命令笔记

泪湿孤枕 提交于 2020-03-23 18:42:46

 

1. 复制文件

cp src_file dst_file

 

2. 切换用户

wayde@waydeserver:~$ su root
Password: 
root@waydeserver:/home/wayde# 

 

3. 查看当前所有进程

ps -ef

查看某进程是否存在

ps -ef | grep ps_name

 

4. U盘操作

查看U盘设备名称:

fdisk -l

mount FAT格式的U盘

mount -t vfat /dev/sdb1 /mnt/usb

unmount

umount /mnt/usb

 

5. 重启

[root@localhost ~]# shutdown -r now
#重启, now是现在重启的意思
[root@localhost ~]# shutdown -r 05:30
#指定时间重启,但会占用前台终端
[root@localhost ~]# shutdown -r 05:30 &
#把定义重启命令放入后台,&是后台的意思
[root@localhost ~]# shutdown -c
#取消定时重启
[root@localhost ~]# shutdown -r +10
#10分钟之后重启

 

6. 挂载CDROM

mount -t iso9660 /dev/cdrom /mnt/cdrom

 

7. 查看网络状态

netstat -ntlup

 

8. 查看防火墙状态

ufw status

 

9. 使防火墙允许某端口的连接

ufw allow 5600/tcp

 

10. 查找文件

find / -name file_name

 

11. 修改密码

passwd user_name

 

12. 设置IP

ifconfig your_eth_name 192.168.2.1 netmask 255.255.255.0

 

13. 脱离终端运行程序

nohup ./your_sh > /dev/null 2> /dev/null &

 

14. 修改默认gcc版本

sudo rm /usr/bin/gcc
sudo ln -s /usr/bin/gcc-5 /usr/bin/gcc

 

15. 查看service状态

service --status-all

 

16. 修改系统时区

timedatectl set-timezone 'Asia/Shanghai'

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!