博客日历
2024年11月 | ||||||
一 | 二 | 三 | 四 | 五 | 六 | 七 |
28 | 29 | 30 | 31 | 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 1 |
存档
2024年03月 04月 05月 2021年
01月 02月 11月 12月 2020年
02月 03月 04月 05月 06月 07月
09月 2018年
09月 2017年
01月 02月 07月 2016年
01月 04月 07月 08月 11月 12月
2015年
01月 02月 03月 05月 09月 10月
11月 2014年
01月 02月 03月 04月 05月 06月
07月 08月 09月 10月 11月 12月
2013年
01月 02月 03月 04月 05月 06月
07月 08月 09月 10月 11月 12月
2012年
01月 02月 03月 04月 05月 06月
07月 08月 09月 10月 11月 12月
2011年
01月 02月 03月 04月 05月 06月
07月 08月 09月 10月 11月 12月
2010年
01月 02月 03月 04月 05月 06月
07月 08月 09月 10月 11月 12月
2009年
03月 04月 05月 06月 07月 08月
09月 10月 11月 12月
体验Linux.3 用NTLDR引导Linux
#1.启动到Linux下提取Linux引导扇区
dd if=/dev/hda of=~/Desktop/debian.mbr bs=512 count=1
#hda是grub所在位置
#debian.mbr是生成的文件
#2.复制debian.mbr到C:\
#修改boot.ini
C:\debian.mbr=Debian GNU/Linux, kernel 2.6.26-2-686
#备注:
#dd命令:http://baike.baidu.com/view/21965.htm?fr=ala0_1_1#7
#修改boot.ini时要注意行尾结束符必须是\r\n
分类:Linux 查看次数:9199 发布时间:2010/5/30 11:37:34
体验Linux.2 Debian基本设置
修改软件安装源:
修改/etc/apt/sources.list,加入:
deb http://ftp.debian.org/debian/ lenny main contrib non-free
deb-src http://ftp.debian.org/debian/ lenny main contrib non-free
deb http://ftp.tw.debian.org/debian/ lenny main contrib non-free
deb-src http://ftp.tw.debian.org/debian lenny main contrib non-free
deb http://mirrors.163.com/debian/ lenny main contrib non-free
deb-src http://mirrors.163.com/debian lenny main contrib non-free
deb http://mirrors.geekbone.org/debian/ lenny main contrib non-free
deb-src http://mirrors.geekbone.org/debian/ lenny main contrib non-free
deb http://ftp.us.debian.org/debian/ lenny main contrib non-free
deb-src http://ftp.us.debian.org/debian/ lenny main contrib non-free
deb http://mirror.dlut.edu.cn/debian/ lenny main contrib non-free
deb-src http://mirror.dlut.edu.cn/debian/ lenny main contrib non-free
deb http://debian.csie.ntu.edu.tw/debian/ lenny main contrib non-free
deb-src http://debian.csie.ntu.edu.tw/debian/ lenny main contrib non-free
保存后执行apt-get update
备注(2011年12月3日)国内的Debian6.0.3源:
deb http://mirrors.163.com/debian squeeze contrib main non-free
deb-src http://mirrors.163.com/debian squeeze contrib main non-free
deb http://mirrors.163.com/debian stable contrib main non-free
deb-src http://mirrors.163.com/debian stable contrib main non-free
备注 2015年04月03日:
deb http://ftp.hk.debian.org/debian squeeze main contrib non-free
deb-src http://ftp.hk.debian.org/debian squeeze main contrib non-free
-----------------------
apt-get的代理服务器设置
Acquire::http::Proxy "http://192.168.105.xxx:8080";
-----------------------
拼音输入法:
apt-get install scim-pinyin
-----------------------
识别NTFS:
1.安装驱动和工具
apt-get install fuse-utils
apt-get install ntfs-3g
2.用如下命令检查有几个NTFS分区
fdisk -l | grep NTFS
/dev/sda1 * 1 1913 15366141 7 HPFS/NTFS
/dev/sda5 1914 6375 35840983+ 7 HPFS/NTFS
/dev/sda6 6376 8925 20482843+ 7 HPFS/NTFS
/dev/sda7 8926 18040 73216206 7 HPFS/NTFS
/dev/hda5 2 7730 62083161 7 HPFS/NTFS
/dev/hda6 7731 9729 16056936 7 HPFS/NTFS
3.修改/etc/fstab
/dev/sda1 /media/diskc ntfs-3g silent,umask=0,locale=en_US.utf8 0 0
/dev/sda5 /media/diskd ntfs-3g silent,umask=0,locale=en_US.utf8 0 0
/dev/sda6 /media/diske ntfs-3g silent,umask=0,locale=en_US.utf8 0 0
/dev/sda7 /media/diskf ntfs-3g silent,umask=0,locale=en_US.utf8 0 0
/dev/hda5 /media/diskg ntfs-3g silent,umask=0,locale=en_US.utf8 0 0
/dev/hda6 /media/diskh ntfs-3g silent,umask=0,locale=en_US.utf8 0 0
4.建立挂载目录
mkdir /media/diskc
mkdir /media/diskd
mkdir /media/diske
mkdir /media/diskf
mkdir /media/diskg
mkdir /media/diskh
5.设置开机自动挂载
修改/etc/modules,在末尾加上fuse
------------------------
安装QQ:
dpkg -i '/root/Desktop/下载/linuxqq_v1.0.2-beta1_i386.deb'
------------------------
安装C++开发环境:
apt-get install build-essential
apt-get install gdb
------------------------
安装系统配置工具:
apt-get install sysv-rc-conf
可以用过此程序来设置debian,使其开机时启动到字符界面下。
------------------------
字体问题:
要使用Windows下的字体,只要设置:/etc/fonts/fonts.conf
<!-- Font directory list -->
<!-- 我的C盘挂载在/media/diskc/下 -->
<dir>/media/diskc/WINDOWS/Fonts</dir>
<dir>/usr/share/fonts</dir>
<dir>/usr/X11R6/lib/X11/fonts</dir>
<dir>/usr/local/share/fonts</dir>
<dir>~/.fonts</dir>
------------------------
显卡驱动:
我的显卡是9500GT,可在nVidia官方网站下载最新的linux驱动。
1.安装显卡驱动需要的一些内核源文件
apt-get install build-essential linux-headers-$(uname -r)
2.结束XServer,开始安装
按下Ctrl+Alt+F1,执行/etc/init.d/gdm stop
3.执行./NVIDIA-Linux-x86-195.36.24-pkg1.run,若提示gcc版本不正确,忽略即可。
4.执行startx即可再次进入图形界面。
------------------------
在右键添加:在这里打开终端
apt-get install nautilus-open-terminal
关于sudo:
打开/etc/sudoers,将自己的用户名添加到User privilege specification中。
注意打开此文件之前要先将文件权限设置为可写,用户名添加之后再改为只读。
------------------------
Debian应该比Ubuntu稳定。
分类:Linux 查看次数:7029 发布时间:2010/5/29 11:07:55