1 前言 在安装Linux操作系统过程中,有时会遇到安装盘中自带设备驱动版本较老,不支持最新的RAID控制器(如MegaRAID SAS 9265-8i),导致系统安装时,找不到硬盘,系统无法继续安装。此时我们需要更新安装盘中带的驱动,或者使用使用驱动安装盘(一般为img文件)来更新驱动。 本文主要介绍如何制作Redhat Linux驱动安装盘和如何更新安装盘中的驱动,并介绍常见故障的处理办法。
READ MORE »Posts in category 系统使用
Linux中硬盘转速查看
可以使用sg_vpd命令查看硬盘转速。 sg_vpd命令是sg3_utils其中一个工具,下载地址:http://sg.danny.cz/sg/sg3_utils.html VPD:Vital Product Data linux-suse11p1:~ # sg_vpd /dev/sg8 –page=0x89 ATA information VPD page: SAT Vendor identification: LSI SAT Product identification: LSI SATL SAT Product revision level: 0008 ATA command IDENTIFY DEVICE response summary: model: ST31000340NS serial number: 9QJ4VPL1 firmware revision: SN06 linux-suse11p1:~ # sg_vpd /dev/sg8 […]
READ MORE »Squashfs文件解压缩及”xz compression”报错问题解决
1、普通squashfs文件解压缩及查看 (1) 可使用unsuqashfs命令直接解压缩。 [root@localhost squashfs]# unsquashfs squashfs.img (2)也可mount到临时目录 [root@localhost squashfs]# mount -o loop squashfs.img -t squashfs temp/ 2、XZ算法压缩后的squashfs.img解压缩与查看 下载Fedora 15 Live CD后,尝试解压缩ISO中的squashfs.img文件,发现无法mount,也无法通过unsquashfs命令解压缩。提示“Filesystem uses xz compression, this is unsupported by this version”。但下载到的最新squashfs 4.2版本,提示XZ压缩算法的。 [root@localhost ~]# mount -o loop /boot/Fedora-15-x86_64-Live-Desktop.iso /mnt/ [root@localhost ~]# ls /mnt/ EFI GPL isolinux LiveOS [root@localhost ~]# cd /mnt/LiveOS/ […]
READ MORE »Ubuntu使用RHEL 6.1内核方法
安装RHEL内核步骤 1、RHEL6.1内核RPM包提取 从RHEL 6.1 x86_64系统ISO镜像文件(Red Hat Enterprise Linux 6.1 Server x86_64 .iso)里面将系统内核文件及firmware文件的rpm包提取出来存放(路径为:Red Hat Enterprise Linux 6.1 Server x86_64 .iso\Packages),提取出来的正确的文件名如下: kernel-2.6.32-131.0.15.el6.x86_64.rpm
READ MORE »Linux硬盘盘符分配
Linux硬盘盘符分配原则 在Linux系统中,若存在多块硬盘,内核分配盘符的顺序是/dev/sda、/dev/sdb、/dev/sdc … …。在系统启动过程中,内核会按照扫描到硬盘的顺序分配盘符。 内核中分配盘符函数,见链接http://ilinuxkernel.com/?p=794
READ MORE »Ubuntu Grub修复
Ubuntu Grub损坏后,系统无法启动,可以通过下面步骤来修复Grub。 步骤: 1、使用系统安装盘或其他版本LiveCD启动,进入挽救模式或桌面系统
READ MORE »U盘无盘Linux制作
获取USB无盘Linux制作软件 推荐使用UNetbootin(Universal Netboot Installer)或FUSBi开源软件,它可以方便地把Linux安装或LiveCD ISO文件存放到U盘上,然后就可以通过U盘来运行Linux安装系统或LiveCD。
READ MORE »解决vim方向键出现ABCD问题
在部分SUSE Enterprise Linux发行版本上使用Vi时,按下方向键会出现ABCD,而不是所期望的光标移动。 解決方式很简单: 在/etc/vim/vimrc 或者~/.vimrc中加入以下设定即可: linux:~ # cat .vimrc set backspace=indent,eol,start syntax on set hlsearch linux:~ #
READ MORE »如何关闭硬盘写缓存(Write Cache)
在Linux中,有时我们希望打开或关闭硬盘写缓存(Write Cache),此时可以用hdparm命令来实现。 建议下载最新hdparm版本,网址为: http://sourceforge.net/projects/hdparm/ 查看当前硬盘写Cache状态 root@ubuntu:~/hdparm-9.37# hdparm -W /dev/sda 关闭硬盘的写Cache root@ubuntu:~/hdparm-9.37# hdparm -W 0 /dev/sda 打开硬盘的写Cache root@ubuntu:~/hdparm-9.37# hdparm -W 1 /dev/sda hdparm其他参数详细说明如下: root@ubuntu:~/hdparm-9.37# ./hdparm -h hdparm – get/set hard disk parameters – version v9.37, by Mark Lord. Usage: hdparm [options] [device …] Options: -a Get/set fs readahead -A Get/set the drive look-ahead flag […]
READ MORE »