zoukankan      html  css  js  c++  java
  • Linux XMind

    XMind这个软件好像不错的样子,至少在Windows/Linux/Mac下都可以工作,作为FreeMind的替代品应该是没什么问题(还有一个vym貌似也可以,可能没有XMind好,毕竟XMind有公司在维护)

    首先,去官网下载Linux版的,SourceForge的版本已经比较老了。然后解压到主目录中的某个子目录中去,注意,解压文件夹就是运行的文件夹,解压后执行文件夹中的 setup.sh

    sudo sh setup.sh

    这会安装依赖库和字体文件,还有一些可选的软件包可以安装

    sudo apt install libcanberra-gtk-module murrine-themes

    此时,切换到 XMind_amd64,双击XMind即可运行!这样运行当然比较原始,我们可为其创建一个应用图标,创建文件 ~/.local/share/applications/xmind.desktop,并将以下内容复制进去(注意修改文件夹位置)

    [Desktop Entry]
    Type=Application
    Path=<path to xmind unzip dir>/XMind_amd64
    Exec=<path to xmind unzip dir>/XMind_amd64/XMind
    Name=XMind
    Comment=Create mind maps
    GenericName=Planning Tool
    Icon=<path to xmind unzip dir>/XMind_amd64/configuration/org.eclipse.osgi/983/0/.cp/icons/xmind.256.png
    Categories=Office;

    注意,上面的Path指定了运行XMind所在的文件夹,这项若是去掉,则会运行出错,提示某个java的类库找不到。

    创建了这个应用图标项,就可以在应用程序的办公分类中找到XMind了,enjoy it!

  • 相关阅读:
    Docker 部署 Nginx
    Docker 安装 Redis
    linux shell "2>&1"
    定时备份docker mysql
    SpringBoot 中拦截器和过滤器的使用
    SpringBoot WebMvcConfigurer
    springboot自定义参数解析HandlerMethodArgumentResolver
    mysql在linux下查看my.cnf位置的方法
    Linux下设置mysql允许远程连接
    Android项目实战(六十):修改项目包名
  • 原文地址:https://www.cnblogs.com/windtail/p/8258957.html
Copyright © 2011-2022 走看看