Make Linux Resources
Resources on the site
• Interactive map of GNU/Linux OS and FOSS
• "GNU/Linux is my home" - map of GNU/Linux system
• Interactive map of Linux kernel
• Linux inside
• Linux Technology Reference (single page view)
• Linux kernel diagram
• Linux Device Drivers, 3rd Edition
• Advanced Linux Programming
• Managing Projects with GNU make
• 1000 Hacker Tutorials 2008
• Introduction to Linux
• Bash Guide for Beginners
• Advanced Bash-Scripting Guide
• GNU/Linux Command-Line Tools Summary
• Linux Filesystem Hierarchy
• The Linux Kernel Module Programming Guide
• The Linux System Administrator's Guide
• Linux Network Administrators Guide
• Autobook: GNU Autoconf, Automake, and Libtool src
Linux related products
• Linux kernel poster
• Linux Quick Guide
• Unix like Operating Systems Map
• Unix Quick Guide
Other products
• Computer Operating System Map
• Wi-Fi Quick Guide
• Wireless Communication Technology Map
• VOIP Quick Guide
• Network Protocol Map
• TCP/IP Quick Guide
• Network Security Map
• Network Protocols Handbook
• Network Management Architecture and Technology Map
• Network Dictionary
• IPv6 Deployment Guide
• Ethernet Quick Guide
• 3G Wireless Tech Quick Guide
相关文档:
alarm
如果不要求很精确的话,用 alarm() 和 signal() 就够了
unsigned int alarm(unsigned int seconds)
示例:
&nbs ......
1。下载2.6.9的内核
2。在/usr/src目录下解压内核
tar zvxf /下载的路径/linux-2.6.0.tar.gz
3。配置
# make mrproper
# make menuconfig
make mrproper 是清理代码树的动作,保证源代码是干净的
4.编译
make
5。安装
make modules_install
make install
看来2。6的编译确实比以 ......
1.下载jdk-6u2-linux-i586-rpm.bin
2. 在当前目录输入
sh jdk-6u2-linux-i586-rpm.bin
3.看到 安装程序在询问您是否尊守许可协议页面 ,回车,空格都可以,看完协议.
出现一行字:Do you aggree to the above license terms? [yes or no]
安装程序在问您是否愿意遵守刚才看过的许可协议。当然要同意了,输入"y" 或 " ......
linux下进行硬盘分区,进行格式化处理,并进行挂载使用
实验环境:
HPZ400工作站 : 500G硬盘
由于本机是预装的SUSE Linux Enterprise Desktop 11 (x86_64)
出厂时,仅在硬盘上分了一个38G的ext3文件系统,和一个2G的swap分区,所以对于其它的空闲分区,要实现使用,就要进行格
处理。
可用的分区工具有:fdis ......
LINUX常用命令(基础)
1. man 对你熟悉或不熟悉的命令提供帮助解释
eg:man ls 就可以查看ls相关的用法
注:按q键或者ctrl+c退出,在linux下可以使用ctrl+c终止当前程序运行。
2. ls 查看目录或者文件的属*,列举出任一目录下面的文件
eg: ls /usr/man
ls -l
a.d表示目录(directory),如果是一个"-"表示是文件,如果 ......