Results 11 to 20 of 29
Yes, it was a clean install. I had Fedora on there before. I tried to install Debian, but could never get startx to work. I like the look of suse, ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 05-31-2006 #11
Yes, it was a clean install. I had Fedora on there before. I tried to install Debian, but could never get startx to work. I like the look of suse, just a few things to learn. I used to use only Mac, and never messed much with terminal.
- 05-31-2006 #12Oups sorry, I meant:
Originally Posted by dareofficer
So "ls" with a small "L".Code:ls -l /dev/dvd ls -l /dev/cdrom ls -l /dev/sr0
And what about:
10 seconds after putting a cd in?Code:cat /etc/mtab ls /media
"To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."
-Bruce Lee
- 05-31-2006 #13
linux-berlin1:~ # ls -l /dev/dvd
lrwxrwxrwx 1 root root 3 May 31 06:03 /dev/dvd -> hdd
linux-berlin1:~ # ls -l /dev/cdrom
lrwxrwxrwx 1 root root 3 May 31 06:03 /dev/cdrom -> hdd
linux-berlin1:~ # ls -l /dev/sr0
brw-rw----+ 1 root disk 11, 0 May 31 06:03 /dev/sr0
linux-berlin1:~ # cat /etc/mtab
/dev/hdb2 / reiserfs rw,acl,user_xattr 0 0
proc /proc proc rw 0 0
sysfs /sys sysfs rw 0 0
debugfs /sys/kernel/debug debugfs rw 0 0
udev /dev tmpfs rw 0 0
devpts /dev/pts devpts rw,mode=0620,gid=5 0 0
/dev/hdb3 /home reiserfs rw,acl,user_xattr 0 0
securityfs /sys/kernel/security securityfs rw 0 0
/dev/sr0 /media/Quake3 iso9660 ro,nosuid,nodev,utf8,uid=1000 0 0
/dev/sda1 /media/_ ext3 rw,nosuid,nodev 0 0
/dev/hdd /media/031211_1920 iso9660 ro,nosuid,nodev,utf8,uid=1000 0 0
linux-berlin1:~ # ls /media
031211_1920 Quake3 _ floppy
linux-berlin1:~ #
- 05-31-2006 #14
So you 2 cdrom drive? Which one is the DVD burner? The one with Quake CD in it, or the other?
It seems Suse 10.1 doesn't use static (fixed) mount points for cdrom, this will complicate a little wine configuration.
It seems there are 2 workarounds for this issue:
http://transgaming.org/forum/viewtop...1ccc5b71f97efc
http://en.opensuse.org/SDB:Mounting_...c_Mount_Points
The second one seems more reliable but a little more complex to set up.
I'll help you with that once you post which of cd/dvd drive does what."To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."
-Bruce Lee
- 05-31-2006 #15
They are both DVD Burners. The one with Quake III, is the one I would like to use?
- 05-31-2006 #16
Ok then. We'll try Suse's own solution in order to create static mount point for your DVD burner (just the one with Quake in it), which address is /dev/sr0.
All those instructions must be executed in a terminal as "root". To login as root:
and type the root password (which won't appear as you type it).Code:su
1) We must create the mount point:
2) Then we must create a policy file for HAL:Code:mkdir /media/dvdrecorder
3) Once the editor is opened, copy this in the file:Code:nano /usr/share/hal/fdi/policy/95userpolicy/mountpoints.fdi
Then save the file! And exit the editor.Code:<?xml version="1.0" encoding="ISO-8859-1"?> <!-- -*- SGML -*- --> <deviceinfo version="0.2"> <device> <!-- optical drives --> <match key="block.device" string="/dev/sr0"> <match key="volume.is_disc" bool="true"> <merge key="volume.policy.should_mount" type="bool">true</merge> <merge key="volume.policy.desired_mount_point" type="string">dvdrecorder</merge> </match> </match> </device> </deviceinfo>
4) Then type this command
5) Then log out of root:Code:rchal restart
6) And configure wine:Code:exit
That's it!Code:cd ~/.wine/dosdevices rm d: ln -s /media/dvdrecorder d:
Those instructions more or less come from here:
http://en.opensuse.org/SDB:Mounting_...c_Mount_Points"To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."
-Bruce Lee
- 05-31-2006 #17
How do I save that file in editor? I see no save command?
- 05-31-2006 #18In nano the "save" command is called "WriteOut" and you can use with CTRL - O.
Originally Posted by dareofficer
Exit is done with CTRL - X"To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."
-Bruce Lee
- 05-31-2006 #19
<?xml version="1.0" encoding="ISO-8859-1"?> <!-- -*- SGML -*- -->
<deviceinfo version="0.2">
<device>
<!-- optical drives -->
<match key="block.device" string="/dev/sr0">
<match key="volume.is_disc" bool="true">
<merge key="volume.policy.should_mount"
type="bool">true</merge>
<merge key="volume.policy.desired_mount_point"
type="string">dvdrecorder</merge>
</match>
</match>
</device>
</deviceinfo>
[ Error writing /usr/share/hal/fdi/policy/95userpolicy/mountpoints.fdi: No suc ]^G Get Help ^O WriteOut ^R Read File ^Y Prev Page ^K Cut Text ^C Cur Pos
^X Exit ^J Justify ^W Where Is ^V Next Page ^U UnCut Txt ^T To Spell
Does this mean I did something wrong?
- 05-31-2006 #20Apparently the directory doesn't exist, just create it and go on with the instructions:
Originally Posted by dareofficer
Code:mkdir -p /usr/share/hal/fdi/policy/95userpolicy/
"To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."
-Bruce Lee


Reply With Quote
