Hi, I'm trying to make a shadow directory, and followed the instructions out of the Wine manual, but it doesn't work. I should do this: ~>cd / />mkdir c_shadow />cd c_shadow /c_shadow>ln -s /c_/* . /c_shadow>rm windows AnApp /c_shadow>cp -R /c_/{windows,AnApp} . /c_shadow>chmod -R 777 windows AnApp /c_shadow>perl -p -i -e 's|/c$|/c_shadow|g' /usr/local/etc/wine.conf I didn't came further than: [root@ben /]# mkdir c_shadow [root@ben /]# cd c_shadow [root@ben c_shadow]# ln -s /c_/* . [root@ben c_shadow]# rm Windows Program Files rm: cannot lstat `Windows': No such file or directory rm: cannot lstat `Program': No such file or directory rm: cannot lstat 'Files': No such file or directory I know to few about this to solve it, so can someone tell me what I should do, and is it possible that I come across other problems when I go further? Also, I have tried to run a program with --debugmsg +loaddll, but how do I see wich dll's are needed by the program then? The output only shows wich dll's are loaded. Thanks for your help, Ben _________________________________________________________________ Send and receive Hotmail on your mobile device: http://mobile.msn.com
On Sat, 12 Oct 2002, Ben Boomsma wrote:> Hi, > > I'm trying to make a shadow directory, and followed the instructions out of > the Wine manual, but it doesn't work. I should do this: >...> I didn't came further than: > > [root@ben /]# mkdir c_shadow > [root@ben /]# cd c_shadow > [root@ben c_shadow]# ln -s /c_/* .This is only going to work if your windows drive is monted on /c_. I know, in the examples before, we mounted it on /c so maybe you want to do ln -s /c/* . instead, IOW substitute the real mount point for /c_ in the example.> [root@ben c_shadow]# rm Windows Program Files > rm: cannot lstat `Windows': No such file or directory > rm: cannot lstat `Program': No such file or directory > rm: cannot lstat 'Files': No such file or directoryWas there a directory /c_/Windows? was it maybe /c_/windows instead? to rm a directory with a space in the name, quote the name: rm 'Program Files'> > I know to few about this to solve it, so can someone tell me what I should > do, and is it possible that I come across other problems when I go further?We can only guess. I guess it is possible.> > Also, I have tried to run a program with --debugmsg +loaddll, but how do I > see wich dll's are needed by the program then? The output only shows wich > dll's are loaded.Those are the ones that are needed. The idea is you might be able to use native windows dlls for some that Wine doesn't do too well or your app doesn't like the wine builtin. Bear in mind that native windows dlls are not guaranteed to work at all with Wine. <wine>/documentation/samples/config should be about right for this.> > Thanks for your help, > > BenLawson ---oops--- ________________________________________________________________ GET INTERNET ACCESS FROM JUNO! Juno offers FREE or PREMIUM Internet access for less! Join Juno today! For your FREE software, visit: http://dl.www.juno.com/get/web/.
On Sat, 12 Oct 2002, Ben Boomsma wrote:> Hi, > > I'm trying to make a shadow directory, and followed the instructions out of > the Wine manual, but it doesn't work. I should do this: >...> I didn't came further than: > > [root@ben /]# mkdir c_shadow > [root@ben /]# cd c_shadow > [root@ben c_shadow]# ln -s /c_/* .This is only going to work if your windows drive is monted on /c_. I know, in the examples before, we mounted it on /c so maybe you want to do ln -s /c/* . instead, IOW substitute the real mount point for /c_ in the example.> [root@ben c_shadow]# rm Windows Program Files > rm: cannot lstat `Windows': No such file or directory > rm: cannot lstat `Program': No such file or directory > rm: cannot lstat 'Files': No such file or directoryWas there a directory /c_/Windows? was it maybe /c_/windows instead? to rm a directory with a space in the name, quote the name: rm 'Program Files'> > I know to few about this to solve it, so can someone tell me what I should > do, and is it possible that I come across other problems when I go further?We can only guess. I guess it is possible.> > Also, I have tried to run a program with --debugmsg +loaddll, but how do I > see wich dll's are needed by the program then? The output only shows wich > dll's are loaded.Those are the ones that are needed. The idea is you might be able to use native windows dlls for some that Wine doesn't do too well or your app doesn't like the wine builtin. Bear in mind that native windows dlls are not guaranteed to work at all with Wine. <wine>/documentation/samples/config should be about right for this.> > Thanks for your help, > > BenLawson ---oops--- ________________________________________________________________ GET INTERNET ACCESS FROM JUNO! Juno offers FREE or PREMIUM Internet access for less! Join Juno today! For your FREE software, visit: http://dl.www.juno.com/get/web/.