Check your /etc/apt/sources.list. If it’s anything

different to the following, you need to fix it. You can follow this

guide to add official Kali Linux Repositories if you’re

not too sure on how to do it. For the sake of clarity I will keep

things simple here.

leafpad /etc/apt/sources.list

Remove or comment out existing lines and add the following:

## Kali Regular repositories

deb http://http.kali.org/kali kali main non-free contrib

deb http://security.kali.org/kali-security kali/updates main contrib non-free

## Kali Source repositories

deb-src http://http.kali.org/kali kali main non-free contrib

deb-src http://security.kali.org/kali-security kali/updates main contrib non-free

Step 2 (update with apt-get)

Now we need to update and make sure we get the latest list from

Kali Linux official repositories. So perform an apt-get update.

apt-get update

STOP:

NVIDIA users after driver installation and cuda/pyrit related

issues go here: How to Install Nvidia Kernel Module Cuda and Pyrit

in Kali Linux

Also those who would like to use Graphics card processing power

to crunch data (such as cracking wii password faster) see the

following posts:

Step 3 (install Linux headers and recommended softwares)

Now that we have the correct repositories we can add these

following recommended apps. The most important part is to add the

correct headers.

apt-get install firmware-linux-nonfree

apt-get install amd-opencl-icd

apt-get install linux-headers-$(uname -r)

NOTE: You

should be able to get all these from Kali Linux repositories as

added/updated from Step 1 above. When this guide was written, all

these were available in the Kali Repositories.

Step 4 (change repositories to Debian Jessie).

So far so good.

This part I wouldn’t usually recommend, but we will only add few

specific software’s from Debian Jessie Repositories and quickly

remove them once we’re done. I have added this myself and removed

them once the following steps are completed. I went in and checked

as many software’s I could, but it seems only updating a few

packages doesn’t break anything. (So far!! You are most welcome to

try it).

Now comment out Kali Repositories in your

/etc/apt/sources.list and add Debian Jessie (Another

name for Debian Jessie is Debian testing) repositories.

You should be able to use leafpad to do it quickly.

leafpad /etc/apt/sources.list

Remove or comment out existing lines and add the following:

## Kali Regular repositories

#deb http://http.kali.org/kali kali main non-free contrib

#deb http://security.kali.org/kali-security kali/updates main contrib non-free

## Kali Source repositories

#deb-src http://http.kali.org/kali kali main non-free contrib

#deb-src http://security.kali.org/kali-security kali/updates main contrib non-free

## Debian Main

deb http://ftp.debian.org/debian testing main contrib non-free

deb-src http://ftp.debian.org/debian testing main contrib non-free

## Debian Updates

deb http://ftp.debian.org/debian/ jessie-updates main contrib non-free

deb-src http://ftp.debian.org/debian/ jessie-updates main contrib non-free

## Debian Security

deb http://security.debian.org/ jessie/updates main contrib non-free

deb-src http://security.debian.org/ jessie/updates main contrib non-free

Step 5 (update with apt-get)

Now we need to update and make sure we get the latest list from

Debian Jessie repositories. So perform an apt-get update.

apt-get update

Step 6 (install fglrx drivers and control)

Almost done, just install fglrx drivers and control. The best

part is that it’s all you need to do. Debian Jessie fixed the

issues with fglrx and latest driver, so once you install these

drivers, everything just works.

apt-get install fglrx-atieventsd fglrx-driver fglrx-control fglrx-modules-dkms -y

NOTE: At

