2013. 3. 30. 17:34 Linux/패키지
리눅스 wine 설치
1. 기존 wine 제거
sudo apt-get autoremove wine --purge
sudo rm -rf ~/.wine
2. wine 설치
sudo add-apt-repository ppa:ubuntu-wine/ppa
sudo apt-get update && sudo apt-get install wine
3. wine 설정
WINEARCH=win32 winecfg
cd ~/.wine
wget http://winetricks.googlecode.com/svn/trunk/src/winetricks
chmod +x ./winetricks
./winetricks dotnet20 droid winxp sound=alsa volnum vcrun2008 ie6 corefonts
만약 NVIDIA 비디오 카드를 사용한다면
./winetricks physx
4. gnome-keyring-pkcs11.so 없다는 오류가 나면 설치.
wget https://raw.github.com/spaetzlecode/getlibs/master/getlibs
sudo chown root:root getlibs
sudo chmod +x getlibs
sudo mv -n getlibs /usr/bin
sudo mkdir -p /usr/lib/i386-linux-gnu/pkcs11/
sudo ln -s /usr/lib32/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so /usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so
5. err:winediag:xrandr12_init_modes Broken NVIDIA RandR detected, falling back to RandR 1.0.
5-1. nvidia 재설치.
sudo apt-get --purge remove xserver-xorg-video-nouveau
sudo apt-get purge nvidia-current
sudo apt-add-repository ppa:ubuntu-x-swat/x-updates
sudo apt-get update
sudo apt-get install nvidia-cur
5-2 NVIDIA 공식 드라이버 사용. < 5-1 로 안되면 >
http://lockpick.tistory.com/entry/nvidia-드라이버-설치
5-3 nvidia 제거. (nouveau 사용) < 5-2 로 해결 안되면 >
5-3-a 공식 NVIDIA 제거.
# ./NVIDIA-*.run --extract-only
# cd NVIDIA-*
# nvidia-installer --uninstall
# shutdown -r now
5-3-b nvidia-current 제거.
sudo apt-get --purge remove nvidia-current
6. LoadLibraryShim error reading registry key for installroot
don't worry about it.
'Linux > 패키지' 카테고리의 다른 글
리눅스 oracle java 설치 (0) | 2013.04.12 |
---|---|
리눅스 exfat 설치 (0) | 2013.04.07 |
리눅스 nvidia 드라이버 설치 (0) | 2013.04.06 |
리눅스 ssd 설정 (0) | 2013.03.30 |
리눅스 한글 콘솔 (0) | 2013.03.26 |