摘要: fsck修复文件系统 1:磁盘分区 [root@localhost ~]# fdisk /dev/sdb 2:格式化文件系统 [root@localhost ~]# mkfs.ext4 /dev/sdb1 3:破坏文件系统 [root@localhost ~]# dd if=/dev/zero of 阅读全文
posted @ 2019-08-09 12:22 王悦明 阅读(3534) 评论(0) 推荐(0)
摘要: GRUB引导程序破坏 1:重建grub程序 备份恢复grub程序 阅读全文
posted @ 2019-08-09 10:26 王悦明 阅读(211) 评论(0) 推荐(0)
摘要: grub.conf文件丢失,引导配置有误 1:备份恢复grub.cfg 阅读全文
posted @ 2019-08-09 10:12 王悦明 阅读(180) 评论(0) 推荐(0)
摘要: ·MBR扇区故障 [root@localhost ~]# mkdir /b [root@localhost ~]# mount /dev/sdb1 /b [root@localhost ~]# dd if=/dev/sda of=/b/sda.mbr.bak bs=410 count=1 记录了1+ 阅读全文
posted @ 2019-08-09 10:06 王悦明 阅读(168) 评论(0) 推荐(0)
摘要: 1、通过ps命令的两种选项形式查看进程信息ps auxps -elf2、通过top命令查看进程top -d 3top -b -n4top -u yuetop -p 22003、通过pgrep命令查看sshd服务的进程号[root@localhost ~]# pgrep -l sshd7171 ssh 阅读全文
posted @ 2019-08-09 08:11 王悦明 阅读(264) 评论(0) 推荐(0)