Ⅰ 苹果电脑装linux详细过程
一,在Mac上装Linux
1,下载虚拟机环境,可以选择VirtualBox或者VmVMware
下载安装一个Linux系统,这里我们使用Ubuntu 18.04
2,安装虚拟机,完成后打开
3,选择新建,设置名称如下图
PS:
第一步,在工具栏安装:Device->Insert Guest Additions CD images
导入光盘后,重新会弹出消息框显示失败
Unable to insert the virtual optical disk /Applications/VirtualBox.app/Contents/MacOS/VBoxGuestAdditions.iso into the machine UbuntuVM.Would you like to try to force insertion of this disk?Could not mount the media/drive ‘/Applications/VirtualBox.app/Contents/MacOS/VBoxGuestAdditions.iso’ (VERR_PDM_MEDIA_LOCKED).
可以手动将光盘弹出,重新安装,安装成功
配置Ubuntu
Ubuntu的使用可以参考别出心裁的Linux命令学习法.
通过sudo apt-get update;sudo apt-get upgrade更新一下系统。
安装软件。Ubuntu中安装软件比较简单,使用sudo apt-get install XXX就可以安装XXX软件,比如我们常用的Vim,就可以用sudo apt-get install Vim来安装。
注意:Ubuntu中使用到某个没有安装的软件时,会有贴心的提示,如上图。
我们可以通过apt-cache search XXXX来查找软件库中有没有我们想要安装的软件。比如我们想看看有没有常用的调试工具cgdb,就可以使用apt-cache search cgdb来查找:
找到后就可以通过sudo apt-get install cgdb来安装了。
我们可以一次安装多个软件,比如sudo apt-get install git ddd就会安装分布式版本控制工具git和图形化调试工具ddd:
这提醒我们可以写个脚本简化软件的安装,你可以源源不断的把自己用的软件添加到这个脚本中,方便日后自己安装新系统:
三,Windows安装Linux
1,类似上面操作
2,选择下载好的Ubuntu
3,启动安装,设置语言等
4开始安装等待