|
我想在linux下运行金山词霸,因此便装了wine。
我装的是RH8&WIN XP双系统.XP的文件系统为Fat32.XP下面分了C,D,E三个盘,卷标分别为C,D,E.F为光驱.
我的~/.wine/config部分配置如下:
[Drive A]
"Path" = "/mnt/fd0"
"Type" = "floppy"
"Label" = "Floppy"
"Filesystem" = "win95"
"Serial" = "87654321"
[Drive C]
"Path" = "/backup/win-c"
"Type" = "hd"
"Label" = "MS-DOS"
"Filesystem" = "win95"
[Drive D]
"Path" = "/mnt/win-d"
"Type" = "hd"
"Label" = "D"
"Filesystem" = "win95"
[Drive E]
"Path" = "/mnt/win-e"
"Type" = "hd"
"Label" = "E"
"Filesystem" = "win95"
[Drive F]
"Path" = "/mnt/cdrom"
"Type" = "cdrom"
"Label" = "F"
"Filesystem" = "win95"
"Device" = "/dev/cdrom"
[Drive G]
"Path" = "${HOME}"
"Type" = "network"
"Label" = "Home"
"Filesystem" = "win95"
[wine]
"Windows" = "c:\\windows"
"System" = "c:\\windows\\system"
"Temp" = "e:\\"
"Path" = "c:\\windows;c:\\windows\\system;e:\\;e:\\test;f:\\"
"Profile" = "c:\\windows\\Profiles\\Administrator"
"GraphicsDriver" = "x11drv"
;"ShowDirSymlinks" = "1"
;"ShowDotFiles" = "1"
"ShellLinker" = "wineshelllink"
在启动wine时有以下错误:
[puck@localhost puck]$ /usr/local/wine/bin/wine notepad
Could not stat /mnt/fd0 (No such file or directory), ignoring drive A:
Invalid path L"c:\\windows\\system" for L"system" directory: No such file or directory.
Perhaps you have not properly edited or created your Wine configuration file,
which is (supposed to be) '/home/puck/.wine/config'.
是这样的,我是按照一篇有关wine的配置的文章来做的.其中有关内容如下:
建议:不要将 c: 指向一个存在的真实 windows 盘,而是自己建立一个 “假”的,比如,你想在 /backup/c_drive 下建立一个虚拟 windows 的 c 盘,则执行如下命令(执行以下命令一般需要root 权限)
mkdir /backup/c_drive
cd /backup/c_drive
mkdir -p windows windows/Start\ Menu \
windows/Start\ Menu/Programs windows/Fonts windows/system32 windows/Desktop
ln -s /windows/system32 windows/system
将c:指向真实的windows的c盘后,问题解决了.但是我想用wine来运行金山词霸,不是得复制一些文件到虚拟的c:盘下去吗?现在怎么办呢? |
|