Hi all, I have trouble with making the symbolic link to the corresponding device node. I have typed sudo In ~/.wine/dosdevices lrwxrwxrwx 1 username d: -> /mnt/cdrom but it gives me this error : prawira@ubuntu:~/Warcraft III$ ln ~/.wine/dosdevices lrwxrwxrwx 1 d: -> /mnt/cdrom bash: /mnt/cdrom: Permission denied prawira@ubuntu:~/Warcraft III$ ln ~/.wine/dosdevices lrwxrwxrwx 1 d:: -> /dev/hdc bash: /dev/hdc: Read-only file system I'm not really sure to fix this problem, can anyone help me? I'm using ubuntu 5.10 breezy badger, my wine version is 0.020050725-0ubu my /etc/fstab information is # /etc/fstab: static file system information. # # <file system> <mount point> <type> <options> <dump> <pass> proc /proc proc defaults 0 0 /dev/hda2 / ext3 defaults,errors=remount-ro 0 1 /dev/hda5 none swap sw 0 0 /dev/hdc /media/cdrom0 udf,iso9660 user,noauto 0 0 /dev/fd0 /media/floppy0 auto rw,user,noauto 0 0 my video card is ATI RADION, however i dont remember the exact version. my gcc version is 4:4.0.1-3 Thanks in advance, Prawira _________________________________________________________________ Express yourself instantly with MSN Messenger! Download today it's FREE! http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/
better update you wine to version 0.9.x, wine 20050725 is very old. now links are setup with winecfg (easy-yo-use graphical tool) --- Prawira Wijaya <ahao_85@hotmail.com> a ?crit :> Hi all, > > I have trouble with making the symbolic link to the corresponding device > node. > I have typed sudo In ~/.wine/dosdevices lrwxrwxrwx 1 username d: -> > /mnt/cdrom > but it gives me this error : > prawira@ubuntu:~/Warcraft III$ ln ~/.wine/dosdevices lrwxrwxrwx 1 d: -> > /mnt/cdrom > bash: /mnt/cdrom: Permission denied > prawira@ubuntu:~/Warcraft III$ ln ~/.wine/dosdevices lrwxrwxrwx 1 d:: -> > /dev/hdc > bash: /dev/hdc: Read-only file system > > I'm not really sure to fix this problem, can anyone help me? I'm using > ubuntu 5.10 breezy badger, my wine version is 0.020050725-0ubu > my /etc/fstab information is > # /etc/fstab: static file system information. > # > # <file system> <mount point> <type> <options> <dump> <pass> > proc /proc proc defaults 0 0 > /dev/hda2 / ext3 defaults,errors=remount-ro 0 1 > /dev/hda5 none swap sw 0 0 > /dev/hdc /media/cdrom0 udf,iso9660 user,noauto 0 0 > /dev/fd0 /media/floppy0 auto rw,user,noauto 0 0 > my video card is ATI RADION, however i dont remember the exact version. > my gcc version is 4:4.0.1-3 > > Thanks in advance, > > Prawira > > _________________________________________________________________ > Express yourself instantly with MSN Messenger! Download today it's FREE! > http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/ > > > _______________________________________________ > wine-users mailing list > wine-users@winehq.org > http://www.winehq.org/mailman/listinfo/wine-users >Kind regards, Sylvain Petreolle (aka Usurp) --- --- --- --- --- --- --- --- --- --- --- --- --- Listen to free Music: http://www.jamendo.com Windows is proprietary, use free ReactOS instead : http://www.reactos.org
What are the permissions on /mnt/cdrom and /dev/cdrom? Also, I agree with the other poster that you need to get a more recent version of wine as many changes/fixes have been made since that version... John --- Prawira Wijaya <ahao_85@hotmail.com> wrote:> Hi all, > > I have trouble with making the symbolic link to the corresponding device > node. > I have typed sudo In ~/.wine/dosdevices lrwxrwxrwx 1 username d: -> > /mnt/cdrom > but it gives me this error : > prawira@ubuntu:~/Warcraft III$ ln ~/.wine/dosdevices lrwxrwxrwx 1 d: -> > /mnt/cdrom > bash: /mnt/cdrom: Permission denied > prawira@ubuntu:~/Warcraft III$ ln ~/.wine/dosdevices lrwxrwxrwx 1 d:: -> > /dev/hdc > bash: /dev/hdc: Read-only file system > > I'm not really sure to fix this problem, can anyone help me? I'm using > ubuntu 5.10 breezy badger, my wine version is 0.020050725-0ubu > my /etc/fstab information is > # /etc/fstab: static file system information. > # > # <file system> <mount point> <type> <options> <dump> <pass> > proc /proc proc defaults 0 0 > /dev/hda2 / ext3 defaults,errors=remount-ro 0 1 > /dev/hda5 none swap sw 0 0 > /dev/hdc /media/cdrom0 udf,iso9660 user,noauto 0 0 > /dev/fd0 /media/floppy0 auto rw,user,noauto 0 0 > my video card is ATI RADION, however i dont remember the exact version. > my gcc version is 4:4.0.1-3 > > Thanks in advance, > > Prawira > > _________________________________________________________________ > Express yourself instantly with MSN Messenger! Download today it's FREE! > http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/ > > > _______________________________________________ > wine-users mailing list > wine-users@winehq.org > http://www.winehq.org/mailman/listinfo/wine-users >
You can't use "ln" that way. That's what you see when you do "ls -l" on a symlink, not how you make one. In the line you typed, the last part "> /mnt/cdrom" is trying to write whatever the output of the command was to /mnt/cdrom, and of course that doesn't work. What you need to do is ln -s /mnt/cdrom "~/.wine/dosdevices/d:" It's also true that you will do better with a more recent version of wine, but that's not the problem here. On Thu, 13 Apr 2006, Prawira Wijaya wrote:> Hi all, > > I have trouble with making the symbolic link to the corresponding device > node. > I have typed sudo In ~/.wine/dosdevices lrwxrwxrwx 1 username d: -> > /mnt/cdrom > but it gives me this error : > prawira@ubuntu:~/Warcraft III$ ln ~/.wine/dosdevices lrwxrwxrwx 1 d: -> > /mnt/cdrom > bash: /mnt/cdrom: Permission denied > prawira@ubuntu:~/Warcraft III$ ln ~/.wine/dosdevices lrwxrwxrwx 1 d:: -> > /dev/hdc > bash: /dev/hdc: Read-only file system > > I'm not really sure to fix this problem, can anyone help me? I'm using > ubuntu 5.10 breezy badger, my wine version is 0.020050725-0ubu > my /etc/fstab information is > # /etc/fstab: static file system information. > # > # <file system> <mount point> <type> <options> <dump> <pass> > proc /proc proc defaults 0 0 > /dev/hda2 / ext3 defaults,errors=remount-ro 0 1 > /dev/hda5 none swap sw 0 0 > /dev/hdc /media/cdrom0 udf,iso9660 user,noauto 0 0 > /dev/fd0 /media/floppy0 auto rw,user,noauto 0 0 > my video card is ATI RADION, however i dont remember the exact version. > my gcc version is 4:4.0.1-3 > > Thanks in advance, > > Prawira > > _________________________________________________________________ > Express yourself instantly with MSN Messenger! Download today it's FREE! > http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/ > > > _______________________________________________ > wine-users mailing list > wine-users@winehq.org > http://www.winehq.org/mailman/listinfo/wine-users >