2018年1月23日

Linux查看端口占用进程

摘要: Linux查看端口占用进程 netstat -anlp|grep 8081 此处3195为进程ID 阅读全文

posted @ 2018-01-23 16:18 嘣嘣嚓 阅读(240) 评论(0) 推荐(0) 编辑

Linux修改文件权限

摘要: 修改文件读写执行权限 rwx rwx rwx 分为三段,用户权限 用户组权限 其他人权限 r-r-r 添加权限 chmod +w test.txt rw-r-r默认在用户权限下添加 chmod u+w/r/x test.txt 给用户添加权限 chmod g+w/r/x test.txt 给用户组添 阅读全文

posted @ 2018-01-23 16:07 嘣嘣嚓 阅读(362) 评论(0) 推荐(0) 编辑

Linux查看外网IP

摘要: Linux查看外网IP curl cip.cc curl ifconfig.me curl ipinfo.io 阅读全文

posted @ 2018-01-23 16:06 嘣嘣嚓 阅读(166) 评论(0) 推荐(0) 编辑

linux挂载/卸载优盘

摘要: linux载入优盘 查看优盘 ls /dev/ sdb1 挂载到/mnt/usb目录 mount /dev/sdb1 /mnt/usb ntfs优盘需要安装ntfs-3g mount -t ntfs-3g /dev/sdb1 /mnt/usb 卸载优盘 umount /mnt/usb 阅读全文

posted @ 2018-01-23 16:05 嘣嘣嚓 阅读(3417) 评论(0) 推荐(0) 编辑

导航