Few days ago I tried to install the iceweasel browser, but got no result. After searching a little I understood that there is a problem with my sources.list.
But now I don't know how to edit, replace or what to compare it with? How to proceed with it? I got one more link having entries of sources.list as
deb kali main contrib non-free
deb kali/updates main contrib non-freeAre this links useful in any sense ?
Result for cat /etc/apt/sources.list is
deb cdrom:[Debian GNU/Linux 7.0 Kali - Official Snapshot i386 LIVE/INSTALL Binary 20130327-18:35]/ kali contrib main non-free 11 1 Answer
According to the Kali FAQ you linked to, your sources.list should contain exactly whatyou have posted. Follow these steps to make it so:
Open a terminal and run
sudo gedit `/etc/apt/sources.list`I am not sure if
geditis installed by default. Apparently, Kali usesgvimas its default editor, if you know how to usevimandgeditis not installed, replacegeditwithgvimin the command above. If you don't know how to usevim, trynanoinstead.Edit the file so that its contents are:
deb kali main contrib non-free deb kali/updates main contrib non-free deb cdrom:[Debian GNU/Linux 7.0 Kali - Official Snapshot i386 LIVE/INSTALL Binary 20130327-18:35]/ kali contrib main non-freeSave the file, close the editor and run
sudo apt-get updateYou should now be able to install
iceweaselwith this command:sudo apt-get install iceweasel
I must stress that if you don't know how to do these things, Kali is not the right distribution for you. You should consider switching to something else.
7