Linux

来自开放百科 - 灰狐
(版本间的差异)
跳转到: 导航, 搜索
(精彩图集)
(未显示5个用户的45个中间版本)
第1行: 第1行:
[[Image:linux.gif|right]]
+
GNU/Linux
 +
 
 +
==Linux==
 +
 
 
严格的说'''Linux'''指的是 '''[[Linux Kernel]]'''。Linux Kernel 是Linux操作系统(也叫做[http://www.gnu.org/gnu/linux-and-gnu.html GNU/Linux])的重要组成部分。
 
严格的说'''Linux'''指的是 '''[[Linux Kernel]]'''。Linux Kernel 是Linux操作系统(也叫做[http://www.gnu.org/gnu/linux-and-gnu.html GNU/Linux])的重要组成部分。
  
[[Image:Linus Torvalds.jpeg|thumb|left|160px|[[Linus Torvalds]], creator of the Linux kernel.]]
+
[[Image:Linus Torvalds.jpeg|thumb|right|160px|[[Linus Torvalds]], creator of the Linux kernel.]]
  
 
它最初的作者是芬兰程序员[[Linus Torvalds]]。但是人们常说的Linux往往是指各种Linux发行版。Linux的吉祥物是企鹅[[Tux]]。
 
它最初的作者是芬兰程序员[[Linus Torvalds]]。但是人们常说的Linux往往是指各种Linux发行版。Linux的吉祥物是企鹅[[Tux]]。
第8行: 第11行:
 
''Linux 网地大全'' - http://site.huihoo.com/linux.html
 
''Linux 网地大全'' - http://site.huihoo.com/linux.html
  
==Linux动态==
+
==新闻==
*Kernel 2.6.20 已发布
+
{{SeeWikipedia}}
 +
[[Image:Linux-90x100.gif|right]]
 +
<rss>http://www.linuxfoundation.org/news-media/announcements/rss.xml|short|date|max=5</rss>
 +
<rss>http://www.linuxfoundation.org/news-media/blogs/browse/rss.xml|short|date|max=5</rss>
  
 +
==Linux Credit Card==
 +
[[Image:linux-credit-card.jpg|right|thumb|Linux Credit Card]]
 +
[http://www.linuxfoundation.org/programs/linux-credit-card Linux Credit Card]
 
==Linux 与 GNU ==
 
==Linux 与 GNU ==
 
+
[[Image:gnu-linux.png|right|thumb|GNU/Linux]]
 
[[Image:Richard_Stallman.jpeg|thumb|250px|right|[[Richard Stallman]], founder of the GNU project for a free operating system.]]
 
[[Image:Richard_Stallman.jpeg|thumb|250px|right|[[Richard Stallman]], founder of the GNU project for a free operating system.]]
  
第33行: 第42行:
  
 
[[Image:debian.png]] [[Image:ubuntu.png]] [[Image:gentoo.png]] [[Image:slackware.png]] [[Image:suse.png]] [[Image:opensuse.gif]] [[Image:fedora.png]] [[Image:mandrake.png]] [[Image:mepis.png]] [[Image:xandros.png]] [[Image:knoppix.png]] [[Image:geexbox.png]]ppp人民
 
[[Image:debian.png]] [[Image:ubuntu.png]] [[Image:gentoo.png]] [[Image:slackware.png]] [[Image:suse.png]] [[Image:opensuse.gif]] [[Image:fedora.png]] [[Image:mandrake.png]] [[Image:mepis.png]] [[Image:xandros.png]] [[Image:knoppix.png]] [[Image:geexbox.png]]ppp人民
 +
==Realtime & Embedded==
 +
*[[BusyBox]]
 +
*[[uClibc]]
 +
 +
==技巧==
 +
当前目录的大小
 +
du -sh 递归累积了目录里面所包含的所有文件所占据的总的磁盘空间的大小
 +
du -s 只列出当前目录所占用的空间
 +
参考:[http://blog.csdn.net/Guizhi/article/details/5284933 如何查看目录大小统计?]
  
==Tips==
 
 
统计文件数量
 
统计文件数量
 +
find . -name "*.pdf" | wc -l
 +
find . -name "*google*.pdf" | wc -l
 +
 
  ls -l|grep "^-"|wc -l // 当前目录
 
  ls -l|grep "^-"|wc -l // 当前目录
 
  or  
 
  or  
 
  find ./ -maxdepth 1 -type f|wc -l
 
  find ./ -maxdepth 1 -type f|wc -l
  ls -lR|grep "^-"|wc-l // 包含子目录
+
  ls -lR| grep "^-" | wc -l // 包含子目录
 
  or
 
  or
 
  find ./ -type f|wc -l
 
  find ./ -type f|wc -l
第50行: 第70行:
 
  wget -m --accept=gif http://www.google.com
 
  wget -m --accept=gif http://www.google.com
 
更多技巧: http://linux.chinaunix.net/bbs/viewthread.php?tid=916028
 
更多技巧: http://linux.chinaunix.net/bbs/viewthread.php?tid=916028
 +
 +
系统时间错了, 修改系统时间,通过Internet同步时间:
 +
ntpdate nist1.symmetricom.com
 +
the NTP socket is in use, exiting ?
 +
 +
删除包含乱码文件名的文件
 +
ls -i
 +
24002339 ?++??+0927.pdf
 +
find -inum 24002339
 +
./?++??+0927.pdf
 +
find -inum 24002339 | while read ii; do
 +
> rm -rf $ii
 +
> done
 +
 +
find
 +
find . -name huihoo
 +
find . -name \* -type f -print | xargs grep "huihoo"
 +
 
==相关==
 
==相关==
 
*[[Carrier Grade Linux]]
 
*[[Carrier Grade Linux]]
第81行: 第119行:
 
*IBM - http://www-1.ibm.com/linux/
 
*IBM - http://www-1.ibm.com/linux/
 
*HP - http://linux.hp.com
 
*HP - http://linux.hp.com
*SUN - http://www.sun.com/software/linux/  
+
*SUN - http://www.sun.com/software/linux/
 +
*[http://lwn.net/Articles/357658/ KS2009: How Google uses Linux]
  
 
==GNU/Linux文档==
 
==GNU/Linux文档==
 
[[Image:TLDP.gif|thumb|right|http://ldp.huihoo.org]]
 
[[Image:TLDP.gif|thumb|right|http://ldp.huihoo.org]]
*http://www.huihoo.com/gnu/
+
*http://docs.huihoo.com/gnu/
*http://www.huihoo.com/gnu_linux/
+
*http://gnu.huihoo.org/
*http://www.huihoo.com/linux/
+
*http://docs.huihoo.com/gnu_linux/
 
+
*http://docs.huihoo.com/linux/
 +
*http://ldp.huihoo.org/
 
==Linux展会 ==
 
==Linux展会 ==
 
*[[LinuxWorld San Francisco 2006]] - http://www.linuxworldexpo.com/live/12/events/12SFO06A
 
*[[LinuxWorld San Francisco 2006]] - http://www.linuxworldexpo.com/live/12/events/12SFO06A
  
 
==Linux资源==
 
==Linux资源==
 +
*[https://github.com/aleksandar-todorovic/awesome-linux Awesome Linux Resources] [[image:awesome.png]]
 
*[http://www.chineselinuxuniversity.net 中国Linux大学]
 
*[http://www.chineselinuxuniversity.net 中国Linux大学]
 
*[http://www.tldp.org Linux文档计划]
 
*[http://www.tldp.org Linux文档计划]
第101行: 第142行:
 
*[http://www.linuxwiki.org Linux Wiki]
 
*[http://www.linuxwiki.org Linux Wiki]
 
*[http://www.howtoforge.com/ HowtoForge is the source for Linux tutorials]
 
*[http://www.howtoforge.com/ HowtoForge is the source for Linux tutorials]
 +
*[http://blog.linux.org.tw/~jserv/ Jserv's blog]
 +
*[http://developer.zdnet.com.cn/2012/1221/2137381.shtml 2012年Linux Journal读者选择奖结果公布]
  
 
==中国的Linux发行版==
 
==中国的Linux发行版==
第137行: 第180行:
 
*[[Samba]]
 
*[[Samba]]
  
==精彩图集==
+
==图集==
 
[[Image:linux-china-communism.jpg]]
 
[[Image:linux-china-communism.jpg]]
  
[[Category:Linux distributions]]
+
{{comment}}
[[Category:Free software operating systems]]
+
 
 +
[[category:operating system]]]]
 +
[[category:GNU]]
 +
[[category:linux]]

2016年6月12日 (日) 09:46的版本

GNU/Linux

目录

Linux

严格的说Linux指的是 Linux Kernel。Linux Kernel 是Linux操作系统(也叫做GNU/Linux)的重要组成部分。

Linus Torvalds, creator of the Linux kernel.

它最初的作者是芬兰程序员Linus Torvalds。但是人们常说的Linux往往是指各种Linux发行版。Linux的吉祥物是企鹅Tux

Linux 网地大全 - http://site.huihoo.com/linux.html

新闻

Wikipedia-35x35.png 您可以在Wikipedia上了解到此条目的英文信息 Linux Thanks, Wikipedia.
Linux-90x100.gif

自http://www.linuxfoundation.org/news-media/announcements/rss.xml加载RSS失败或RSS源被墙 自http://www.linuxfoundation.org/news-media/blogs/browse/rss.xml加载RSS失败或RSS源被墙

Linux Credit Card

Linux Credit Card

Linux Credit Card

Linux 与 GNU

GNU/Linux
Richard Stallman, founder of the GNU project for a free operating system.

Linux发行版

更多发行版:http://lwn.net/Distributions/

Debian.png Ubuntu.png Gentoo.png Slackware.png Suse.png Opensuse.gif Fedora.png Mandrake.png Mepis.png Xandros.png Knoppix.png Geexbox.pngppp人民

Realtime & Embedded

技巧

当前目录的大小

du -sh 递归累积了目录里面所包含的所有文件所占据的总的磁盘空间的大小
du -s 只列出当前目录所占用的空间

参考:如何查看目录大小统计?

统计文件数量

find . -name "*.pdf" | wc -l
find . -name "*google*.pdf" | wc -l
ls -l|grep "^-"|wc -l // 当前目录
or 
find ./ -maxdepth 1 -type f|wc -l
ls -lR| grep "^-" | wc -l // 包含子目录
or
find ./ -type f|wc -l

邮件队列统计

mailq | wc -l

Wget

用wget做站点镜像  wget -r -p -np -k http://www.google.com/  

选择性下载

wget -m --reject=gif http://www.google.com/  
wget -m --accept=gif http://www.google.com

更多技巧: http://linux.chinaunix.net/bbs/viewthread.php?tid=916028

系统时间错了, 修改系统时间,通过Internet同步时间:

ntpdate nist1.symmetricom.com

the NTP socket is in use, exiting ?

删除包含乱码文件名的文件

ls -i
24002339 ?++??+0927.pdf
find -inum 24002339
./?++??+0927.pdf
find -inum 24002339 | while read ii; do
> rm -rf $ii
> done

find

find . -name huihoo
find . -name \* -type f -print | xargs grep "huihoo"

相关

体系 & Ports

Linux Intel Linux PowerPC Linux/Sparc Linux/Alpha ....

Linux桌面系统

安装指南

厂商与Linux

GNU/Linux文档

Linux展会

Linux资源

中国的Linux发行版

中国Linux社区网站资源

中国Linux社区IRC资源

  • PCHOME #Unix IRC: irc.pchome.net 6667 #unix #geekbone.
  • 中国Linux公社 IRC: irc.linuxfans.org 6667~6669 7000 #linuxfans #linuxer etc.
  • LinuxFire IRC: linuxfire.dhis.org 6667 #linuxfire
  • LinuxSir IRC: irc.linuxsir.org 6667 #linuxsir etc.
  • 北大Linux俱乐部IRC: linux.pku.edu.cn 6667 #club
  • FreshDot IRC: irc.freshdot.org 6667 #Linux

Linux书籍

相关应用

图集

Linux-china-communism.jpg

Comment-32x32.png

<discussion>characters_max=300</discussion>]]

分享您的观点
个人工具
名字空间

变换
操作
导航
工具箱