目 录
[if !supportLists]第1章 [endif]一个EXT4的文件分区,当使用touch test.file命令创建一个新文件时报错,报错的信息是提示磁盘已满,但是采用 df -h 命令查看磁盘大小时,只使用了60%的磁盘空间,为什么会出现这种情况?
inode满了
[if !supportLists]第2章 [endif]对名为fido的文件用chmod 551 fido进行修改,则他的许可权是?
r-xr-x--x
[if !supportLists]第3章 [endif]文件系统中软硬连接的区别?
1软连接可以跨系统。
2.删除源文件硬链接不受影响。
3.软连接可以对目录创建
4.硬链接inode和源文件一致
[if !supportLists]第4章 [endif]Linux开机启动流程详细步骤是什么?系统安装完,忘记密码如何破解
[if !supportLists]4.1[endif]开机启动流程
开机bios自检===加载MBR列表===加载Grub菜单===加载内核信息===读取init进程===读取运行级别 === 系统初始化===加载开机自启动脚本===加载开机自启软件===mingetty
[if !supportLists]4.2[endif]忘记密码破解方式
[if !supportLists]第5章 [endif]请取出系统中所有的用户名及UID,并过滤出不可登录的用户
awk -F ':' '$3<=1000{print$1,$3}'/etc/passwd
[if !supportLists]第6章 [endif]请取出eth0网卡的mac地址
ifconfig eth0 | awk -F ' ' 'NR==4{print$2}'
[if !supportLists]第7章 [endif]在/home目录下找出3天之前被修改过文件大于20k的文件,并把他们打包到/oldboy/目录下并以当前时间命名
find /home -type f -mtime +3 -size +20k|xargs -i tar zcvf /oldboy/$(date+%F).tar.gz {}/;
[if !supportLists]第8章 [endif]如何在/var目录下找出90天之内未被访问过得文件?
find /var -type f -atime +90 |xargs ls -l{}
[if !supportLists]第9章 [endif]如何使用CRT/Xshell向linux服务器上传下载文件
rs
rz
[if !supportLists]第10章 [endif]如何检查selinux是否开启
getenforce
[if !supportLists]第11章 [endif]文件excel的访问权限为rw-r--r--.现要增加所有用户的执行权限和同组用户的写权限,命令是
chmod 775 excel
[if !supportLists]第12章 [endif]批量创建20个用户,用户名格式为oldboy1等等,并都设置密码123456该如何实现?
seq 20 |sed -rn ‘s#(.*)#oldboy\1:123456#g’|chpasswd
[if !supportLists]第13章 [endif]/var/www/html/是网站的发布目录。如何每天凌晨0点30对其进行自动备份,写出操作步骤
30 00 * * * /bin/cp -a /var/www/html /var/www/html.$(date +%F) &> /dev/null
[if !supportLists]第14章 [endif]crontab 在11月份内,每天的早上7点到11点中,每隔2小时执行一次/usr/bin/httpd.sh怎么实现
00 7-11/2 * * * /bin/sh /user/bin/httpd.sh&>/dev/null