2014年9月15日 星期一

[ Kali 常見問題 ] How To Add Full Repository in Kali Linux

Source From Here
Preface
In this tutorial i'm going to say how to Add Full Repository in Kali Linux.

How
Step 1:
open the terminal and type "vi /etc/apt/sources.list" and add below content:
  1. deb http://http.kali.org/ /kali main contrib non-free  
  2. deb http://http.kali.org/ /wheezy main contrib non-free  
  3. deb http://http.kali.org/kali kali-dev main contrib non-free  
  4. deb http://http.kali.org/kali kali-dev main/debian-installer  
  5. deb-src http://http.kali.org/kali kali-dev main contrib non-free  
  6. deb http://http.kali.org/kali kali main contrib non-free  
  7. deb http://http.kali.org/kali kali main/debian-installer  
  8. deb-src http://http.kali.org/kali kali main contrib non-free  
  9. deb http://security.kali.org/kali-security kali/updates main contrib non-free  
  10. deb-src http://security.kali.org/kali-security kali/updates main contrib non-free  
Step 2:
After that run the following commands in the terminal:
$ sudo apt-get update
...

Supplement
Kali Linux sources.list Repositories
We’ve seen many people break their Kali Linux installations by following unofficial advice, or arbitrarily populating their sources.list file with unneeded repositories. The following post aims to clarify what repositories should exist in sources.list, and when they should be used...


沒有留言:

張貼留言

[Git 常見問題] error: The following untracked working tree files would be overwritten by merge

  Source From  Here 方案1: // x -----删除忽略文件已经对 git 来说不识别的文件 // d -----删除未被添加到 git 的路径中的文件 // f -----强制运行 #   git clean -d -fx 方案2: 今天在服务器上  gi...