我是win10 + ubuntu18.04 双系统,利用的是Grub2做启动引导。 使用目的,不想占用过多的ubuntu18.04系统的磁盘空间,所以一般能wine 挂载win10 D盘,或E盘下的程序的。
所用版本: cmd@TR:~$ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 18.04 LTS Release: 18.04 Codename: bionic cmd@TR:~$ wine --version wine-3.0 (Ubuntu 3.0-1ubuntu1)
首先你得修改/etc/fstab,添加你win10 D盘和E盘的自动启动挂载。 类似这样的配置: cmd@TR:~$ cat /etc/fstab # /etc/fstab: static file system information. # # Use 'blkid' to print the universally unique identifier for a # device; this may be used with UUID= as a more robust way to name devices # that works even if disks are added and removed. See fstab(5). # # <file system> <mount point> <type> <options> <dump> <pass> # / was on /dev/sda3 during installation UUID=××× / ext4 errors=remount-ro 0 1 # /home was on /dev/sda6 during installation UUID=××× /home ext4 defaults 0 2 # swap was on /dev/sda5 during installation UUID=××× none swap sw 0 0 # win DataD UUID=××× /media/DataD ntfs defaults 0 0 # win DataE UUID=××× /media/DataE ntfs defaults 0 0
手动创建 Foxmail.desktop 复制到 ~/.local/share/applications/ 下,这样你的dash 或启动器里就可以搜到 Foxmail的图标,直接图标点击启动了。 图标是我利用了个工具,自己制作然后放到指定D盘那个路径下的。 [Desktop Entry] Name=Foxmail Name[zh_CN]=Foxmail Comment=Foxmail Exec=wine /media/DataD/Foxmail/Foxmail.exe Icon=/media/DataD/Foxmail/Skin/Foxmail.ico Terminal=false Type=Application Categories=Application; Encoding=UTF-8 StartupNotify=true
然后请跟我一起做如下步骤: 1.winecfg 启动wine3.0 自带的配置工具,开启界面默认进入应用程序标签修改底部的windows版本为 windowsxp,然后进入屏幕标签,把显示分辨率由96调整到109。 点确定关闭winecfg。 2.wine /media/DataD/Foxmail/Foxmail.exe,第一次尝试启动会报错,报错后关掉即可。 3.然后继续 wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks chmod +x winetricks ./winetricks riched30 ./winetricks ie8 4.安装完以上,接下来解决字体问题 ./winetricks 启动这个wine的第三方配置工具,看到一个图形化的界面默认选择,选择默认的wine容器,确定进入下一界面。 选择安装 corefonts 这一步,你们也可以试试命令行安装 ./winetricks corefonts 还需要复制 simsun.ttc 和simsun.ttf 到 ~/.wine/drive_c/windows/Fonts 下 然后 ./winetricks 运行注册表 搜索:FontSubstitutes 找到的行应该是:[Software\Microsoft\Windows NT\CurrentVersion\FontSubstitutes] 将其中的: "MS Shell Dlg"="Tahoma" "MS Shell Dlg 2″="Tahoma" 改为: "MS Shell Dlg"="SimSun" "MS Shell Dlg 2″="SimSun" 5.以上都OK的话,基本就是 windowsXp riched30 ie8 corefonts 和字体设置。 安装的ie8 的时候,会提示非win32 支持什么的,全部点确定。 最后我们再来命令行执行:wine /media/DataD/Foxmail/Foxmail.exe 完美支持,还可以搜狗输入法输入正文。
相关主题 |