



slashw wrote:@arjay
Your problem with the usb keyboard sounds familiar to me , i also have a asus m/b (sabertooth 990fx).
Also sometimes it will not fire up ( it responds on nothing at all) , i then reset the pc and than boots normal up.
It is not only related to LMDE KDE , it is happen also with another mint distro (not sure witch it was)
Maybe its a asus problem ?
My keyboard and mouse are from razer , .....usb....of curse
usb 1-1.4 device descriptor read/64 error 10





Schoelje wrote:[...]
Wine on amd64 is not going to come to LMDE KDE.
Because I'm not a Wine user (I prefer drinking it) I had to simply try and install it on my 64-bit system.
Zerozero mailed me that you need to install the 32-bit version on Wine on your system and thus creating a multiarch system.
[...]







Schoelje wrote:I'm testing the iso's now and when I'm done I'll release a release candidate.







Schoelje wrote:I have a similar issue on one of my systems: after startup sound is muted.
I always resolve that by uninstalling pulseaudio. Maybe that'll do it for you too.


Schoelje wrote:I have a similar issue on one of my systems: after startup sound is muted.
I always resolve that by uninstalling pulseaudio. Maybe that'll do it for you too.

#!/bin/bash
# Install Nvidia/ATI drivers on Debian
# Script date: 21/8/2012 - Schoelje (schoelje@hotmail.nl)
# Be root to run this script
if [ $UID -ne 0 ]; then
echo "Login as root."
su -c "$0 $@"
exit
fi
LINE="=================================================="
# Get the hardware
CARD=`lspci | grep VGA`
CARD=${CARD#*: }
if [[ "$CARD" =~ "NVIDIA" ]]; then
echo $LINE
echo "This script installs the appropriate Nvidia drivers"
echo $LINE
read -e -p "Continue? [y/n] (default=n): " ANSWER
case $ANSWER in
y|Y|yes|YES|Yes)
echo
echo "Found graphics controller: $CARD"
# Install nvidia-detect if it is not installed yet
NVDET=`apt search nvidia-detect | grep ^i`
if [ -z "$NVDET" ]; then
echo
echo "Install nvidia-detect to detect the needed drivers"
apt-get -y install nvidia-detect
fi
# Get the right drivers for the card
NVDRV=`nvidia-detect | grep nvidia- | tr -d ' '`
if [ -z "$NVDRV" ]; then
echo
echo "Error: Cannot detect the needed driver."
exit
fi
# Install drivers
case $NVDRV in
nvidia-glx)
DRVINST=`apt search ^nvidia-glx | grep ^i`
if [ -n "$DRVINST" ]; then
echo "Removing old Nvidia drivers..."
echo $LINE
apt-get remove nvidia-kernel-dkms nvidia-glx
echo
fi
echo "Installing Nvidia drivers..."
echo $LINE
apt-get install nvidia-kernel-dkms nvidia-glx build-essential nvidia-settings nvidia-xconfig
;;
nvidia-glx-legacy-96xx)
DRVINST=`apt search ^nvidia-glx-legacy-96xx | grep ^i`
if [ -n "$DRVINST" ]; then
echo "Removing old Nvidia legacy-96xx drivers..."
echo $LINE
apt-get remove nvidia-kernel-legacy-96xx-dkms nvidia-glx-legacy-96xx
echo
fi
echo "Installing Nvidia legacy-96xx drivers..."
echo $LINE
apt-get install nvidia-kernel-legacy-96xx-dkms nvidia-glx-legacy-96xx build-essential nvidia-settings nvidia-xconfig
;;
nvidia-glx-legacy-173xx)
DRVINST=`apt search ^nvidia-glx-legacy-173xx | grep ^i`
if [ -n "$DRVINST" ]; then
echo "Removing old Nvidia legacy-173xx drivers..."
echo $LINE
apt-get remove nvidia-kernel-legacy-173xx-dkms nvidia-glx-legacy-173xx
echo
fi
echo "Installing Nvidia legacy-173xx drivers..."
echo $LINE
apt-get install nvidia-kernel-legacy-173xx-dkms nvidia-glx-legacy-173xx build-essential nvidia-settings nvidia-xconfig
;;
*)
echo "Your Nvidia card driver cannot be determined."
echo "Press ENTER to exit"
read
exit
esac
echo
echo $LINE
echo "Configure Nvidia and blacklist Nouveau"
echo $LINE
nvidia-xconfig
echo "blacklist nouveau" > /etc/modprobe.d/blacklist-nouveau.conf
;;
*)
echo "User abort"
esac
elif [[ "$CARD" =~ "ATI" ]]; then
# The series 2000, 3000 and 4000 are not supported anymore
# Users affected by this should switch to the free radeon driver: xserver-xorg-video-radeon
STARTSERIE=5000
# Split the card string into separate words and check for the Radeon series
IFS=" "
set $CARD
i=0
for ITEM
do
# Is it a number?
if [[ "$ITEM" == ?(+|-)+([0-9]) ]]; then
# Is the number between 1000 and STARTSERIE?
if [ $ITEM -gt 1000 ] && [ $ITEM -lt $STARTSERIE ]; then
echo $LINE
echo "Your card with chip set $ITEM is not supported anymore"
echo $LINE
# Install xserver-xorg-video-radeon if it is not installed yet (it should be)
RAD=`apt search xserver-xorg-video-radeon | grep ^i`
if [ -z "$RAD" ]; then
echo
echo "Installing default Radeon driver xserver-xorg-video-radeon"
echo $LINE
apt-get -y install xserver-xorg-video-radeon
fi
exit
fi
fi
((i++))
done
echo $LINE
echo "This script installs the appropriate ATI drivers"
echo $LINE
read -e -p "Continue? [y/n] (default=n): " ANSWER
case $ANSWER in
y|Y|yes|YES|Yes)
echo
echo $LINE
echo "Get fglrx from sid repositories (not available in wheezy)"
echo $LINE
echo "deb http://ftp.us.debian.org/debian sid main contrib non-free" > /etc/apt/sources.list.d/debsid.list
apt-get update
apt-get install build-essential module-assistant fglrx-control fglrx-driver --reinstall
rm /etc/apt/sources.list.d/debsid.list
apt-get update
echo
echo $LINE
echo "Create xorg.conf"
echo $LINE
aticonfig --initial
;;
*)
echo "User abort"
esac
fi












Users browsing this forum: Roland and 1 guest