debian 5.0 usb boot

前几天在家里用自己的MSI S270笔电来做这个linux随身碟的开机系统,因为这只笔电的BIOS开机其实是没有USB可以boot的,但是因为我在公司没有CD-ROM可以用来装这个系统,所以就只好在家先做了。

不选Ubuntu是怕2G的随身碟容量不够!

安装很简单,就跟以前装Ununtu及其他版本差不多,但是没设swap,因为怕操坏我2G的随身碟,也不安装多余的套件,就只选标准的系统!

Grub设定,也是依照在家的环境设为/dev/sdb1,这个设定绝对在公司是行不通的!

今天在公司试的时候,

就出现

root(hd1,0)

Error 17 : Can not mount selected partition的错误!

一直试着改这个hd,还改到一个错误:

partition type 0x7的错误,意思就是这个partition是NTFS的,也就是我公司这颗硬碟的Windows系统,想当然而也不行,后来试到root(hd0,0)才成功进入!

开机后试着输入几个命令,有错误但是是乱码,所以表示它的中文安装有问题,另外是用apt-get的,所以也表示在公司有proxy的关系,可能造成问题,所以接下来要先看proxy的3种设定方式:

①Place the following code into the file /etc/apt/apt.conf.d/proxy

Acquire::http::Proxy "http://proxy:8080";

②export http_proxy=http://localhost:8008/

③The Debian way of doing this (ie, if you select a proxy during the installer) is now to write that Proxy config to /etc/apt/apt.conf

至于中文的终端机命令列的部份,参考Debian Linux 于 终端机命令列显示中文 – ucimf

  1. 详细说明: Debian Package 安装说明 – ucimf
  2. $ vim /etc/apt/sources.list # 加入下述
    deb http://people.debian.org.tw/~mat/ lenny main
  3. $ apt-get update
  4. $ apt-get install fbterm fbterm-ucimf ucimf-openvanilla openvanilla-modules
  5. $ vim /boot/grub/menu.lst # 加入 vga=788 (若不行则再改 789, 791, 792…)
    kernel  /vmlinuz-2.6.11-1-686 root=/dev/hda2 ro vga=788
  6. $ reboot # 即完成.

Linux Debian:

A quick and easy way to get apt-get to work with a proxy in Debian…

Place the following code into the file /etc/apt/apt.conf.d/proxy

Acquire::http::Proxy "http://proxy:8080";

2 comments:

cdman83 said…

I’m not sure that this actually works, but you could try doing:

export http_proxy=http://localhost:8008/

before running apt-get if you want to set it only for that given session.

TRR said…

The Debian way of doing this (ie, if you select a proxy during the installer) is now to write that Proxy config to /etc/apt/apt.conf

目前就先做这两部份的测试看看!