在ubuntu16.04上创建matlab的快捷方式(实现方法)
程序员文章站
2023-11-22 23:51:10
打开终端terminal
1 下载图标
sudo wget http://upload.wikimedia.org/wikipedia/commons/2/21/mat...
打开终端terminal
1 下载图标
sudo wget http://upload.wikimedia.org/wikipedia/commons/2/21/matlab_logo.png -o /usr/share/icons/matlab.png
2 创建空的快捷方式
sudo touch /usr/share/applications/matlab.desktop
3 编辑快捷方式
sudo gedit /usr/share/applications/matlab.desktop
4 仿照下述格式编辑然后保存
#!/usr/bin/env xdg-open [desktop entry] type=application terminal=false exec=/home/matlab_r2017a/bin/matlab -desktop //matlab路径 使用时删掉注释 name=matlab icon=/usr/share/icons/matlab.png //matlab图标路径 comment=scientific computing environment
5 启动matlab
可以在下列文件夹中看到快捷方式,复制到桌面双击即可启动
/usr/share/applications/matlab.desktop
6 如果遇到提示no writting permission on directory: home/xxx/.matlab
删除掉文件夹后再次启动就ok了。
sudo rm -rf /home/liangnn/.matlab
以上这篇在ubuntu16.04上创建matlab的快捷方式(实现方法)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。