返回   cpper编程论坛 > 灌水/杂烩/BT
注册账号 论坛帮助 会员列表 日历事件 搜索 今日新帖 标记版面已读

灌水/杂烩/BT 所有非技术的东西都往这里来

回复
 
LinkBack 主题工具 显示模式
  #1 (permalink)  
旧 2006-12-03
liuxinyu 的头像
高级会员
 
注册日期: 2006-02-09
帖子: 311
文章: 49
liuxinyu 正向着好的方向发展
默认 Ubuntu fasten my old computer

我的机器可能不算是最老的,2003年初买的sharp的laptop:
AMD Athlon 4
128M memory
30G HD
Japanese Keyboard.
DVD
跑XP+SP2非常慢,从按下power到启动完毕大约需要15分钟。为此上周经过一段准备,尝试了一下Ubunto 6.10 Edgy。结果是让我的老机器快了起来。启动基本不到1分钟,一般程序打开基本不用等待。

当然这样的差异已经不是第一次了。96年我在一台P66Mhz的机器上安装Slackware时就感觉到Windows 95和Linux的差距。

下面略记一下安装中的tips,一来以免自己忘掉,二来可以共享给其他拥有老旧机器又没有钱更新的人。

1、准备
1。1备份
机器上30G的HD分了2个分区,C装了Windows XP,D是自己的一些程序和文件。全部是NTFS,为了把损失掉数据的风险减小,第一部是备份。把重要的数据,邮件,照片,文档都备份到活动硬盘或者光盘上。

1。2准备Ubuntu的安装CD
为什么选择Ubuntu而不是其他Linux delivery,这里不打算赘述。有几个主要merits:

小,只有1张CD,而Fedora要多张,比较经济
源于Debian,比较稳定
口碑好,尤其是用于挽救破机器的口碑好。
其他,诸如简单易用等等...

CD映像可以从 www.ubuntu.com 下载,近700M,所以要准备好700M的CDR。建议一并下载ImgBurn和md5 hash的工具,这些工具在Ubuntu的下载网站上都有连接。
下载后,先校验一下md5 hash,确认下载没问题后,用ImgBurn刻录iso到CDR

3、Defrag Windows的HD
推荐多defrag几次,例如我这样使用国3年多没有重新装过系统的机器,HD支离破碎,将来shrink分区时,失败而造成损失的风险很大。

4、Ghost[Optional]
如果你有条件这么做。另外,不需要准备Norton Partion Magic之类的工具,Ubuntu的LiveCD内自带了GParted.

5、安装Ubuntu
修改BIOS让CD首先启动,放入Ubuntu的CD,LiveCD会启动一个Ubuntu的Demo系统,这是先不要急于安装,因为安装程序自带的GParted不大正常,在我第一次尝试安装是该程序挂起了。
我推荐的步骤为:

5。1运行系统菜单中的gnome partioner工具,将Windows分局缩小,给Ubuntu留下5G的空间就足够了。

5。2运行安装程序,让Ubuntu利用所有的free空间安装。当然之前输入一些个人信息,这里不在赘述,另外我选择了English作为default language,选择了日文的键盘,选择了Shanghai为时区

5。3等待安装完毕,Unbuntu最后会提示取出CD并重启,

5。4检查Windows XP是否还正常,Windows XP可能会Crash,重启后会重新查找某些硬件并重新安装驱动程序,重启若干次Windows XP后恢复正常。

6。安装ADSL拨号上网的程序
由于我没有router,只有CNC给我的ADSL modem,所以不得不安装一个PPPoE的Client,可以下载rp-pppoe这个工具,google即可查到,为此回到Windows XP下载到这个包,复制到U盘,然后回到Ubuntu
Ubuntu在检测到U盘后,会自动弹出相关窗口工具,和Windows几乎一样,将此包复制到HD,然后利用下面的安装方法:
1. Read How to install Basic Compilers (build-essential)? [sudo apt-get install build-essential ]build-essention在安装光盘上,在没有网之前,要从CD安装它。
2.sudo tar zxvf rp-pppoe-3.5.tar.gz -C /opt/
sudo chown -R root:root /opt/rp-pppoe-3.5/
gksudo gedit /usr/share/applications/RP-PPPoE.desktop

3. Insert the following lines into the new file
[Desktop Entry]
Name=RP-PPPoE
Comment=RP-PPPoE
Exec=gksudo tkpppoe
Icon=
Terminal=false
Type=Application
Categories=Application;Network;

4. Save the edited file ( sample)
以root身份到opt/rp-pppoe-3.5下,运行./go
输入CNC给你的帐户和密码。然后运行pppoe-start,到此就可以使用Internet了,此后可以收起安装CD,利用Internet做所有的剩余工作。

