前言:
当用户执行下列操作有不能执行的时候或许是权限不够。遇到这个问题可以用命令:
[ilykty@bogon ~] su root #切换到root用户
password : 输入root密码
[root@localhost ~] chmod 777 文件名 赋予文件最大权限。
linux 安装显卡驱动程序:
1、 百度输入nvidia or amd 到
2、 在中到显卡驱动程序(包括显卡型号、操作系统位数)如下图
3、 点击搜索、进入下载页面。但是有时候会出现网页。可能因为31M太大,网页会出现未能响应的情况。所以在点前一个按钮的时候可以选择右键。使用迅雷下载连接
4、 复制下载包到linux 目录下面。可以用u盘考,推荐使用winSCP 工具。这个在windows和linux系统直接传送文件还是很好用的。当然还有好用的远程执行linux 命令的工具——putty
(1-4步是在windows系统下完成的)
5、 linux下切换到命令行页面:init 3
6、 执行安装命令
[root@localhost ~] sh NVIDIA-Linux-x86-173.14.18-pkg1.run,系统弹出安装页面
如果出现错误报警如: unable to find the development tool 'cc' in your path 需要安装GCC 。
错误原因是我这里没有安装gcc 编译器。
如果没有报错请跳过番外篇1和番外篇2
番外篇1 :关于gcc编译器
gcc 是什么呢?
我的理解是一个编译器。来运行nvidia 编写的显卡驱动程序。后来我在安装配置tomcat6服务的时候,我发现如果没有安装gcc也不能执行/etc/init.d/tomcat6的文件。关于怎么安装tomcat6并配置成开机启动的服务我将在下一篇百度文库中介绍。
---------------------------------------------------------------------------------------------
在debian系统中有这样的解决方法:
一、下载NVIDIA-Linux-x86-173.14.18-pkg1.run
二、sh NVIDIA-Linux-x86-173.14.18-pkg1.run
1、报错:没安装binutils,apt-get intall binutils
2、报错:No precompiled kernel interface was found to match your kernel..
apt-get install
3、上一步安装后仍然报错,继续往下走:
二、sh NVIDIA-Linux-x86-173.14.18-pkg1.run
1、报错:没安装binutils,apt-get intall binutils
2、报错:No precompiled kernel interface was found to match your kernel..
apt-get install
3、上一步安装后仍然报错,继续往下走:
unable to find the development tool 'cc' in your path;please make sure that you have the package 'gcc' installed.If gcc is installed on your system,then please check that 'cc' is in your PATH.
apt-get install gcc
4、unable to find the development tool 'make' in your path……
apt-get install make
5、继续:The compiler used to compile the kernel (gcc 4.1) does not exactly match the
current compiler (gcc 4.2). The Linux 2.6 kernel module loader rejects kern
el modules built with a version of gcc that does not exactly match that of t
he compiler used to build the running kernel.
apt-get install gcc
4、unable to find the development tool 'make' in your path……
apt-get install make
5、继续:The compiler used to compile the kernel (gcc 4.1) does not exactly match the
current compiler (gcc 4.2). The Linux 2.6 kernel module loader rejects kern
el modules built with a version of gcc that does not exactly match that of t
he compiler used to build the running kernel.
---------------------------------------------------------------------------------------------------------------------
但是我的并不是德班的系统。是redhat linux ——oracle enterprise linux
还好linux安装oracle依赖包apt-get 这个容易到 原来是在线安装的意思。redhat linux 好像木有这样的命令,唉。我曾经尝试过yum这个命令,也没有好用。无奈之下,那么我就去我的盘里gcc文件吧。
原来我并不知道gcc 的依赖关系有这么复杂,只是到gcc的包。安装提示各个依赖包。
oracle enterprise linux 共有5张盘。大部分的关于gcc 的rpm 包在第1 2 3张盘里可以到。需要如下包。
cpp-4.1.2-44.el5.i386.rpm
#flash-plugin-10.3.181.34-release.i386.rpm
gcc-4.1.2-44.el5.i386.rpm
glibc-2.5-34.i386.rpm
glibc-devel-2.5-34.i386.rpm
glibc-headers-2.5-34.i386.rpm
kernel-devel-2.6.18-128.el5.i686.rpm
kernel-headers-2.6.18-128.el5.i386.rpm
libgomp-4.3.2-7.el5.i386.rpm
NVIDIA-Linux-x86-280.13.run
caching-nameserver-9.3.4-10.P1.el5.i386.rpm
这里不得不讲到怎么去寻和挂载这些文件
番外篇2:redhat linux :查文件命令find 和挂载存储设备命令 mount 以及安装.rpm包命令rpm
linux 挂载官方解释:
在linux操作系统中,
挂载是一个非常重要的功能,使用非常频繁。
它指将一个设备(通常是存储设备)挂接到一个已存在的目录上。
(这个目录可以不为空,但挂载后这个目录下以前的内容将不可用。)
---------------------------------------------------------------------------------------------------------------------------------
(1) 把光碟放入光驱中,执行
[root@localhost ~] cd /mnt/cdrom -- 如果出现没有那个文件或目录
执行
[root@localhost ~] mkdir /mnt/cdrom --创建cdrom文件夹/目录
[root@localhost ~ ] mount –t iso9660 /dev/cdrom /mnt/cdrom --命令解释
mount :挂载命令、
–t iso9660 :被挂载文件是iso9660 光盘文件、
/dev/cdrom :是光盘的挂载点,这个目录不能被直接访问。它更像是一个物理设备的存在
/mnt/cdrom :被挂载目录。
(2) 挂载完成后,执行如下命令
[root@localhost ~] cd /mnt/cdrom
[root@localhost ~] ls
[root@localhost ~] cd Server
(3) 到如上的文件,例如kernel-headers-2.6.18-128.el5.i386.rpm。执行如下命令
[root@localhost ~] ls ker* -----系统将会到所有已ker开头的文件。
(4) 复制文件到 /home 目录下面
[root@locahost ~] cp kernel-headers-2.6.18-128.el5.i386.rpm /home
(5) 到其他包
(6) 反挂载命令
[root@localhost ~] umount /dev/cdrom
注意:当使用umount 的目录时候,要确保退出这个目录。不然会提示is busy。设备正在使用中的意思。
(7) 继续挂载、查其他包并复制到/home目录下面
(8) 开始安装。
[root@localhost ~] rpm –ivh gcc-4.1.2-44.el5.i386.rpm
提示 kernel-headers is needed by ….这就是依赖包。意思是首先安装kernel-headers 这个包。
--------------------------------------------------------------------------------------------------------------------------------
注意如果没有安装kernel-devel 。
会报如下错误:unable to find the kernel source tree
关于安装中的报错如下
not an rpm package (or package manifest):
的情况。可能是因为rpm 包并不是可以执行的rpm包。有的时候cp 会出现只复制了快捷方式的情况。这个我也不知道是怎么回事。需要重新复制一下。
继续安装显卡驱动程序
7、 在弹出的页面上用Tab 键选中Accept,按回车按钮。进行下一步
8、 安装完成。重启计算机或者 输入 init 5 切换到x windows (桌面)模式。
一般情况下。显卡安装完成会自动调整分辨率到合适的尺寸。如果没有变化。通过
开始菜单--系统工具--更多系统工具--NVIDIA Xserver setting 或者系统—更多首选项-- NVIDIA Xserver setting,在弹出的页面中设置
9、设置完成。重启计算机就好了。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论