欢迎大家赞助一杯啤酒🍺 我们准备了下酒菜:Formal mathematics/Isabelle/ML, Formal verification/Coq/ACL2, C++/F#/Lisp
Linux
来自开放百科 - 灰狐
(版本间的差异)
小 |
|||
(未显示8个用户的64个中间版本) | |||
第1行: | 第1行: | ||
− | + | GNU/Linux | |
− | + | ||
− | [[ | + | {{SeeWikipedia}} |
+ | [[文件:LAMP-stack.png|right|LAMP]] | ||
+ | [[Image:Linux-90x100.gif|right]] | ||
− | + | ==Linux== | |
+ | 严格的说'''Linux'''指的是 '''[[Linux Kernel]]'''。Linux Kernel 是Linux操作系统(也叫做[http://www.gnu.org/gnu/linux-and-gnu.html GNU/Linux])的重要组成部分。 | ||
− | + | [[Image:Linus Torvalds.jpeg|thumb|right|160px|[[Linus Torvalds]], creator of the Linux kernel.]] | |
− | + | 它最初的作者是芬兰程序员[[Linus Torvalds]]。但是人们常说的Linux往往是指各种Linux发行版。Linux的吉祥物是企鹅[[Tux]]。 | |
+ | ''Linux 网地大全'' - http://site.huihoo.com/linux.html | ||
+ | |||
+ | ==新闻== | ||
+ | <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> | ||
+ | |||
+ | ==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 == | ||
+ | [[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.]] | ||
− | === | + | ===发行版=== |
*[[Debian|Debian GNU/Linux]] ([http://www.debian.org 官方网站]) | *[[Debian|Debian GNU/Linux]] ([http://www.debian.org 官方网站]) | ||
*[[Ubuntu]] ([http://www.ubuntu.com/ 官方网站]) | *[[Ubuntu]] ([http://www.ubuntu.com/ 官方网站]) | ||
*[[RedHat|Red Hat Linux]] ([http://www.redhat.com 官方网站]) | *[[RedHat|Red Hat Linux]] ([http://www.redhat.com 官方网站]) | ||
+ | *[[CentOS]] | ||
*[[Fedora Core]] ([http://fedora.redhat.com 官方网站]) | *[[Fedora Core]] ([http://fedora.redhat.com 官方网站]) | ||
− | *[[SUSE]] ([http://www.novell.com/linux/suse/ 官方网站]) | + | *[[SUSE Linux]] ([http://www.novell.com/linux/suse/ 官方网站]) |
*[[openSUSE]] ([http://www.opensuse.org/ 官方网站]) | *[[openSUSE]] ([http://www.opensuse.org/ 官方网站]) | ||
− | *[[Mandrake]] ([http://www.mandrakelinux.com 官方网站]) | + | *[[Mandrake Linux]] ([http://www.mandrakelinux.com 官方网站]) |
− | *[[ | + | *[[Slackware Linux]] ([http://www.slackware.org 官方网站]) |
*[[Gentoo Linux]] ([http://www.gentoo.org 官方网站]) | *[[Gentoo Linux]] ([http://www.gentoo.org 官方网站]) | ||
*[[Knoppix]] ([http://www.knoppix.net 官方网站]) | *[[Knoppix]] ([http://www.knoppix.net 官方网站]) | ||
第26行: | 第40行: | ||
*[[Arch Linux]] | *[[Arch Linux]] | ||
− | [[Image:debian.png]] [[Image:ubuntu.png]] [[Image:gentoo.png]] [[Image:slackware.png]] [[Image:suse.png]] [[Image:fedora.png]] [[Image:mandrake.png]] [[Image:mepis.png]] [[Image:xandros.png]] [[Image:knoppix.png]] [[Image:geexbox.png]] | + | 更多发行版:http://lwn.net/Distributions/ |
+ | |||
+ | [[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 如何查看目录大小统计?] | ||
+ | |||
+ | 统计文件数量 | ||
+ | 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" | ||
==相关== | ==相关== | ||
第35行: | 第96行: | ||
*[[Enterprise Linux]] | *[[Enterprise Linux]] | ||
− | ==体系 | + | ==体系== |
[[Image:linux-logo.png|Linux Intel]] [[Image:linux-ppc-logo.png|Linux PowerPC]] [[Image:linux-sparc-logo.png|Linux/Sparc]] [[Image:linux-alpha-logo.png|Linux/Alpha]] .... | [[Image:linux-logo.png|Linux Intel]] [[Image:linux-ppc-logo.png|Linux PowerPC]] [[Image:linux-sparc-logo.png|Linux/Sparc]] [[Image:linux-alpha-logo.png|Linux/Alpha]] .... | ||
第46行: | 第107行: | ||
*http://www.xbox-linux.org | *http://www.xbox-linux.org | ||
− | == | + | ==桌面系统== |
* [[Xfce]] | * [[Xfce]] | ||
* [[GNOME]] | * [[GNOME]] | ||
第54行: | 第115行: | ||
* [[winxp,solaris10,linux,freebsd install in a system]] | * [[winxp,solaris10,linux,freebsd install in a system]] | ||
− | == | + | ==厂商== |
*Dell - http://linux.dell.com/ | *Dell - http://linux.dell.com/ | ||
*Oracle - http://oss.oracle.com/ | *Oracle - http://oss.oracle.com/ | ||
*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] | ||
− | == | + | ==文档== |
− | *http:// | + | [[Image:TLDP.gif|thumb|right|http://ldp.huihoo.org]] |
− | *http:// | + | *http://docs.huihoo.com/gnu/ |
− | *http:// | + | *http://gnu.huihoo.org/ |
+ | *http://docs.huihoo.com/gnu_linux/ | ||
+ | *http://docs.huihoo.com/linux/ | ||
+ | *http://ldp.huihoo.org/ | ||
− | == | + | ==展会 == |
*[[LinuxWorld San Francisco 2006]] - http://www.linuxworldexpo.com/live/12/events/12SFO06A | *[[LinuxWorld San Francisco 2006]] - http://www.linuxworldexpo.com/live/12/events/12SFO06A | ||
− | == | + | ==资源== |
+ | *[https://github.com/aleksandar-todorovic/awesome-linux Awesome Linux Resources] [[image:awesome.png]] | ||
+ | *[http://www.chineselinuxuniversity.net 中国Linux大学] | ||
*[http://www.tldp.org Linux文档计划] | *[http://www.tldp.org Linux文档计划] | ||
*[http://www.kernel.org Linux内核官方网站] | *[http://www.kernel.org Linux内核官方网站] | ||
第76行: | 第143行: | ||
*[http://www.linux.com Linux.com] | *[http://www.linux.com Linux.com] | ||
*[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读者选择奖结果公布] | ||
− | == | + | ==中国发行版== |
*[[Redflag|红旗(Redflag) Linux]] ([http://www.redflag-linux.com 官方网站]) | *[[Redflag|红旗(Redflag) Linux]] ([http://www.redflag-linux.com 官方网站]) | ||
*[[Xteam|冲浪(Xteam) Linux]] ([http://www.xteamlinux.com.cn/ 官方网站]) | *[[Xteam|冲浪(Xteam) Linux]] ([http://www.xteamlinux.com.cn/ 官方网站]) | ||
第84行: | 第153行: | ||
*[[Magic|Magic Linux]] ([http://www.magiclinux.org/ 官方网站]) | *[[Magic|Magic Linux]] ([http://www.magiclinux.org/ 官方网站]) | ||
− | == | + | ==中国Linux社区== |
*[http://www.linuxdby.com Linux大本营] | *[http://www.linuxdby.com Linux大本营] | ||
*[http://www.linuxforum.net 中国Linux论坛] | *[http://www.linuxforum.net 中国Linux论坛] | ||
第99行: | 第168行: | ||
*[http://www.chinaunix.net ChinaUnix.net] | *[http://www.chinaunix.net ChinaUnix.net] | ||
− | == | + | ==中国IRC资源== |
*PCHOME #Unix IRC: irc.pchome.net 6667 #unix #geekbone. | *PCHOME #Unix IRC: irc.pchome.net 6667 #unix #geekbone. | ||
*中国Linux公社 IRC: irc.linuxfans.org 6667~6669 7000 #linuxfans #linuxer etc. | *中国Linux公社 IRC: irc.linuxfans.org 6667~6669 7000 #linuxfans #linuxer etc. | ||
第109行: | 第178行: | ||
==Linux书籍== | ==Linux书籍== | ||
− | == | + | ==应用== |
*[[Rsync]] | *[[Rsync]] | ||
+ | *[[Samba]] | ||
− | == | + | ==图集== |
− | + | <gallery> | |
+ | Image:linux-bcc-tracing-tools-2016.png | ||
+ | </gallery> | ||
− | [[ | + | [[category:operating system]] |
− | [[ | + | [[category:GNU]] |
+ | [[category:linux]] |
2022年3月20日 (日) 09:43的最后版本
GNU/Linux
您可以在Wikipedia上了解到此条目的英文信息 Linux Thanks, Wikipedia. |
目录 |
[编辑] Linux
严格的说Linux指的是 Linux Kernel。Linux Kernel 是Linux操作系统(也叫做GNU/Linux)的重要组成部分。
它最初的作者是芬兰程序员Linus Torvalds。但是人们常说的Linux往往是指各种Linux发行版。Linux的吉祥物是企鹅Tux。
Linux 网地大全 - http://site.huihoo.com/linux.html
[编辑] 新闻
自http://www.linuxfoundation.org/news-media/announcements/rss.xml加载RSS失败或RSS源被墙 自http://www.linuxfoundation.org/news-media/blogs/browse/rss.xml加载RSS失败或RSS源被墙
[编辑] Credit Card
[编辑] Linux 与 GNU
[编辑] 发行版
- Debian GNU/Linux (官方网站)
- Ubuntu (官方网站)
- Red Hat Linux (官方网站)
- CentOS
- Fedora Core (官方网站)
- SUSE Linux (官方网站)
- openSUSE (官方网站)
- Mandrake Linux (官方网站)
- Slackware Linux (官方网站)
- Gentoo Linux (官方网站)
- Knoppix (官方网站)
- MiniLinux Mini Linux Distribution
- Arch Linux
更多发行版:http://lwn.net/Distributions/
[编辑] 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"
[编辑] 相关
[编辑] 体系
- http://www.linux-usb.org/
- http://www.linux-laptop.net/
- http://playstation2-linux.com/
- http://www.terrasoftsolutions.com/ - Linux for PS3, IBM Power, Mercury Cell, and Apple PowerPC.
- http://www.xbox-linux.org
[编辑] 桌面系统
[编辑] 安装指南
[编辑] 厂商
- Dell - http://linux.dell.com/
- Oracle - http://oss.oracle.com/
- IBM - http://www-1.ibm.com/linux/
- HP - http://linux.hp.com
- SUN - http://www.sun.com/software/linux/
- KS2009: How Google uses Linux
[编辑] 文档
- http://docs.huihoo.com/gnu/
- http://gnu.huihoo.org/
- http://docs.huihoo.com/gnu_linux/
- http://docs.huihoo.com/linux/
- http://ldp.huihoo.org/
[编辑] 展会
[编辑] 资源
- Awesome Linux Resources
- 中国Linux大学
- Linux文档计划
- Linux内核官方网站
- Linux新闻
- Linux程序下载中心
- Linux.com
- Linux Wiki
- HowtoForge is the source for Linux tutorials
- Jserv's blog
- 2012年Linux Journal读者选择奖结果公布
[编辑] 中国发行版
[编辑] 中国Linux社区
- Linux大本营
- 中国Linux论坛
- Linuxsir黄嘴企鹅
- 中国Linux公社
- 中国Linux技术中坚站
- Linuxeden
- FreeWay 自由之路原创文档小组
- FreeWill 自由意志翻译小组
- Gentoo 中文文档集散地
- LFS 中文用户小组
- Fcitx 小企鹅输入法
- 北京大学Linux俱乐部
- ChinaUnix.net
[编辑] 中国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书籍
[编辑] 应用
[编辑] 图集
分享您的观点