rp-pppeo还提供一个gui wrapper,但是它是tk/tcl的,为此需要安装tk/tcl的相关包,例如
apt-get install tk8.3-dev
apt-get install tcl8.3-dev
此后使用Applications -> Internet -> RP-PPPoE
就会出现一个窗口,在窗口中按start就会拨号联网。

7、安装Skype
我和我老婆多年两地分居,所以每天靠Skype来过我们的Internet couple life,为此到Skype网站下载debian包,安装前提示需要Qt为此
sudo apt-cache seartch libqt
然后安装
sudo apt-get install libqt3-mt-dev
然后利用Package installer安装skype的包。

8、安装中,日文支持
在System -> Administration -> Language Support
选中英文、中文和日文,系统会自动下载并安装包,但是我缺省的界面是English,所以我需要在English下能够使用中文和日文,而不需要在login时改变local为中文或者日文。虽然刚才安装了输入法scim,但是还需要补一个scim-qtimm
为此
sudo apt-get install scim-qtimm
然后
im-swtich -s scim
重启系统,此时在任何情况下ctrl + space就可以激活多语言输入法,可以同时输入中日文。

本文就是我在Ubuntu下用scim输入的。
__________________
==================================
http://liuxinyu95.googlepages.com
liuxinyu95@gmail.com
==================================
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
回复时引用此帖
  #2 (permalink)  
旧 2006-12-03
高级会员
 
注册日期: 2002-09-19
帖子: 840
文章: 7
tomato 正向着好的方向发展
默认

赞,我用的也是ubuntu
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
回复时引用此帖
  #3 (permalink)  
旧 2006-12-03
高级会员
 
注册日期: 2006-02-11
帖子: 139
zero 正向着好的方向发展
默认

me too~
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
回复时引用此帖
  #4 (permalink)  
旧 2006-12-03
普通会员
 
注册日期: 2006-03-28
帖子: 61
colinzhengj 正向着好的方向发展
默认

我用的是FreeBSD,不过LInux里最喜欢还是debian
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
回复时引用此帖
  #5 (permalink)  
旧 2006-12-03
初级会员
 
注册日期: 2006-08-28
帖子: 1
allenjiang 正向着好的方向发展
默认

我用的suse
对于我这样的linux新手,也很不错
但感觉对机器要求比较高
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
回复时引用此帖
  #6 (permalink)  
旧 2006-12-04
liuxinyu 的头像
高级会员
 
注册日期: 2006-02-09
帖子: 311
文章: 49
liuxinyu 正向着好的方向发展
默认

忘了一点,Skype和中日文输入法有点冲突,所以需要做些修改:
现创建一个脚本,例如叫runskype
gedit /usr/local/bin/runskype

增加如下内容
#!/bin/sh
XMODIFIERS=@im=none QT_IM_MODULE=xim skype

然后,chmod a+x /usr/local/bin/runskype

最后修改/usr/share/applications/skype.desktop
[Desktop Entry]
Name=Skype
Comment=Skype
Exec=/usr/local/bin/runskype
Icon=skype.png
Terminal=0
Type=Application
Encoding=UTF-8
Categories=Network;Application;

即可
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
回复时引用此帖
  #7 (permalink)  
旧 2006-12-06
初级会员
 
注册日期: 2006-02-12
帖子: 15
thebest 正向着好的方向发展
默认

有跟ms office兼容比较好的office工具吗?我们用一个什么ISA Client的工具来设置ISA Server来上网,不知道Ubuntu下有没有的。
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
回复时引用此帖
  #8 (permalink)  
旧 2006-12-06
polyrandom 的头像
超级版主
 
注册日期: 2002-09-03
帖子: 3,138
文章: 20
polyrandom 正向着好的方向发展
默认

引用:
作者: thebest
有跟ms office兼容比较好的office工具吗?我们用一个什么ISA Client的工具来设置ISA Server来上网,不知道Ubuntu下有没有的。
到portableapps.com里面找找看,我现在firefox之类的东西,都是随身带的。
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
回复时引用此帖
  #9 (permalink)  
旧 2006-12-07
Meta 的头像
版主
 
注册日期: 2004-12-02
帖子: 226
文章: 5
Meta 正向着好的方向发展
默认

我在我的台式PC上装了Ubuntu Linux, 现在需要解决上网的问题. 我用的是Linksys的WUSB11的Wireless Adapter, 现在无法上网, 怎么解决这个问题? 我查到有用ndiswrapper来使用Windows驱动的, 但是我这个WUSB11没搞定....
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
回复时引用此帖
  #10 (permalink)  
旧 2006-12-11
liuxinyu 的头像
高级会员
 
注册日期: 2006-02-09
帖子: 311
文章: 49
liuxinyu 正向着好的方向发展
默认

