1.sudo 管理员root身份2.mkdir 创建文件夹 touch 创建文件3.rm 删除4.chmod 赋予权限r(读取):4w(写):2x(执行):1rwx=7,r-x=5等等;赋予所有权限就是 sudo chmod 7775.ls 查看当前文件夹所有项/ls -l ...
1.sudo 管理员root身份
2.mkdir 创建文件夹 touch 创建文件
3.rm 删除
4.chmod 赋予权限
r(读取):4
w(写):2
x(执行):1
rwx=7,r-x=5等等;
赋予所有权限就是 sudo chmod 777
5.ls 查看当前文件夹所有项/ls -l 查看当前文件夹所有项的详细信息,开头d代表文件夹;-代表文件
6.nano 打开文件
7.tail -n 10 text.log 查看倒数十行(tail --help 查看tail具体都有哪些操作命令)
8.man 查看帮助文档(eg. man tail)
9.
沃梦达教程
本文标题为:python学习-linux基本操作
猜你喜欢
- 在centos6.4下安装python3.5 2023-09-04
- Python之路-Python中的线程与进程 2023-09-04
- python中defaultdict用法实例详解 2022-10-20
- Python实现将DNA序列存储为tfr文件并读取流程介绍 2022-10-20
- python线程池ThreadPoolExecutor与进程池ProcessPoolExecutor 2023-09-04
- python中列表添加元素的几种方式(+、append()、ext 2022-09-02
- Python Pandas如何获取和修改任意位置的值(at,iat,loc,iloc) 2023-08-04
- Python 保存数据的方法(4种方法) 2023-09-04
- CentOS7 安装 Python3.6 2023-09-04
- windows安装python2.7.12和pycharm2018教程 2023-09-03