1、新建一个用户yangang,密码设为123456,并将其加到root组。写出所用命令。
username yangang
password 123456
chgrp root yangang或chown yangang:root yangang
2、 使用vi编缉/etc/inittab文件时,在命令模式下查询shutdown字符串。
vi /etc/inittab shutdown
3、 统计/etc/passwd文件的字节数和行数,写出所用命令。
wc -cl /etc/passwd
4、 分屏显示/etc/httpd/conf/httpd.conf文件的命令。
more less
5、 更改用户yangang的登录shell为/sbin/nologin的命令。
usermod -s /sbin/nologin yangong
6、 查看当前linux服务器的主机名。
hostname
7、 杳看当前主机的路由表。
route netstat -r
8、 配置当前主机的默认网关为192.168.2.254的命令。
route add default gw 192.168.2.254
9、 连续ping目的IP为192.168.2.245为3次的的命令。
ping -c 3 192.168.2.254
10.查看当前主机TCP协议连接情况的命令
netstat -t
11、打包并压缩/etc目录。
tar -czvf etc.tar.gz /etc
12、测试httpd是否安装的命令。
rpm -q httpd
13、卸载named软件包的命令。
rpm -e named
14、查看当前目录。.
pwd
15、显示历史命令表的所有内容的命令。
cat /etc/history
16、将/etc/passwdr的内容追加到文件aaa中的命令。
cat etc/passwd >> aaa
17、查看进程状态的命令。
top ps -aux
18、停止ssh服务的命令。
systemctl stop sshd
19、重启linux服务器的命令。
rebot init 6 sgutdown -r now
20、要给文件ylinuxs加上其他人可执行属性的命令。
chmod g+x ,o+x ylinuxs
21、为了达到使文件 sudent.txt的所有者有读(r)和写(w)的许可而其他用户只能进行只读访问的命令。
chmod 644 student.txt
22、将新建文件权限设置为600的命令。
touch test
chmod 600 test
23、如何查看用户yangang_属于哪个组。
cat /etc/group
id yangang
24、进入用户主目录,显示当前的路径。
cd ~
pwd
Linux基本环境配置命令分享(持续更新中……)_初尘屿风的博客-CSDN博客
25、复制文件/etc/group到用户主目录,文件名不变。
cp /etc/group
26、统计文件/etc/fstab_的行数、单词数、字符数。
wc -lwc /etc/fstab
27、查看/etc/passwd文件的后5行。
tail -n 5 /etc/passwd
28、创建普通文件/home/abc。
touch /home/abc
29、修改/home/abc的属性为:属主具有一切权限,同组用户和其他用户具有可读可写的权限。
chmod 766 /home/abc
30、启动ssh服务器。
systemctyl start sshd
31、新建一个以你的学号为账号的用户。
useradd 123456
32、复制文件/etc/passwd_到用户主目录,文件名不变。
cp /etc/passwd
Linux操作系统简介_初尘屿风的博客-CSDN博客
33、进入用户主目录,显示当前的路径。
cd ~
pwd
34、查看/etc/passwd的前8行。
head -n 8 /etc/passwd
35、 配置网卡eth0的IP地址为192.168.0.1,子网掩码为255.255.255.0
ifconfig eth0192.168.0.1 netmask 255.255.255.0
36、 修改新建的用户test01属于xjlg组。
useradd test01
usermod-g xilg test01
37、 显示Linux系统运行所有进程。
top ps -aux
38、 重新启动ssh服务器。
systemctl restartsshd
systemct1reload sshd
39、 添加一个用户组,名称为js。
groupadd js
40、 进入该用户主目录,显示当前的路径。
cd ~
pwd