2666
备注:
|
4441
|
删除的内容标记成这样。 | 加入的内容标记成这样。 |
行号 1: | 行号 1: |
以下使用的Linux发布版本为debian unstable = 安装 = |
[[TableOfContents]] |
行号 4: | 行号 3: |
事先在硬盘上准备一个未分区的空间,至少5G。最好先备份硬盘上的重要数据,或者使用完全空闲的硬盘。 | * ["Linux系统安装"] * ["Linux中文支持"] * ["Linux应用程序"] * ["Linux与Windows兼容性"] * ["Linux环境编程"] * ["Linux参考资源"] |
行号 6: | 行号 10: |
下载debian安装光盘的镜像文件。完整版需要很多光盘,使用网络安装版最方便:http://www.debian.org/distrib/netinst 将镜像刻录成光盘。 | = Linux温州论坛 = Linux温州论坛(邮件列表)成立,旨在为温州的Linux爱好者提供一个交流的平台。 |
行号 8: | 行号 13: |
使用这张光盘引导系统。引导后出来安装界面,安照提示一步一步完成即可。其中在选择apt源的时候,选择cn99的http服务器比较快。 | {{{#!html <table border=0 style="background-color: #fff; padding: 5px;" cellspacing=0> <tr><td> <img src="http://groups.google.com/groups/img/3/groups_bar_zh-CN.gif" height=26 width=132 alt="Google 网上论坛"> </td></tr> <tr><td style="padding-left: 5px"> <b>订阅 linux-wz</b> </td></tr> <form action="http://groups.google.com/group/linux-wz/boxsubscribe"> <tr><td style="padding-left: 5px;"> 电子邮件: <input type=text name=email> <input type=submit name="sub" value="订阅"> </td></tr> </form> <tr><td align=right> <a href="http://groups.google.com/group/linux-wz">访问此论坛</a> </td></tr> </table> |
行号 10: | 行号 28: |
详细安装过程参考debian安装手册 http://debian.linuxsir.org/book/d-i-manual/zh_CN/i386/zh_CN.i386.html/ | |
行号 12: | 行号 29: |
= 在linux下运行windows应用程序 = 安装wine {{{ apt-get install wine }}} 对wine进行配置。配置比较麻烦。Sidenet提供了一个脚本自动进行配置:http://sidenet.ddo.jp/winetips/config.html = 中文输入法 = 小企鹅输入法(五笔、拼音等) {{{ apt-get install fcitx }}} scim(Smart Common Input Method) {{{ apt-get install scim scim-tables-zh |
|
行号 29: | 行号 31: |
安装后,输入法可能不会随着X启动而自动加载。 | |
行号 31: | 行号 32: |
= 聊天 = 使用gaim来上msn messenger, yahoo messenger, icq, google talk, aol等 |
= 安装java = |
行号 34: | 行号 38: |
apt-get install gaim }}} skype:在/etc/apt/source.list中填加 {{{ deb http://debian.bootsplash.de unstable main }}} 然后安装 {{{ apt-get install skype |
apt-get install sun-java5-jdk apt-get install sun-java5-plugin update-alternatives --config java |
行号 45: | 行号 43: |
使用lumaqq来上qq: http://lumaqq.linuxsir.org/ = 播放电影 = 在/etc/apt/source.list中填加 |
配置java字体 |
行号 50: | 行号 45: |
deb ftp://ftp.nerim.net/debian-marillat/ sid main }}} 安装mplayer和解码器 {{{ apt-get install mplayer w32codecs |
wget http://paste.ubuntu.org.cn/d323 sudo mv /etc/java-1.5.0-sun/fontconfig.properties /etc/java-1.5.0-sun/fontconfig.properties.old sudo mv d323 /etc/java-1.5.0-sun/fontconfig.properties sudo chown root:root /etc/java-1.5.0-sun/fontconfig.properties |
行号 57: | 行号 51: |
= 对数码相机的支持 = 命令行方式使用gphoto2 |
= adsl拨号 = 使用pppoeconf配置拨号的属性 |
行号 60: | 行号 54: |
apt-get install gphoto2 | pppoeconf |
行号 62: | 行号 56: |
图形界面使用gtkam | 使用pon进行拨号 |
行号 64: | 行号 58: |
apt-get install gtkam | pon dsl-provider |
行号 66: | 行号 60: |
让普通用户有权限使用数码相机。比如让用户czk能用相机 | 使用poff断开 |
行号 68: | 行号 62: |
gpasswd -a czk camera | poff dsl-provider |
行号 70: | 行号 64: |
行号 86: | 行号 79: |
hp的笔记本从待机恢复后键盘鼠标失去响应的问题,可以在/etc/acpi/suspend.d中新建文件20-i8042-input.sh:{{{ #!/bin/sh # Unbind the AT keyboard interface. if [ -f /sys/bus/platform/drivers/i8042/unbind ]; then echo -n "i8042" > /sys/bus/platform/drivers/i8042/unbind fi }}}在/etc/acpi/resume.d中新建文件80-i8042-input.sh: {{{ #!/bin/sh # Rebind the AT keyboard interface. if [ -f /sys/bus/platform/drivers/i8042/bind ]; then echo -n "i8042" > /sys/bus/platform/drivers/i8042/bind fi }}} = linux 进程管理api = * fork 创建新进程 * exec* 用一个新的程序代替当前运行的进程 * wait 等待子进程结束 = moinmoin配置 = *[http://man.chinaunix.net/linux/debian/debian_learning/ch09s12.html] = 内核编译 = 1. 下载内核:http://www.kernel.org/,解压缩 1. 配置内核选项:{{{ cp /boot/config-`uname -r` ./.config make menuconfig }}} 1. 编译内核:{{{ make-kpkg clean fakeroot make-kpkg --initrd --append-to-version=-custom kernel_image kernel_headers }}} 1. 安装内核:{{{ dpkg -i linux-image-2.6.18.1-custom_2.6.18.1-custom-10.00.Custom_i386.deb dpkg -i linux-headers-2.6.18.1-custom_2.6.18.1-custom-10.00.Custom_i386.deb }}} 1. 修改引导文件:{{{ vi /boot/grub/menu.lst title Ubuntu, kernel 2.6.18.1-custom root (hd0,0) kernel /boot/vmlinuz-2.6.18.1-custom root=/dev/sda1 ro quiet splash initrd /boot/initrd.img-2.6.18.1-custom savedefault boot title Ubuntu, kernel 2.6.18.1-custom (recovery mode) root (hd0,0) kernel /boot/vmlinuz-2.6.18.1-custom root=/dev/sda1 ro single initrd /boot/initrd.img-2.6.18.1-custom boot }}} 1. 使用新内核重启 |
|
行号 93: | 行号 141: |
* [http://debian.ustc.edu.cn/] |
|
行号 95: | 行号 145: |
* [http://www.linuxsir.org/bbs/forumdisplay.php?f=100] | |
行号 96: | 行号 147: |
* [http://www.linuxfans.org/nuke/modules.php?name=Forums] * [http://www.linuxforum.net/] * [http://www-128.ibm.com/developerworks/cn/linux/] * [http://bbs.chinaunix.net/] * [http://www.linuxedu.net/forum/] |
- ["Linux系统安装"]
- ["Linux中文支持"]
- ["Linux应用程序"]
- ["Linux与Windows兼容性"]
- ["Linux环境编程"]
- ["Linux参考资源"]
Linux温州论坛
Linux温州论坛(邮件列表)成立,旨在为温州的Linux爱好者提供一个交流的平台。
订阅 linux-wz
电子邮件:
访问此论坛
安装java
apt-get install sun-java5-jdk apt-get install sun-java5-plugin update-alternatives --config java
配置java字体
wget http://paste.ubuntu.org.cn/d323 sudo mv /etc/java-1.5.0-sun/fontconfig.properties /etc/java-1.5.0-sun/fontconfig.properties.old sudo mv d323 /etc/java-1.5.0-sun/fontconfig.properties sudo chown root:root /etc/java-1.5.0-sun/fontconfig.properties
adsl拨号
使用pppoeconf配置拨号的属性
pppoeconf
使用pon进行拨号
pon dsl-provider
使用poff断开
poff dsl-provider
休眠
查看系统支持哪些模式
cat /sys/power/state
- suspend to disk(S4):
echo disk > /sys/power/state
- suspend to ram(S3):
echo mem > /sys/power/state
hp的笔记本从待机恢复后键盘鼠标失去响应的问题,可以在/etc/acpi/suspend.d中新建文件20-i8042-input.sh:
# Unbind the AT keyboard interface. if [ -f /sys/bus/platform/drivers/i8042/unbind ]; then echo -n "i8042" > /sys/bus/platform/drivers/i8042/unbind fi
在/etc/acpi/resume.d中新建文件80-i8042-input.sh:
# Rebind the AT keyboard interface. if [ -f /sys/bus/platform/drivers/i8042/bind ]; then echo -n "i8042" > /sys/bus/platform/drivers/i8042/bind fi
linux 进程管理api
- fork 创建新进程
- exec* 用一个新的程序代替当前运行的进程
- wait 等待子进程结束
moinmoin配置
内核编译
配置内核选项:
cp /boot/config-`uname -r` ./.config make menuconfig
编译内核:
make-kpkg clean fakeroot make-kpkg --initrd --append-to-version=-custom kernel_image kernel_headers
安装内核:
dpkg -i linux-image-2.6.18.1-custom_2.6.18.1-custom-10.00.Custom_i386.deb dpkg -i linux-headers-2.6.18.1-custom_2.6.18.1-custom-10.00.Custom_i386.deb
修改引导文件:
vi /boot/grub/menu.lst title Ubuntu, kernel 2.6.18.1-custom root (hd0,0) kernel /boot/vmlinuz-2.6.18.1-custom root=/dev/sda1 ro quiet splash initrd /boot/initrd.img-2.6.18.1-custom savedefault boot title Ubuntu, kernel 2.6.18.1-custom (recovery mode) root (hd0,0) kernel /boot/vmlinuz-2.6.18.1-custom root=/dev/sda1 ro single initrd /boot/initrd.img-2.6.18.1-custom boot
- 使用新内核重启
参考资源
[http://www.debian.org/ Debian Linux]
[http://planet.debian.org.hk/ debian香港]
[http://debian.linuxsir.org/main/?q=node/15 debian 安装手册]
[http://debian.linuxsir.org/book/faq/etony/ debian FAQ]
[http://debian.linuxsir.org/book/reference/lyoo/ debian 参考手册]
[http://debian.linuxsir.org/book/securing-howto/etony/ debian 安全手册]
[http://www.ubuntu.com/ Ubuntu Linux]
[http://www.linuxsir.org/ linuxsir论坛]