linux实验-基本指令1
Posted J.double
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux实验-基本指令1相关的知识,希望对你有一定的参考价值。
刚开始就用root账号登进去
1 进入tmp目录 cd /tmp
2 创建目录 mkdir myshare
创建用户 useradd testuser
设置密码 passwd testuser
3 修改文件权限 chown -R testuser:users myshare
4 切换账号 su testuser
进入myshare目录 cd /tmp/myshare
vi hello.sh
5 保存文件后,赋予权限 chmod 751 hello.sh
6 ./hello.sh
7 cd ~
ln -s /tmp/myshare/hello.sh myhello.sh
cp -p /tmp/myshare/hello.sh hello.sh.bak
8 回到root账号 su root
find / -name "*.conf" >output.txt
9 find / -name "*.conf" |xargs du -h |sort -n | tail -1 >> output.txt
find / -name "*.conf" |xargs du -h |sort -n | tail -1 >> output.txt
再vi output.txt把文件里面后面两行的文件名删掉。
10 who -a | wc -l >>output.txt
11 unix2dos -n output.txt.dos output.txt
12 tar -zcvf double.tar.gz testuser
以上是关于linux实验-基本指令1的主要内容,如果未能解决你的问题,请参考以下文章