Linux 基本命令2
用户管理类命令:
passwd :修改密码 su :切换用户 useradd/userdel :增添/删减用户
文件目录类命令:
ls :查看 cd :进入 touch :创建文件 cp :复制
mv :剪切 exit :退出 rm :删除 mkdir :创建目录
du :查看文件大小 pwd :查看当前路径
压缩打包类命令:
gzip bzip2 tar
查找类命令:
find grep(搜索具体数据)
其他命令:
cp -rf 复制文件夹 cat +文件: 显示文件内容
./文件名 执行一个文件,提供其路径
应用: cd/home cp -rf/usr/sbin ./ 把usr里的sbin文件夹拷贝到当前目录
du .sm sbin 查看sbin的大小 # find/usr .name "chroot" 查找chroot
grep +hello world/* *为所有含有hello world的文件 在后面加-R代表递归的意思
mv hellp hello 把文件hellp名字改为hello
mv/hellp/usr/hello 把文件hellp名字改为hello放在usr目录里
mkdir -p/home/abc/def : 创建目录,就算abc文件夹不存在也可一同创建
r: 4 w :2 x :1 改变脚本权限
chmod 777+文件名 文件变为可读可写可执行
tar -zcf c.tar.gz c tar -zcf+压缩包+需压缩文件
tar -xzf +压缩包+需解压文件
tar -zcf xxx.tar.gz xxx sbin 同时压缩xxx和sbin两个文件
软连接 ln -s/home/c xxx xxx与文件c里的内容变为一样
ps -elf 查看所有进程 kill -9 进程号 强制杀死进程
free :查看内存 ifcofig 配置网络