当前位置: 首页>>技术教程>>正文


在Ubuntu Linux上通过WINE安装Notepad ++

, , ,

问题描述

迁移到Linux之后,我想念Notepad ++,并且想将它带到新环境中。

我已经安装了Wine并下载了npp.5.8.5.Installer.exe。我不知道该.exe在哪个目录或存在的位置,或者是否必须查询Wine或什么。

如何在Ubuntu Linux上通过Wine安装Notepad ++?

最佳回答

  1. 安装Wine:

    sudo apt-get install wine
    
  2. 配置版本(Windows 8适用于我)和驱动器(自动检测,../drive_c指向~/.wine/drive_c/):

    winecfg
    
  3. 安装:

    wine ~/Downloads/npp.7.3.3.Installer.exe
    

    安装后直接运行可能会导致插件列表无法加载。 Wine似乎也支持Plugin Manager 1.3.5是最新版本,因为尝试更新Plugin Manager破坏了插件列表。

  4. 跑:

    wine "C:\Program Files\Notepad++\notepad++.exe"
    

    或者,如果您不喜欢调试输出,则通过菜单。请注意,在64位Windows上的32位程序位于Program Files (x86)64-bit Notepad++ doesn’t come with the Plugin Manager中。

  5. 卸载:

    wine uninstall
    

    再次运行以确保它不存在。

次佳回答

这对我来说效果很好,后来从Ubuntu 16.4.3升级到18.4.1没问题。 (我自从发现Sublime-text以来就很不错了,因为它以不同的方式突出显示了保留字,字符串,表名和别名,并且支持简单的code-formatter扩展。)2018年6月15日星期五12:35:45

  1. 在64位环境(more…)上启用32位

    sudo dpkg --add-architecture i386
    sudo apt-get update
    sudo apt-get dist-upgrade
    
  2. 安装最新版本的Wine(more…)

    sudo apt-get install --install-recommends winehq-stable
    wine --version
    

    :〜$ wine-3.0.1

  3. 配置版本(Windows 8为我工作)和驱动器(自动检测,../drive_c指向~/.wine/drive_c/)

    winecfg
    
  4. 添加mono .NET解释器。 (more…)

    sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
    sudo apt install apt-transport-https
    echo "deb https://download.mono-project.com/repo/ubuntu stable-xenial main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list
    sudo apt update
    
  5. 从程序文件(x86)用wine打开win32应用程序

    wine "C:\Program Files (x86)\Notepad++\notepad++.exe"
    
  6. 仅供参考:您可以使用dos shell 探索葡萄酒环境

    wine cmd
    

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/10728.html,未经允许,请勿转载。