linux基本操作练习

这篇博客详细介绍了在Linux环境中进行文件操作的多个步骤,包括创建目录、文件、软硬链接,重定向输入输出,使用echo命令,编辑文件如passwd、group等,以及使用vim进行文本编辑。此外,还涵盖了查看文件内容、使用文本处理命令、复制移动文件、查找文件、打包压缩文件、用户和组管理,以及权限设置等核心系统管理任务。这些练习旨在提升用户对Linux系统的熟悉度和操作能力。
摘要由CSDN通过智能技术生成

1、创建文件命令练习:
(1) 在/目录下创建一个临时目录test;
(2)在临时目录test下创建五个文件,文件名分别为passwd,group,bashrc,profile,sshd_config;
(3)在/test创建/etc/motd的软链接,文件名为motd.soft;创建/etc/motd的硬链接为motd.hard

#mkdir /test
# touch /test/passwd /test/group /test/bashrc /test/profile /test/sshd_config
# ls /test/
# ln -s /etc/motd  /test/motd.soft
# ln /etc/motd /test/motd.hard


2、重定向练习:
(1)将系统内核版本信息,发行版本信息,写入到/test/motd.soft文件中
(2)将当前主机主机名,当前用户使用的shell信息追加到/test/motd.hard文件中
(3)将根目录下的文件的文件名写入/test/file文件中
(4)查看当前工作目录是否为/test目录,将当前工作目录的详细信息追加到/test/file文件中

# uname -srm >> /test/motd.soft
# who am i >> /test/motd.hard 
# cat /etc/shells >> /test/motd.hard 
#ls / >> /test/file
# ll >> /test/file 

3、echo命令练习
(1)将当前时间添加至/test目录下的passwd,group,bashrc,profile,sshd_config文件中
(2)将当前用户的用户名追加至/test目录下的passwd,group,bashrc,profile,sshd_config文件中

# echo $(date) >> /test/group ;echo $(date) >> /test/bashrc ; echo $(date) >> /test/profile ; echo $(date) >> /test/sshd_config 
#who am i >> /test/profile

4、vim命令练习:
(1)将/etc/passwd文件内容读入/test/passwd,并修改文件里的root字符为admin
(2)将/etc/group文件内容读入/test/group,只保留root开头的行内容
(3)将/root/.bashrc文件内容读入/test/bashrc,删除#号开头的行内容
(4)将/etc/ssh/sshd_config文件内容读入/test/sshd_config,在该文件的第17行后添加一行内容Port 22
(5)将/test/sshd_config文件中的第40-50行的yes改为no
(6)将/test/sshd_config文件另存为/test/sshd.conf
(7)将/test目录下的passwd,group,bashrc文件中的第一行内容复制至文档最后一行
(8)将/test目录下的profile,sshd_config文件中前两行内容复制至文档倒数第二行

(1):%s/root/admin/g
(2)3,38 d
(3):g/#/d
(4):set nu
    17G
(5):set nu 
   :40,50 s/no/yes
(6)# mv /test/sshd_config  /test/sshd.conf
(7)yy   G p
(8)先按v进入视图模式,然后根据报表括入内容,然后按y,再shift+g到末尾再按p复制

5、文件内容查看:
(1)查看/etc/passwd文件的第6行
(2)查看/etc/selinux/config 以 SELINUX开头的行
(3)查找/etc/ssh/sshd_config 以no结尾的行
(4)过滤/etc/ssh/sshd_config 包含数字的行

(1)# cat /etc/passwd | head -n 6
(2)# cat /etc/selinux/config | grep SELINUX
(4)# cat /etc/ssh/sshd_config | grep '[0-9]'

6、文本处理命令:
(1)查看/etc/passwd文件以 : 为分隔符的第一列内容,并按字母逆序排序
(2)使用cut命令将当前主机的ip地址切割显示

(1)# cut -d : -f 1 /etc/passwd | sort -r
(2)ip a show ens33 | grep inet | tr -s " " | cut -d / -f 1 | cut -d " " -f 3


