Can some one help me with a step by step for installing Wine on Suse 10.1?
Printable View
Can some one help me with a step by step for installing Wine on Suse 10.1?
I guess you can install it with YAST.
And then run
in a console in order to configure it.Code:winecfg
Okay, I did find the yast install and did that. What do you mean my concole? Terminal? If so where did it put it?
Thanks, I'm very new to this.
Yes, the gnome-terminal, the konsole, the shell, etc.Quote:
Originally Posted by dareofficer
Something that looks like a command prompt, where you can type.
There, to configure "wine", you can type:
Code:winecfg
I got it installed thanks. I wanted to to install DVD Shrink. I got it installed but it does not see my DVD. Would you know how to get it to see the DVD?
You can set up symlink in "winecfg" for your dvd player which should be "/media/cdrecorder" or similar.Quote:
Originally Posted by dareofficer
For example, in the console (or terminal):
1) Doing
you should see a line like that:Code:cat /etc/fstab
2) So put a symlink to it in wine directory.Code:/dev/cdrecorder /media/cdrecorder subfs noauto,fs=cdfss,ro,procuid,nosuid,nodev,exec,iocha rset=utf8 0 0
Either use "winecfg" to configure the DVD device. or you can do it in the console:
Replace "/media/cdrecorder" with whatever you found in 1)Code:cd ~/.wine/dosdevices
rm d:
ln -s /media/cdrecorder d:
Now entering DVDShrink with a DVD in your drive you should be able to see it.
linux-berlin1:/ # cat /etc/fstab
/dev/hdb2 / reiserfs acl,user_xattr 1 1
/dev/hdb3 /home reiserfs acl,user_xattr 1 2
proc /proc proc defaults 0 0
sysfs /sys sysfs noauto 0 0
debugfs /sys/kernel/debug debugfs noauto 0 0
usbfs /proc/bus/usb usbfs noauto 0 0
devpts /dev/pts devpts mode=0620,gid=5 0 0
/dev/fd0 /media/floppy auto noauto,user,sync 0 0
This is what I show when I do cat /etc/fstab
Thanks, for helping me out. I want to figure this out.
Wow, nothing about your cdrom drive in /etc/fstab...
Did you do a clean install of Suse 10.1? Or did you upgrade from Suse 10.0?
Just put a cd in your cdrom drive, wait 10 seconds, and then type (in the terminal):
And post the output of those 3 commands.Code:cat /etc/mtab
ls /media
dmesg | tail
And see if something shoes up when you do those 3 commands:
Code:ls /dev/dvd
ls /dev/cdrom
ls /dev/sr0
linux-berlin1:/ # dmesg | tail
SFW2-INext-DROP-DEFLT IN=eth0 OUT= MAC=01:00:5e:00:00:fb:00:0d:93:79:31:d4:08:00 SRC=192.168.1.3 DST=224.0.0.251 LEN=117 TOS=0x18 PREC=0x00 TTL=255 ID=18153 PROTO=UDP SPT=5353 DPT=5353 LEN=97
SFW2-INext-DROP-DEFLT IN=eth0 OUT= MAC=01:00:5e:00:00:fb:00:0d:93:6b:7c:74:08:00 SRC=192.168.1.2 DST=224.0.0.251 LEN=244 TOS=0x18 PREC=0x00 TTL=255 ID=63512 PROTO=UDP SPT=5353 DPT=5353 LEN=224
SFW2-INext-DROP-DEFLT IN=eth0 OUT= MAC=01:00:5e:00:00:fb:00:0d:93:79:31:d4:08:00 SRC=192.168.1.3 DST=224.0.0.251 LEN=259 TOS=0x18 PREC=0x00 TTL=255 ID=18155 PROTO=UDP SPT=5353 DPT=5353 LEN=239
SFW2-INext-DROP-DEFLT IN=eth0 OUT= MAC= SRC=192.168.1.7 DST=192.168.1.255 LEN=256 TOS=0x00 PREC=0x00 TTL=64 ID=0 DF PROTO=UDP SPT=138 DPT=138 LEN=236
SFW2-INext-DROP-DEFLT IN=eth0 OUT= MAC= SRC=192.168.1.7 DST=192.168.1.255 LEN=242 TOS=0x00 PREC=0x00 TTL=64 ID=0 DF PROTO=UDP SPT=138 DPT=138 LEN=222
SFW2-INext-DROP-DEFLT IN=eth0 OUT= MAC= SRC=192.168.1.7 DST=192.168.1.255 LEN=256 TOS=0x00 PREC=0x00 TTL=64 ID=0 DF PROTO=UDP SPT=138 DPT=138 LEN=236
SFW2-INext-DROP-DEFLT IN=eth0 OUT= MAC= SRC=192.168.1.7 DST=192.168.1.255 LEN=242 TOS=0x00 PREC=0x00 TTL=64 ID=0 DF PROTO=UDP SPT=138 DPT=138 LEN=222
SFW2-INext-DROP-DEFLT IN=eth0 OUT= MAC=01:00:5e:00:00:fb:00:0d:93:6b:7c:74:08:00 SRC=192.168.1.2 DST=224.0.0.251 LEN=62 TOS=0x18 PREC=0x00 TTL=255 ID=891 PROTO=UDP SPT=5353 DPT=5353 LEN=42
SFW2-INext-DROP-DEFLT IN=eth0 OUT= MAC= SRC=192.168.1.7 DST=192.168.1.255 LEN=256 TOS=0x00 PREC=0x00 TTL=64 ID=0 DF PROTO=UDP SPT=138 DPT=138 LEN=236
SFW2-INext-DROP-DEFLT IN=eth0 OUT= MAC= SRC=192.168.1.7 DST=192.168.1.255 LEN=242 TOS=0x00 PREC=0x00 TTL=64 ID=0 DF PROTO=UDP SPT=138 DPT=138 LEN=222
linux-berlin1:/ # ls /dev/dvd
/dev/dvd
linux-berlin1:/ # ls /dev/cdrom
/dev/cdrom
linux-berlin1:/ # ls /dev/sr0
/dev/sr0
linux-berlin1:/ #