this point, you will see bunch of popups (we see those hardly in

Linux, but aptitude pops up with request to update some

libraries(opencl and glx) and restart services such as network

etc., I have chosen YES to all

of them. My installation of Kali is still working and I am yet to

find a problem. Your experience might be different.

Once the installation if finished, we need to test if it was all

good.

Step 7 (testing your installation and generate xorg.conf

file)

Now that our installation is all good and went without an error,

we need to test fglrx drivers. You can test fglrx using the

following two commands:

fglrxinfo

fgl_glxgears

But I would like to go a bit far and test glx as well. Use the

following commands to test GLX. (The reason I tested this is

because original AMD Drivers broke them previously.

glxinfo

glxgears

If everything worked well, you can generate

xorg.conf file using the following

command

aticonfig --initial -f

xorg.conf file will be located at

/etc/X11 folder.

Step 8 (update grub.cfg file and reboot)

Almost there. AMD cards needs the following parameters passed

into grub.cfg during boot. Let’s do that:

Edit the grub.cfg file:

leafpad /boot/grub/grub.cfg

you see this:

### BEGIN /etc/grub.d/10_linux ###

menuentry 'Debian GNU/Linux, with Linux 3.12-kali1-amd64' --class debian --class gnu-linux --class gnu --class os {

load_video

insmod gzio

insmod part_msdos

insmod ext2

set root='(hd0,msdos5)'

search --no-floppy --fs-uuid --set=root 129deb3c-0edc-473b-b8e8-507f0f2dc3f9

echo 'Loading Linux 3.12-kali1-amd64 ...'

linux /boot/vmlinuz-3.12-kali1-amd64 root=UUID=129deb3c-0edc-473b-b8e8-507f0f2dc3f9 ro initrd=/install/gtk/initrd.gz quiet

echo 'Loading initial ramdisk ...'

initrd /boot/initrd.img-3.12-kali1-amd64

}

add radeon.modeset=0 in the end

of the following line

linux /boot/vmlinuz-3.12-kali1-amd64 root=UUID=129deb3c-0edc-473b-b8e8-507f0f2dc3f9 ro initrd=/install/gtk/initrd.gz quiet radeon.modeset=0

So the line above becomes this:

linux /boot/vmlinuz-3.12-kali1-amd64 root=UUID=129deb3c-0edc-473b-b8e8-507f0f2dc3f9 ro initrd=/install/gtk/initrd.gz quiet radeon.modeset=0

Note:

129deb3c-0edc-473b-b8e8-507f0f2dc3f9

UUID would be different for every PC. Use your one here.

Save and exit. Then reboot.

reboot

Once you reboot, your should be able to login in GUI and enjoy

your AMD ATI proprietary driver (fglrx) in Kali Linux 1.0.6 running

Kernel version 3.12.6.

kali linux amd显卡驱动,AMD 显卡安装debian相关推荐

  1. linux hd4000显卡驱动,AMD Radeon HD 2000/HD 3000/HD 4000系列显卡驱动怎么样

    20 楼 华军网友 :2017-06-01 发表 下载完AMD Radeon HD 2000/HD 3000/HD 4000系列显卡驱动以后提示有毒?是我电脑的问题还是软件的问题啊,不应该有这种情况. ...

  2. linux系统英伟达gpu驱动卸载_ubuntu16.04循环登陆与NVIDIA显卡驱动的卸载/安装

    最近购置了一台自己组装的新台式机,在上面安装了ubuntu和windows双系统,准备在ubuntu上运行CARLA.Ubuntu系统在我刚刚安装好的时候出了挺多问题的,没有网卡驱动,没有显卡驱动.都 ...

  3. AMD GPU驱动,ROCM,Pytorch安装教程(A卡6700xt)

    我用的操作系统为ubuntu20.04,其他系统应该类似,只是命令稍有不同. 安装AMD GPU驱动 AMD驱动下载地址:https://www.amd.com/en/support/kb/relea ...

  4. 联想Y7000安装Ubuntu16.04/Win10双系统,wifi问题,显卡驱动和CUDA10安装

    联想Y7000安装Ubuntu16.04/Win10双系统,wifi问题,显卡驱动和CUDA10安装 目录 Ubuntu16.04系统安装 安装NVIDIA-1050Ti显卡驱动 安装Cuda10 目 ...

  5. ubuntu16.04系统显卡驱动查询与安装

    ubuntu16.04系统显卡驱动查询与安装 1. 查询并下载显卡驱动 1.1 关于nouveau驱动 1.2 下载显卡驱动 2. 安装显卡驱动 2.1 禁用nouveau驱动 2.2 卸载原有的显卡 ...

  6. Ubuntu16.04 NVIDIA显卡驱动卸载与安装

    Ubuntu16.04 NVIDIA显卡驱动卸载与安装 1.NVIDIA显卡驱动下载 2.NVIDIA显卡驱动卸载 3.NVIDIA显卡驱动安装 3.1.在线安装 3.2.离线安装 1.NVIDIA显 ...

  7. java8显卡驱动,联想Y700安装显卡驱动和CUDA8.0

    一显卡驱动安装 1 安装驱动安装软件 2 自动检测下载对应版本驱动 3下载完成后,点击开始,解压出来临时安装文件 由于是临时安装文件,退出就会关闭 4所以在没有关闭情况下,打开重新打开一次setup, ...

  8. ubuntu下查看显卡驱动是否成功安装

    ubuntu下查看显卡驱动是否成功安装的方法 ubuntu下查看显卡驱动是否成功安装的方法 方法一:通过查看`设置->详细信息->关于`查看 方法二:通过终端查看 方法三:通过终端 `nv ...

  9. Ubuntu 如何根据NVIDIA显卡型号确定对应的显卡驱动版本并安装

    Ubuntu 如何根据NVIDIA显卡型号确定对应的显卡驱动版本并安装 一.查询推荐安装的驱动版本 二.安装 1. 通过终端安装,只安装 nvidia 驱动 2. 通过 software & ...

  10. Kali Linux 从入门到精通(二)-安装

    Kali Linux 从入门到精通(二)-安装 Kail Linux 安装 持久加密USB安装-1 LUSK:Linux Unified Key Setup 磁盘分区加密规范 不依赖与操作系统的磁盘级 ...

最新文章

  1. 矩阵的掩模操作(锐化举例)
  2. python解析并读取PDF文件:函数总结
  3. 2019长安大学ACM校赛网络同步赛 L XOR (规律,数位DP)
  4. OC Swift混编-Swift.h File not found
  5. Peaks加强版 黑暗爆炸 - 3551 Kruskal重构树 + 主席树
  6. 打印水仙花数oracle,javaScript实现回文数、水仙花数判断和输出斐波那契数列
  7. Hanlp之理解用户自定义词典(java版本)
  8. python是干什么的-python学来主要是干什么的
  9. Vue SSR服务端渲染 vue预渲染
  10. 老徐和阿珍的故事:缓存穿透、缓存击穿、缓存雪崩、缓存热点,傻傻分不清楚
  11. 关于菜鸟的圆通电子面单打印
  12. Ueditor详细配置说明文档
  13. iOS 环信移动客服接入
  14. 每日codingame小游戏练习[2021.3.29](python3入门学习之rstrip方法)
  15. geany设置运行linux,Linux强大IDE——Geany配置说明
  16. 计算机在游戏界面应用,电脑在游戏界面怎么返回桌面
  17. 使用Arthas快速定位SpringBoot接口超时问题的神器
  18. 计算机ntc中国教育考试网,中国教育考试网ntcecf1.neea.edu.cn-2018河北教师资格证成绩查询网址...
  19. 【生产排故】oracle11g升19c之ORA-00904 WM_CONCAT invalid identifie排故
  20. 计算机毕业设计(附源码)python校园招聘管理系统

热门文章

  1. 在 github 上提交代码后,绿格子绿点没有显示
  2. kali系统与xshell远程连接
  3. x230接2K显示器
  4. 开源真香 离线识别率高 Python 人脸识别系统
  5. Google黑客语法总结
  6. mathtype7.4免费用 + office2019 成功配置过程
  7. 张俊林:由ChatGPT反思大语言模型(LLM)的技术精要
  8. 题目23:打印出如下图案(菱形)
  9. kafka 主动消费_Kafka ack消费确认-提交和偏移量 详解
  10. 自然语言处理工资一般是多少?NLP收入