출처 : http://www.computingforgeeks.com/2015/08/how-to-install-linux-kernel-headers-on.html
요약
sources.list 잘 맞나 repository 확인/수정
업데이트&업그레이드
커널헤더 설치
kali 2.0 64bit 심리스모드 되는거 확인완료
kali 2016.1 32bit는 헤더설치가 잘 안됨
kali 2016.1 64bit 버츄얼박스 이미지 불러오기하면 아주 잘된다
leafpad /etc/apt/sources.list
or
vi /etc/apt/sources.list
If the following repositories doesn't exist, overwrite old ones with ones below.
# Regular Repositories
deb http://http.kali.org/kali sana main non-free contrib
deb http://security.kali.org/kali-security sana/updates main contrib non-free
# Source repositories
deb-src http://http.kali.org/kali sana main non-free contrib
deb-src http://security.kali.org/kali-security sana/updates main contrib non-free
Then do
sudo apt-get update
sudo apt-get upgrade
After that,check your kernel version by typing:
uname -r
Now install kernel headers by typing:
sudo apt-get install linux-headers-$(uname -r)
You can also append kernel version to linux-headers command.For example
apt-get install linux-headers-4.0.0-kali1-amd64
See screeshot below for more details
sources.list 의 repository 만 잘 되면, 2016.1에도 kernel header를 설치할 수 있을거같다
참고 : http://docs.kali.org/general-use/kali-linux-sources-list-repositories
이 사이트를 참고해보면 kali 2016.1은 Rolling Repository 에 맞추면 될거같은데
깔면 원래 저 상태인듯
(kali 2.0도 깔면 sana(2.0)과 같은 상태였음)
The Kali Rolling Repository
kali-rolling is our current active repository since the release of Kali 2016.1. Kali Rolling users are expected to have the following entries in their sources.list:
# For source package access, uncomment the following line
# deb-src http://http.kali.org/kali kali-rolling main contrib non-free
Retired Kali sana (2.0) Repositories
For access to the retired sana repositories, have the following entries in your sources.list:
deb http://security.kali.org/kali-security sana/updates main contrib non-free
# For source package access, uncomment the following line
# deb-src http://http.kali.org/kali sana main non-free contrib
# deb-src http://security.kali.org/kali-security sana/updates main contrib non-free
apt-cache search linux-header 로 검색해보면
4.4.0-kali1-amd64가 나온다
이 4.4.0으로 apt-get install 해봤더니
이미 설치됐다고 나오고
virtualbox-guest-x11은 이미 설치됏다함..
업데이트 & 업그레이드 안하면 되려나 하고 새로해봤는데
안된다
404 페이지 에러남
아마도 kali 서버의 문제인듯
그냥 공식홈피에서 제공하는 VirtualBox 이미지를 써야겠다.
유튜브 캡쳐 - 여기로 넘어가야되는데 안된다. 커널을 못찾겠다고 나옴
'Kali' 카테고리의 다른 글
[Kali, Backtrack] 기본세팅총정리 (0) | 2016.04.22 |
---|---|
kali에 terminal shortcut만들기 (단축키) (0) | 2016.04.16 |
kali 다운로드 http://cdimage.kali.org/ (0) | 2016.03.28 |
virtualbox설치 시 pae error (0) | 2016.03.23 |
VirtrualBox 확장팩 설치 (kali공홈) (0) | 2016.03.20 |