7、复制、移动
(1)在/test目录下创建一个子目录dir,将/etc/passwd复制到该目录
(2)将/etc/ssh/sshd_config文件复制到/test目录
(3)将/etc/yum.repos.d/目录复制到/test目录
(4)将/etc/hosts文件复制到/test目录
(5)将/etc/hostname文件复制到/test目录
(6)将/test/sshd_config文件移动到/test/dir目录下并改名为sshd.conf

​
(1)# mkdir /test/dir
# cp /etc/passwd /test/dir
(2)# cp /etc/ssh/sshd_config  /test/
(3)# cp -r /etc/yum.repos.d/ /test
(4)# cp /etc/hosts /test
(5)# cp /etc/hostname /test/
(6)# mv /test/sshd_config  /test/dir/sshd.conf
​

8、文件查找
(1)在/etc/目录下寻找以host开头的文件
(2)在/test/下面查找目录文件
(3)在/test目录及子目录中,查找超过2KB的文件

(1)find /etc –name “host*” –print
(2)find /test/ -type d
(3)# find /test/ -size +2k

9、打包压缩
(1)将/test目录下的文件全部打包并用gzip压缩成/test/newfile.tar.gz
(2)将newfile.tar.gz下载至windows客户端主机
(3)在/test目录内,备份/etc下的所有文件并保留其权限

(1)#tar -zvf newfile.tar.gz /test/
(2)打开xshell文件传输功能,传输即可
(3)#tar -zcvfp etcfile.tar.gz  /etc/

10、创建mygroup组,group组,GID为600的temp组及组id为40000的adminuser组

[root@localhost orange]# groupadd mygroup 
[root@localhost orange]# groupadd group 
[root@localhost orange]# groupadd -g 600 temp
[root@localhost orange]# groupadd -g 40000 adminuser
[root@localhost orange]# more /etc/group

11、创建myuser用户属于mygroup组群,接着以myuser身份登录,创建ex和hv两个文件于/home/myuser目录,并使hv文件的同组用户是root。请依次写出相应执行的命令

[root@localhost orange]# useradd -g mygroup myuser
[root@localhost orange]# su - myuser
[myuser@localhost orange]$ touch /home/myuser/ex /home/myuser/hv


12、添加一新用户helen并设置其用户主目录/helen,密码为空,并将temp组群作为用户helen的附加组群。请依次写出相应执行的命令

#useradd -d /helen helen
#passwd -d helen
# sudo usermod -a -G temp helen

13、创建用户user,密码为“a1b2c3”,并将其加入group组群

#useradd user -g group
#sudo useradd user -g group
#sudo passwd helem

14、新建一个名为sarah的用户,不属于adminuser组,并将其shell设置为不可登陆shell

#useradd sarah
#usermod -s /sbin/nologin sarah

15、创建alex用户,使alex用户满足以下要求:用户id为3456,描述名为alian,密码为glegunge,附属组为group

#useradd alex -u 3456 -c alain -p glegunge -G group

16、创建 admin用户,无密码,描述为teshu,设置基本组为temp

#useradd admin -c teshu -g temp
#passwd -d admin

17、设置权限,要求如下:
(1)创建g1组,要求创建一个属于redhat用户g1组的文件redhat.txt
(2)新建/sc目录,所属组为group组,root用户和group组用户可在该目录下创建文件,其他人无任何权限
(3)新建/cw目录为财务部存储目录,只能对财务部人员可以写入,并且财务部人员所建立的文件都自动属于mygroup组中
(4)设置 helen用户对于/sc和/cw目录可以读,写,执行

(1)#useradd redhat
   #groupadd g1
   #usermod -g g1 redhat
(2)#mkdir /sc
   #chown .group /sc
   #chmod 777 /sc
(3)#chown :mygroup .
   #chmod g+s
(4)#chmod 777 /sc
   #chmod 777 /cw

18、基本存储配置
1) 添加一块10G大小的磁盘,将该磁盘分为两个主分区,大小为1G、2G。将剩余的空间全部划分为扩展分区。划分一个逻辑分区,大小为3G。(主分区文件系统类型为ext4,逻辑分区文件系统类型为xfs)
2)将三个分区分别挂载到/dir1、/dir2、/dir3。
3) 在第一个主分区中创建一个文件为file1,内容为this is partition1。在第二个分区中创建一个文件为file2,内容为this is partition2。在第三个分区中创建一个文件为file3,内容为this is partition3。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值