引用:
作者: Meta
我在我的台式PC上装了Ubuntu Linux, 现在需要解决上网的问题. 我用的是Linksys的WUSB11的Wireless Adapter, 现在无法上网, 怎么解决这个问题? 我查到有用ndiswrapper来使用Windows驱动的, 但是我这个WUSB11没搞定....
我看到Linksys网站上有Linux的驱动,你看看你能否用:
http://www.linksys.com/servlet/Satel...VisitorWrapper
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
回复时引用此帖
  #11 (permalink)  
旧 2007-04-29
高级会员
 
注册日期: 2002-09-10
帖子: 269
文章: 1
panda 正向着好的方向发展
发送 MSN 消息给 panda
默认 回复: Ubuntu fasten my old computer

我下了个VMWare Player,开始装Ubuntu玩玩。突然发现我基本脱离盗版了,要么正版,要么免费。活活!

mark一下先。
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
回复时引用此帖
  #12 (permalink)  
旧 2007-04-29
polyrandom 的头像
超级版主
 
注册日期: 2002-09-03
帖子: 3,138
文章: 20
polyrandom 正向着好的方向发展
默认 回复: Ubuntu fasten my old computer

引用:
作者: panda 查看帖子
我下了个VMWare Player,开始装Ubuntu玩玩。突然发现我基本脱离盗版了,要么正版,要么免费。活活!

mark一下先。
我们公司不让用盗版的。我很久以前也在公司实现了正版化。
我所有的盗版软件(PS/UE/VMWare/...)都装在U盘上,每次进公司第一件事情就是插U盘。
VM Player我也装了,但是我用VMWare创建VM和修改参数,这样对我来说,就是99%的时间都用正版了。
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
回复时引用此帖
  #13 (permalink)  
旧 2007-04-29
普通会员
 
注册日期: 2006-03-06
帖子: 71
panda_lin 正向着好的方向发展
发送 MSN 消息给 panda_lin
默认 回复: Ubuntu fasten my old computer

EasyVMX!: Virtual Machine Creator可以快速创建脚本,真是配合VMWare Player的好东西啊。
昨天晚上战斗2小时,搞定了耶!

今天一个亲戚要买电脑,我还对他进行了正版教育,美国政府应该奖励我为中美贸易正常化作出的贡献。
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
回复时引用此帖
  #14 (permalink)  
旧 2007-04-29
polyrandom 的头像
超级版主
 
注册日期: 2002-09-03
帖子: 3,138
文章: 20
polyrandom 正向着好的方向发展
默认 回复: Ubuntu fasten my old computer

引用:
作者: panda_lin 查看帖子
EasyVMX!: Virtual Machine Creator可以快速创建脚本,真是配合VMWare Player的好东西啊。
昨天晚上战斗2小时,搞定了耶!

今天一个亲戚要买电脑,我还对他进行了正版教育,美国政府应该奖励我为中美贸易正常化作出的贡献。
问题是,难道你家里的电脑都是正版了吗?很多东西,像word之类的,虽然有替代,但是总是不爽。好在VS现在有免费版本了。虽说大多数软件都有free的替代,但是很多替代并不好。至少我至今不能舍PS而取Gymp。
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
回复时引用此帖
  #15 (permalink)  
旧 2007-04-29
普通会员
 
注册日期: 2006-03-06
帖子: 71
panda_lin 正向着好的方向发展
发送 MSN 消息给 panda_lin
默认 回复: Ubuntu fasten my old computer

当然是正版,在MS这点福利还是有的。正版vista,office,visual studio。
至于游戏,除了wow,其他都不玩了。
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
回复时引用此帖
回复

书签

主题工具
显示模式

发帖规则
不可以发表新主题
不可以发表回复
不可以上传附件
不可以编辑自己的帖子

启用 BB 代码
论坛启用 表情符号
论坛启用 [IMG] 代码
论坛禁用 HTML 代码
Trackbacks are 启用
Pingbacks are 启用
Refbacks are 启用


相似的主题
主题 主题作者 版面 回复 最后发表
[a joke] Engineer and Computer Scientist carol 技术杂烩 1 2005-04-11 11:45 AM
某人对《Computer Networks》一书的书评(原贴名:好BT的家伙~~~ cat 技术杂烩 6 2004-10-19 06:01 PM
personal computer clip 技术杂烩 1 2004-10-03 04:41 PM
[普通]Mihai Budiu's Interview with Brian Kernighan polyrandom 技术杂烩 14 2004-06-26 09:52 PM
Larry的文章,虽然我不同意他的有些观点。但是值得一读。 polyrandom 技术杂烩 0 2002-10-28 02:26 PM


所有时间均为格林尼治时间 +9。现在的时间是 08:10 AM


Powered by vBulletin® 版本 3.7.0
版权所有 ©2000 - 2009,Jelsoft Enterprises Ltd.
(C) Copy Right All Right Reserved 2001 - 2007

Search Engine Friendly URLs by vBSEO 3.1.0