codecamp

启动Ubuntu

没过多久,你的电脑成功安装上了Ubuntu,那么恭喜你!你有了一个新的问题需要面对!

没错,那就是每次开机需要选择系统!

由于grub在mbr上,于是你只好接受使用紫色的引导,而且首选项是Ubuntu!

其实默认启动顺序是可以更改的,这个等我们学会Ubuntu的基本使用后再说。

启动之后,一改之前的样子,你可能发现自己的电脑没有无线局域网了...【尴尬】

附上一张作者的Ubuntu桌面(左边的启动器隐藏了)

这时,你就可以到处玩玩了,比如点点左上角的dash,或是按按键。

向硬盘中安装Ubuntu
Ubuntu 基本操作
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }