Press "Enter" to skip to content

Month: September 2012

解决Red Hat系统umount: device is busy的问题

在Red Hat/CentOS系统中,要解除某个设备的挂载,经常会弹出 device is busy 的提示,这是因为系统中还有程序或用户在访问着设备上的文件,如果冒然强制卸载,可能会导致数据丢失和设备损坏,“Device is busy” 是一种保护措施。

[root@localhost ~]# df -h               //查看现有挂载情况
Filesystem            Size  Used Avail Use% Mounted on
/dev/mapper/VolGroup00-LogVol00
                       19G  2.4G   15G  14% /
/dev/sda1              99M   12M   82M  13% /boot
tmpfs                 252M     0  252M   0% /dev/shm
/dev/hdc              2.9G  2.9G     0 100% /mnt/cdrom
[root@localhost ~]# umount /mnt/cdrom    //解除挂载
umount: /mnt/cdrom: device is busy       //提示设备忙
umount: /mnt/cdrom: device is busy

解决办法:

Leave a Comment

解决Red Hat系统”Cannot find a C compiler, aborting”问题

前日在某Red Hat系统安装软件的时候,突然提示“Cannot find a C compiler, aborting”。这是因为缺少gcc编译器导致的。gcc编译器是将源代码处理为机器可认识的二进制文件的重要程序。换言之,如果没有gcc编译器,就不能通过源代码方式来安装程序。一般的系统默认都会安装之,但也有少量系统未安装。

[root@localhost axel-2.4]# ./configure --prefix=/usr/local/axel
Cannot find a C compiler, aborting.
[root@localhost axel-2.4]# gcc --version     //查看gcc版本
bash: gcc: command not found

我们可以自己下载gcc软件包安装,但因为gcc有大量的依赖包,因此推荐使用yum方式来安装。

1,如果系统能连网,直接执行”yum install gcc*”安装gcc即可

2,如果系统不能连网,Red Hat安装光盘里自带了gcc软件包及其相关依赖包,我们只要将本地光盘设置为yum更新源,然后再执行”yum install gcc*”即可。

安装完成以后的检测:

[root@localhost axel-2.4]# gcc --version         //查看c编译器的版本
gcc (GCC) 4.1.2 20080704 (Red Hat 4.1.2-48)
Copyright (C) 2006 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

[root@localhost axel-2.4]# g++ --version        //查看c++编译器的版本
g++ (GCC) 4.1.2 20080704 (Red Hat 4.1.2-48)
Copyright (C) 2006 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Leave a Comment

Red Hat将本地光盘设置为yum更新源

在Red Hat/CentOS系统中,yum是个好东西,可以傻瓜化的快速安装一些软件包和补丁,当要安装的软件包有依赖包时,也可以自动把依赖包也装上(简直是懒人必备神器啊~)。其实很多软件包在Red Hat/CentOS的安装光盘中就已经有了,我们没必要再从远程服务器下载,本文我们教大家如何配置本地的yum源。

1,挂载本地光盘
首先在VMWare中设置好Red Hat的安装镜像,VMWare会自动把此镜像挂载到系统中,我们来看看默认的挂载情况:

[root@localhost ~]# df -l
Filgsystem           1K-blocks      Used Available Use% Mounted on
/dev/mapper/VolGroup00-LogVol00
                      19172036   2436096  15746348  14% /
/dev/sda1               101086     12185     83682  13% /boot
tmpfs                   257652         0    257652   0% /dev/shm
/dev/hdc               3038672   3038672         0 100% /media/RHEL_5.5 i386 DVD

VMWare把镜像默认挂在了/media/RHEL_5.5 i386 DVD目录下,但因该目录名中包含了空格,无法使用cd进入该目录,也无法使用ls列出目录内容,所以我们要重新挂载一下。挂载前先记好光盘在系统中的设备名为/dev/hdc。

Leave a Comment