PDA

View Full Version : install wine on kali 64bit with no problems



kingsemsem
2015-04-17, 04:07
if u have problems on installing wine

do these steps in terminal

1-write these codes


#echo deb http://http.kali.org/kali kali main non-free contrib > /etc/apt/sources.list
#echo deb-src http://http.kali.org/kali kali main non-free contrib >> /etc/apt/sources.list
#echo deb http://security.kali.org/kali-security kali/updates main contrib non-free >> /etc/apt/sources.list
#echo deb-src http://security.kali.org/kali-security kali/updates main contrib non-free >> /etc/apt/sources.list


2-write commands one after one

sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install wine-bin:i386

joaovictor01
2016-01-21, 06:04
Thanks !!!!

sheeredmaze
2016-02-17, 18:43
Getting these errors.

W: The repository 'http://security.kali.org/kali-security kali/updates Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
W: The repository 'http://http.kali.org/kali kali Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
W: Failed to fetch http://security.kali.org/kali-security/dists/kali/updates/main/source/Sources 404 Not Found
W: Failed to fetch http://security.kali.org/kali-security/dists/kali/updates/contrib/source/Sources 404 Not Found
W: Failed to fetch http://security.kali.org/kali-security/dists/kali/updates/non-free/source/Sources 404 Not Found
W: Failed to fetch http://security.kali.org/kali-security/dists/kali/updates/main/binary-amd64/Packages 404 Not Found
W: Failed to fetch http://security.kali.org/kali-security/dists/kali/updates/main/binary-i386/Packages 404 Not Found
W: Failed to fetch http://security.kali.org/kali-security/dists/kali/updates/contrib/binary-amd64/Packages 404 Not Found
W: Failed to fetch http://security.kali.org/kali-security/dists/kali/updates/contrib/binary-i386/Packages 404 Not Found
W: Failed to fetch http://http.kali.org/kali/dists/kali/main/source/Sources 404 Not Found
W: Failed to fetch http://http.kali.org/kali/dists/kali/non-free/source/Sources 404 Not Found
W: Failed to fetch http://http.kali.org/kali/dists/kali/contrib/source/Sources 404 Not Found
W: Failed to fetch http://http.kali.org/kali/dists/kali/main/binary-amd64/Packages 404 Not Found
W: Failed to fetch http://http.kali.org/kali/dists/kali/main/binary-i386/Packages 404 Not Found
W: Failed to fetch http://http.kali.org/kali/dists/kali/non-free/binary-amd64/Packages 404 Not Found
W: Failed to fetch http://http.kali.org/kali/dists/kali/non-free/binary-i386/Packages 404 Not Found
E: Some index files failed to download. They have been ignored, or old ones used instead.

frederikus.smd
2016-11-06, 12:27
first things you need to check your kali version

root@kali:~# uname -a

so this is for me
root@kali:~# uname -a
Linux kali 4.7.0-kali1-amd64 #1 SMP Debian 4.7.8-1kali1 (2016-10-24) x86_64 GNU/Linux

(2016-10-24) <-- you got this?

then you must read
http://security.kali.org/kali-security/README

then find your sources.list kali version (im using kali rolling)
http://docs.kali.org/general-use/kali-linux-sources-list-repositories

after that
root@kali:~#dpkg --add-architecture i386
root@kali:~#apt update
root@kali:~#wine
it looks like wine32 is missing, you should install it.
as root, please execute "apt-get install wine32"
Usage: wine PROGRAM [ARGUMENTS...] Run the specified program
wine --help Display this help and exit
wine --version Output version information and exit
root@kali:~#apt-get install wine32 -y

PK302
2017-05-17, 15:45
I am impressed by the First post.

It works smoothly.

if
apt-get install wine32:i386

do not work

then write this command

apt-get install wine32

it Should work.

EXspartan36
2017-06-14, 09:20
I found "deb http://http.kali.org/kali kali-rolling main contrib non-free" was missing from my sources.list once I added it the install worked smoothly with:

sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install wine32

cybercide
2017-07-14, 00:12
I am impressed by the First post.

It works smoothly.

if
apt-get install wine32:i386

do not work

then write this command

apt-get install wine32

it Should work.

Thank you. OP Did great, your correction made everything go smoothly.

Pak
2017-10-11, 13:04
its not working.... i am having following error
root@Fakhar:~# sudo apt-get install wine-bin:i386
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package wine-bin:i386

chenbran
2017-11-16, 09:24
Really helpful. Thanks man!