hi,
The problem is that for some reason, Suse is trying to uninstall the packages
'hotplug' and 'iwidgets'. Did you get click happy and click here and there and everywhere?
Anyway, the solution is to simply check the boxes
Do not set HotPlug to taboo
Do not set Iwidgets to taboo
And now click
ok-- try again
Unfortunately Suse has chosen to give unhelpful messages in Yast. Too bad.
Installing Linux software.
Linux software usually comes in two flavours:
(a) Packaged rpm file
(b) Source code.
Installing RPM
To install an rpm file, you can login as root (or su to root from an terminal), and open a terminal. Go to the directory where you have the file and type:
rpm -ivh filename.rpm.
Installing Source code.
First unpack it by using
tar -zxvf filename.tgz
or
tar -zxvf filename.tar.gz
or
tar -jxvf filename.tar.bz2
depending upon the file extension.
Now you need to compile it. Now there is a slight complication, because the source code may come in various formats, and most of the times the software requires some other software to be installed etc. I will give instructions for just the code which uses autoconf (which is most of them)
Change to the source code directory, and type
./configure
If configure did not report any error, type
make
This will compile the software. If no errors, go to next step.
Then type su to login as root, and enter root password. Now type
make install
This will install the software.
Bye,
Pallav
Edit: Removed ./ from make and make install commands.