uts服务器是linux系统.命令行方式,打开matlab,必须用命令行方式启动matlab, 不像windows双击打开matlab(Pycharm可以双击运行;tensorflow是一个工具包,不是双击可运行);打开matlab后,打开相应的m文件用右键open比较容易打开,双击相应的m文件不太容易打开

程序dataName = '..\Parmprint.mat';要改为dataName = '../Parmprint.mat';linux中路径使用反斜杠'/'widows中正斜杠和反斜杠都可以,编程序最好都使用反斜杠。

linux系统中输入密码,密码是显示不出来的,不要以为没输入进去.
matlab的拷贝复制,采用Ctrl+C和
Ctrl+V,设置:preference->keyboard->shortcut->Active settings选择Windows Default set即可。

pwd:
Linux中用 pwd 命令来查看”当前工作目录“的完整路径。 简单得说,每当你在终端进行操作时,你都会有一个当前工作目录。 在不太确定当前位置时,就会使用pwd来判定当前目录在文件系统内的确切位置。见:http://www.cnblogs.com/peida/archive/2012/10/24/2737730.html

ls: ls命令就是list的缩写,缺省下ls用来打印出当前目录的清单,如果ls指定其他目录,那么就会显示指定目录里的文件及文件夹清单。见: http://www.9usb.net/201005/linux-ls.html 
clear:这个命令将会刷新屏幕,本质上只是让终端显示页向后翻了一页,如果向上滚动屏幕还可以看到之前的操作信息。一般都会用这个命令。
cd .. :返回上一层目录,注意"cd"和".."之间有空格
mkdir用来创建指定的名称的目录。例如mkdir rst就是创建rst这个目录

How do we install software in Ubuntu?
Guangtao Wang said that we need to use commands to install most softwares and we can use double click as Windows to install a few softwares. For example, if you want to install PyCharm, search "Ubuntu PyCharm install" and there will be instructions to show you how to use commands to install PyCharm step by step. If you want to learn Ubuntu commands, search "Ubuntu commands".
rm: Use this command to remove or delete a file in your directory.这是命令行方式,右键Move to Trash也行。不知怎么删除文件夹, 20180410自己到谷歌搜索: linux remove folder, 第一个网页https://www.computerhope.com/issues/ch000798.htm,用如下命令即可:

When attempting to remove a directory using a command such as the rmdir command, you may receive a prompt such as "rmdir: 'dir': Directory not empty" and be unable to delete the directory.To remove a directory that contains other files or directories, use the following command.

rm -r mydir

rm -rf rst
rst is a folder (文件夹). Zhengxia said that r好像是到根目录root;f好像是不提示任何信息。所以慎用rf。上句的意思就是删除rst文件夹

rm –rf logfile model    是logfile和model两个文件夹,也可以分两句写
rm –rf logfile
rm –rf model


Guangtao Wang 20180330和我说Ubuntu打开matlab和windows完全一样,说相信他,程序完全一样,因为这个是matlab在不同的系统windows和linux,应该是一样的,就像Java一样具有平台兼容性。都用反斜杠即可。他说linux常见系统Ubuntu和Redhat,他的是Ubuntu. Ubuntu是基于Linux系统。
打开matlab, 目录在Computer/usr/local/MATLAB/R2017a/bin.可以用cd不断定位;Guangtao Wang建议的另一种方式: 通过左侧的Files -> Computer -> usr不断打开目录直到bin
./matlab 就能运行了。有的目录不能new folder,比如usr/local/MATLAB/R2017a/bin。Guangtao说安装的软件一般都在usr/local/目录下面,这是默认目录。
其他一些使用方法,见电脑"Umich\server\服务器"

其实linux应该无所谓,因为澳洲服务器也是linux.
怎么重启?shutdown里面有restart
Ubuntu能同时打开多个目录吗?
可以,将原来的窗口最小化。通过左侧的Files,右键open new window -> 即可。再单击Files,所有的窗口都会出现。
Terminal一样,可以同时打开多个Terminal,将原来的窗口最小化,再单击Terminal,所有的命令窗口都会出现。得到Guangtao确认。
guangtao电脑回收站的位置:点File,左侧有Trash

"YeLab-Servers Note", Section 3