update
[linguofeng.github.com.git] / _posts / 2013-03-29-osx-install-virtualbox-and-ubuntu-server.textile
blob9953b9fa3159bc65e34946c8e82d9c6f1016b3fd
1 ---
2 layout: post
3 title: OSX下安装VirtualBox与Ubuntu Server
4 description: osx virtualbox ubuntu
5 categories: [archive]
6 tags: [osx, virtualbox, ubuntu]
7 ---
9 <section>
10     <div class="page-header">
11         <h3>一、安装</h3>
12     </div>
13 <pre class="prettyprint">
14 此处省略N个字...
15 </pre>
16 </section>
18 <section class="page-header">
19     <h3>二、安装后的配置</h3>
20     <h4><small>2.1</small> 安装VBoxLinuxAdditions</h4>
21     <h4><small>2.1</small> 把网络连接方式设置为桥接网卡</h4>
22     <p><img src="http://ww3.sinaimg.cn/large/bfadf3bejw1e36k18ssw8j.jpg" alt=""></p>
23     <h4><small>2.2</small> 修改/etc/default/locale为英文,由于默认安装的是中文,发现不好用</h4>
24 <pre>
25 LANG="en_US.UTF-8"
26 </pre>
27     <h4><small>2.2</small> 修改/etc/apt/sources.list</h4>
28 <pre>
29 ###### http://repogen.simplylinux.ch/index.php
30 ###### Ubuntu Main Repos
31 deb http://cn.archive.ubuntu.com/ubuntu/ quantal main
32 deb-src http://cn.archive.ubuntu.com/ubuntu/ quantal main
34 ###### Ubuntu Update Repos
35 deb http://cn.archive.ubuntu.com/ubuntu/ quantal-security main
36 deb http://cn.archive.ubuntu.com/ubuntu/ quantal-updates main
37 deb http://cn.archive.ubuntu.com/ubuntu/ quantal-proposed main
38 deb http://cn.archive.ubuntu.com/ubuntu/ quantal-backports main
39 deb-src http://cn.archive.ubuntu.com/ubuntu/ quantal-security main
40 deb-src http://cn.archive.ubuntu.com/ubuntu/ quantal-updates main
41 deb-src http://cn.archive.ubuntu.com/ubuntu/ quantal-proposed main
42 deb-src http://cn.archive.ubuntu.com/ubuntu/ quantal-backports main
43 </pre>
44 </section>