版本55和82间的区别 (跳过第27版)
于2007-08-18 10:36:51修订的的版本55
大小: 4441
编辑: czk
备注:
于2020-04-14 18:10:20修订的的版本82
大小: 2033
编辑: czk
备注:
删除的内容标记成这样。 加入的内容标记成这样。
行号 1: 行号 1:
[[TableOfContents]] = Linux操作系统 =
行号 3: 行号 3:
 * ["Linux系统安装"]
 * ["Linux中文支持"]
 * ["Linux应用程序"]
 * ["Linux与Windows兼容性"]
 * ["Linux环境编程"]
 * ["Linux参考资源"]
 * [[Linux背景知识]] (基本概念、人物介绍、比较等)
 * [[ Linux安装与基本配置]] (Debian和Ubuntu)
 * [[Linux应用程序]]
 * [[Linux与Windows兼容性]]
 * [[Linux环境编程]]
 * [[Linux参考资源]]
 * [[Linux服务器管理]]
行号 10: 行号 11:
= Linux温州论坛 =
Linux温州论坛(邮件列表)成立,旨在为温州的Linux爱好者提供一个交流的平台。

{{{#!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>
 * [[Linux路由器配置]]
行号 29: 行号 14:
}}} == Linux入门 ==
行号 31: 行号 16:
 * [[http://forum.ubuntu.org.cn/about18360.html|Linux爱好者入门教程]]
行号 32: 行号 18:
 * [[http://www.ibm.com/developerworks/cn/linux/newto/|Linux新手入门]]
行号 33: 行号 20:
 * [[https://www.douban.com/group/topic/12121637/|完全用Linux工作]]
行号 34: 行号 22:
== 发行版 ==
行号 35: 行号 24:
 * Tails OS https://tails.boum.org/ 安装在U盘上的系统,最小化持久化的数据,并通过Tor匿名化流量
 * Qubes OS https://www.qubes-os.org/ 使用虚拟机来隔离应用
 * Whonix https://www.whonix.org/ 通过两个虚拟机(一个workstation,一个Tor)来匿名化流量
行号 36: 行号 28:
= 安装java =
{{{
apt-get install sun-java5-jdk
apt-get install sun-java5-plugin
update-alternatives --config java
}}}
== 参考资料 ==
行号 43: 行号 30:
配置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
}}}
 * [[http://www.pathname.com/fhs/pub/fhs-2.3.html|目录结构标准]]
 * [[https://wiki.ubuntu.org.cn/%E9%A6%96%E9%A1%B5|Ubuntu中文维基]]
 * [[https://www.youtube.com/watch?v=SJ48aawceJY|Managing Infrastructure as Code]]
 * [[https://www.debian.org/doc/debian-policy/|Debian Policy Manual]]
 * [[https://www.fedorafaq.org/|The Unofficial Fedora FAQ]]
 * [[http://www.linuxguide.it/linux_commands_line_en.htm|Linux Command Line]]
 * [[https://forum.ubuntu.com.cn/viewtopic.php?p=434187|学习ubuntu必备的电子资料集合,电子书+视频]]
 * [[http://dz.adj.idv.tw/thread-275-1-1.html|Linux指令大全]]
 * [[http://www.debianhelp.co.uk/|Debian Linux Tutorials, Tips, System Administration Resources]]
 * [[https://ss64.com/bash/index.html|An A-Z Index of the Linux command line]]
行号 51: 行号 41:
= adsl拨号 =
使用pppoeconf配置拨号的属性
{{{
pppoeconf
}}}
使用pon进行拨号
{{{
pon dsl-provider
}}}
使用poff断开
{{{
poff dsl-provider
}}}
== Linux社区 ==
行号 65: 行号 43:
= 休眠 =
查看系统支持哪些模式
{{{
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:{{{
#!/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. 使用新内核重启

= 参考资源 =
 * [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://debian.ustc.edu.cn/]

 * [http://www.ubuntu.com/ Ubuntu Linux]
   * [http://www.ubuntu.org.cn/ Ubuntu中文社区]
   * [http://www.linuxsir.org/bbs/forumdisplay.php?f=100]
 * [http://www.linuxsir.org/ linuxsir论坛]
 * [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/]
 * 提问的智慧 [[http://www.catb.org/%7Eesr/faqs/smart-questions.html|英文版]] [[https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way|中文翻译版]]
 * [[Linux服务器管理研讨活动]]
 * Linux温州论坛 https://groups.google.com/group/linux-wz

Linux (2020-04-25 09:07:00由czk编辑)

ch3n2k.com | Copyright (c) 2004-2020 czk.