个人工具

“UbuntuHelp:Freemind”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
第2行: 第2行:
 
{{Languages|UbuntuHelp:Freemind}}
 
{{Languages|UbuntuHelp:Freemind}}
 
== Introduction ==
 
== Introduction ==
'''Freemind''' http://freemind.sourceforge.net/wiki/index.php/Main_Page is a mind-mapping tool, that is already integrated with a lot of wiki stuff.
+
'''Freemind''' is a mind-mapping tool, that is already integrated with a lot of wiki stuff.
I have written this page due to people asking me for installation instructions under Ubuntu.
+
!FreeMind is in the Ubuntu repositories by default, but it is version 0.7.1 from 2004. Newer versions fix bugs and introduce significant new functionality.
Note:: Hi, I am the package owner for FreeMind and Debian (FreeMind is not ''yet'' in Ubuntu), and I need to recommend checking the official [http://freemind.sourceforge.net/wiki/index.php/FreeMind_on_Linux FreeMind on Linux] page, which contains much more details, FAQs and troubleshooting instructions - and is kept up-to-date by myself. Thanks! -- [[UbuntuHelp:EricL2|EricL2]] <<DateTime(2008-01-13T12:15:13Z)>>
+
Please also check the official [http://freemind.sourceforge.net/wiki/index.php/FreeMind_on_Linux FreeMind on Linux] page, which contains much more details, FAQs and troubleshooting instructions.
== Installing the Freemind under Ubuntu 8.04 (Hardy Heron) ==
+
== Installing Freemind from the Repository ==
Currently, FreeMind is at version 0.7.1 in the repositories. This is the recomended method of installing it:
+
Tested under Ubuntu 8.04 (Hardy Heron) and 9.04 beta (Jaunty Jacalope).
{|border="1" cellspacing="0"
+
Currently, !FreeMind is at version 0.7.1 in the repositories. This is the recomended method of installing it:
| sudo aptitude install freemind  
+
<pre><nowiki>
|}
+
sudo aptitude install freemind
Or, alternatively, use 'System > Administration > Synaptic' or 'Applications > Add/Remove'
+
</nowiki></pre>
 +
Or, alternatively, use '''''System -> Administration -> Synaptic''''' or '''''Applications -> Add/Remove'''''.
 
Note: A working alternative has been described by [http://devarthur.blogspot.com/2008/05/freemind-manual-installation-in-ubuntu.html Arthur Penn] .
 
Note: A working alternative has been described by [http://devarthur.blogspot.com/2008/05/freemind-manual-installation-in-ubuntu.html Arthur Penn] .
The following does '''not''' work with Ubuntu 8.04 (Hardy Heron):
+
== Installing Newer Releases of Freemind ==
== Installing the latest Freemind under Ubuntu 7.10 (Gutsy Gibbon) & Ubuntu 7.04 (Feisty Fawn) ==
+
Version 0.7.1 included in the official repositories lacks significant functionality compared to the current version. There are open bugs related to this in bugs.launchpad.net (#182927) and in bugs.debian.org (#436206).
Add the repository for Freemind:
+
New features in 0.8.x include Undo/Redo, moveable nodes, PDF export and a preferences pane.
{|border="1" cellspacing="0"
+
Version 0.9.x which is currently in beta testing introduces scripting support via 'Groovy', filters, attributes, a tabbed interface etc.
| gksudo gedit /etc/apt/sources.list  
+
=== Install from .deb package ===
|}
+
Tested on 8.04 (Hardy Heron), 8.10 (Intrepid Ibex), 9.04 beta (Jaunty Jacalope)
add the following lines
+
<ol><li>Go to freemind [http://freemind.sourceforge.net/wiki/index.php/ Download page].
{|border="1" cellspacing="0"
+
</li><li>Download the Debian package for 0.8.1.
|# freemind source  
+
</li><li>Double click on the downloaded package and use Gdebi to install it.</li></ol>
|-
+
 
|deb http://eric.lavar.de/comp/linux/debian/ experimental/  
+
=== From Alternative Respoitories ===
|-
+
Tested under Ubuntu 7.10 (Gutsy Gibbon) & Ubuntu 7.04 (Feisty Fawn). The following does '''not''' work with Ubuntu 8.04 (Hardy Heron).
|deb-src http://eric.lavar.de/comp/linux/debian/ experimental/  
+
<ol><li>Add the repository for Freemind:</li></ol>
|}
+
 
Install from the repository:
+
<pre><nowiki>
{|border="1" cellspacing="0"
+
gksudo gedit /etc/apt/sources.list
|sudo apt-get update
+
</nowiki></pre>
|-
+
<ol><li>Add the following lines:</li></ol>
|sudo apt-get install freemind
+
 
|}
+
<pre><nowiki>
Or, alternatively, use 'System > Administration > Synaptic' or 'Applications > Add/Remove'
+
# freemind source
 +
deb http://eric.lavar.de/comp/linux/debian/ experimental/
 +
deb http://eric.lavar.de/comp/linux/debian/ ubuntu/
 +
</nowiki></pre>
 +
<ol><li>Install from the repository:</li></ol>
 +
 
 +
<pre><nowiki>
 +
sudo apt-get update
 +
sudo apt-get install freemind
 +
</nowiki></pre>
 +
Or, alternatively, use '''''System -> Administration -> Synaptic''''' or '''''Applications -> Add/Remove'''''.
 
=== Starting Freemind ===
 
=== Starting Freemind ===
{|border="1" cellspacing="0"
+
To start !FreeMind type the following commands in a terminal:
|export '''JAVA_HOME'''=/usr/lib/jvm/java-1.5.0-sun-1.5.0.13/
+
<pre><nowiki>
|-
+
export '''JAVA_HOME'''=/usr/lib/jvm/java-1.5.0-sun-1.5.0.13/
|export '''PATH'''=$'''PATH''':/usr/lib/jvm/java-1.5.0-sun-1.5.0.13/bin/
+
export '''PATH'''=$'''PATH''':/usr/lib/jvm/java-1.5.0-sun-1.5.0.13/bin/
|-
+
freemind
|freemind
+
</nowiki></pre>
|}
+
 
=== To start it next time from terminal without setting vars ===
 
=== To start it next time from terminal without setting vars ===
In '''another terminal''' set JAVA related variables in the profile.
+
To start it next time from terminal without setting vars, in '''another terminal''' set JAVA related variables in the profile:
{|border="1" cellspacing="0"
+
<pre><nowiki>
|echo export '''JAVA_HOME'''=/usr/lib/jvm/java-1.5.0-sun-1.5.0.13/ >> ~/.bashrc  
+
echo export '''JAVA_HOME'''=/usr/lib/jvm/java-1.5.0-sun-1.5.0.13/ >> ~/.bashrc
|-
+
echo export '''PATH'''=$'''PATH''':/usr/lib/jvm/java-1.5.0-sun-1.5.0.13/bin/ >> ~/.bashrc
|echo export '''PATH'''=$'''PATH''':/usr/lib/jvm/java-1.5.0-sun-1.5.0.13/bin/ >> ~/.bashrc  
+
</nowiki></pre>
|}
+
The launcher for Freemind will appear under '''''Applications -> Office'''''.
The launcher for Freemind will appear under Applications->Office.
+
 
== Alternatives ==
 
== Alternatives ==
There are some alternatives to Freemind;
+
There are some alternatives to Freemind like '''VYM''':
I have tried VYM
+
<pre><nowiki>
{|border="1" cellspacing="0"
+
sudo apt-get install vym
| sudo apt-get install vym  
+
</nowiki></pre>
|}
+
or like '''kdissert''' (requires KDE):
kdissert (requires KDE)
+
<pre><nowiki>
{|border="1" cellspacing="0"
+
sudo apt-get install kdissert
| sudo apt-get install kdissert  
+
</nowiki></pre>
|}
+
 
But they are not compatible with Freemind maps, so if you already have Freemind maps,  
 
But they are not compatible with Freemind maps, so if you already have Freemind maps,  
 
it is better to use Freemind. I have found Freemind most productive and usable due to  
 
it is better to use Freemind. I have found Freemind most productive and usable due to  
 
its shortcuts.
 
its shortcuts.
 +
== Other links ==
 +
* [http://freemind.sourceforge.net/wiki/index.php/Main_Page Homepage of the project]
 
----
 
----
 
[[category:CategoryOffice]] [[category:CategorySoftware]]
 
[[category:CategoryOffice]] [[category:CategorySoftware]]
  
 
[[category:UbuntuHelp]]
 
[[category:UbuntuHelp]]

2009年5月12日 (二) 16:53的版本

Introduction

Freemind is a mind-mapping tool, that is already integrated with a lot of wiki stuff. !FreeMind is in the Ubuntu repositories by default, but it is version 0.7.1 from 2004. Newer versions fix bugs and introduce significant new functionality. Please also check the official FreeMind on Linux page, which contains much more details, FAQs and troubleshooting instructions.

Installing Freemind from the Repository

Tested under Ubuntu 8.04 (Hardy Heron) and 9.04 beta (Jaunty Jacalope). Currently, !FreeMind is at version 0.7.1 in the repositories. This is the recomended method of installing it:

sudo aptitude install freemind

Or, alternatively, use System -> Administration -> Synaptic or Applications -> Add/Remove. Note: A working alternative has been described by Arthur Penn .

Installing Newer Releases of Freemind

Version 0.7.1 included in the official repositories lacks significant functionality compared to the current version. There are open bugs related to this in bugs.launchpad.net (#182927) and in bugs.debian.org (#436206). New features in 0.8.x include Undo/Redo, moveable nodes, PDF export and a preferences pane. Version 0.9.x which is currently in beta testing introduces scripting support via 'Groovy', filters, attributes, a tabbed interface etc.

Install from .deb package

Tested on 8.04 (Hardy Heron), 8.10 (Intrepid Ibex), 9.04 beta (Jaunty Jacalope)

  1. Go to freemind Download page.
  2. Download the Debian package for 0.8.1.
  3. Double click on the downloaded package and use Gdebi to install it.

From Alternative Respoitories

Tested under Ubuntu 7.10 (Gutsy Gibbon) & Ubuntu 7.04 (Feisty Fawn). The following does not work with Ubuntu 8.04 (Hardy Heron).

  1. Add the repository for Freemind:
gksudo gedit /etc/apt/sources.list
  1. Add the following lines:
# freemind source
deb http://eric.lavar.de/comp/linux/debian/ experimental/
deb http://eric.lavar.de/comp/linux/debian/ ubuntu/
  1. Install from the repository:
sudo apt-get update
sudo apt-get install freemind

Or, alternatively, use System -> Administration -> Synaptic or Applications -> Add/Remove.

Starting Freemind

To start !FreeMind type the following commands in a terminal:

export '''JAVA_HOME'''=/usr/lib/jvm/java-1.5.0-sun-1.5.0.13/
export '''PATH'''=$'''PATH''':/usr/lib/jvm/java-1.5.0-sun-1.5.0.13/bin/
freemind

To start it next time from terminal without setting vars

To start it next time from terminal without setting vars, in another terminal set JAVA related variables in the profile:

echo export '''JAVA_HOME'''=/usr/lib/jvm/java-1.5.0-sun-1.5.0.13/ >> ~/.bashrc
echo export '''PATH'''=$'''PATH''':/usr/lib/jvm/java-1.5.0-sun-1.5.0.13/bin/ >> ~/.bashrc

The launcher for Freemind will appear under Applications -> Office.

Alternatives

There are some alternatives to Freemind like VYM:

sudo apt-get install vym

or like kdissert (requires KDE):

sudo apt-get install kdissert

But they are not compatible with Freemind maps, so if you already have Freemind maps, it is better to use Freemind. I have found Freemind most productive and usable due to its shortcuts.

Other links