1.安装LaTeX:
sudo apt-get install texlive
安装IDE 介面:
sudo apt-get install texmaker ( or texstudio)
如果够专业的话,装上完整版,空间消耗425M/884M:
sudo apt-get install texlive-full
LaTex是非常棒的论文书写软件,详细信息和讲稿内容请浏览:http://fsa./?q=node/114
2.安装matlab: veryCD 上面有,我用的是那个2013a
1)下载Matlab.R2013a.UNIX.DVD
2)加载mount ISO文件,应该是mount -o loop 源iso文件地址 /media/cdrom0或者cdrom1什么的。(这里,有可能需要:sudo mkdir /media/cdrom0一下)
3)建立安装matlab的目录:我是装在 /usr/local/MATLAB,
命令:
cd /usr/local/
sudo mkdir MATLAB
sudo chown -R tiger MATLAB/
chmod +r MATLAB/ (小写的 -r)
cd MATLAB/
mkdir R2013a
4)安装,运行相应光盘下的install文件: sudo /media/cdrom0/install (这样做是给自己找麻烦,最终会有文件的权限问题,直接 双击install文件运行就是)
Recently, we cannot execute the files by double clicking, thus we can only , by first enter the /media/cdrom0 folder , and run ( we can actually change the setting in nautlaus to allow "double click and run")
$ sh ./install
5)运行:一路按照默认的就行了.(注意,用standalone版本)
(But following is actually no longger needed, as we use Unity instead of Gnome)
解决在gnome下界面显示不正常的问题:(which is actually the Java JRE problem. --- as an alternative, you can add JAVA_HOME into the .bashrc file.)
在matlab安装目录下的bin/matlab文件中添加:(添加在文件开始处即可)
(Note : jre location may suffer to change, use" which java" "java -version" to find it)
export MATLAB_JAVA=/usr/lib/jvm/java-6-sun/jre/ ---this is for JRE version 6
export MATLAB_JAVA=/usr/lib/jvm/java-7-openjdk-amd64/jre/ -------------- this is for JRE version 7
export MATLAB_JAVA=/usr/lib/jvm/java-8-oracle/jre/ ----------- after install the JDK java 8
6)建立启动器:(因为直接点击bin目录下的matlab的话,界面显示一下,就结束了)
命令为:/usr/local/MATLAB/R2013a/bin/matlab -desktop
matlab在linux下的安装速度和启动速度都比在Win下快得多。
更改到windows快捷键(爷们儿很少用Emacs):File-->Preferrence--> Keyboard--->Shortcuts---Active settings 设置成Windows Default Set
-------------------------------
https://wiki./index.php/Matlabstill suffers the high xorg and matlab CPU problem.