
linux入门
文章平均质量分 53
fyplinux
这个作者很懒,什么都没留下…
展开
-
linux下可挂载的文件系统
原创 2007-08-22 17:13:00 · 697 阅读 · 0 评论 -
英文版ubuntu的中文(输入法)设置
Chinese language support in ubuntuwhat I have done For ubuntu 8.04:1 .system->administration->language support: chinese2.install fonts: here and hear for install new fonts,I have ONLY do these steps:原创 2008-05-13 22:56:00 · 2112 阅读 · 0 评论 -
多于牛毛的linux 发行版
看到一个站点, 记录这些发布的 http://distrowatch.com/top 10:http://distrowatch.com/dwres.php?resource=major原创 2008-04-10 07:54:00 · 618 阅读 · 0 评论 -
Linux/Unix text processing tools
http://tldp.org/LDP/abs/html/textproc.html* sort * tsort* uniq* expand, unexpand::The expand filter converts tabs to spaces.* cut* paste* join* head* tail* grep* look* sed,awk* wc* tr* fold* col* colu转载 2007-11-03 06:21:00 · 702 阅读 · 0 评论 -
linux环境变量相关命令和文件
环境变量的查看和导入: env 查看所有环境变量 export 运行时导入变量, 系统下次启动后, 这些变量就不复存在了。 set 不带参数的set可原创 2007-10-04 07:49:00 · 5021 阅读 · 0 评论 -
unix shell programming的一些细节
test语句在 等号 前后 都要有空格 , 空格可以多于一个; 推广一下, 赋值语句的等号前后不能有空格, 非赋值语句要有空格(我还不敢绝对的这么说) 双引号, 就相当于printf下的双引号;单引号就是一个字符串括号, 里面的就是字符串内容 true,比如test下的一个成功匹配, 返回0, 在if下是有效的真值 声明一个数字参数: declare -i原创 2007-09-30 02:50:00 · 848 阅读 · 0 评论 -
linux系统的备份
要装710了, 先备份一下。原文http://www.desktoplinux.com/articles/AT2280165098.htmlhttp://tldp.org/HOWTO/Linux-Complete-Backup-and-Recovery-HOWTO/index.html总结一下要备份的文件: 个人文档: 一般保存在桌面, 还有主目录下 T原创 2007-10-23 05:00:00 · 824 阅读 · 0 评论 -
Linux的启动过程
简单综合了一下网上看到的文章启动过程 系统自检 加载启动扇区(x86系统下由bios完成) MBR加载系统内核 内核加载,加载驱动,挂载文件系统等 启动第一个用户级程序init的方式,完成引导进程。init始终是第一个进程(其PID始终为1)。内核会在过去曾使用过init的几个地方查找它,它的正确位置(对Linux系统来说)是/sbin/ini原创 2007-09-14 02:31:00 · 923 阅读 · 0 评论 -
Hello World: start running linux
Initiazliation=========The Linux Boot Process(click me) runlevels boot scripts init root password recovery starting and stop services(daemons)Path format=========Note th原创 2007-08-25 00:14:00 · 833 阅读 · 0 评论 -
ubuntu7.04的字体设置
A better article on this topic看到很多文章说修改/etc/fonts/language-selector.conf,但在我的系统下面并没有这个文件。 后来,我从网上考了别人的一个文件, 可以用。/etc/fonts目录下的文件有: conf.avail conf.d fonts.conf fonts.dtd local.conf按照这些文件自带的注释, l原创 2007-08-25 16:39:00 · 640 阅读 · 0 评论 -
grep统计某个单词的个数
j@j:~$ cat hello.c#include//include includeint main(){ printf("hello world/n"); exit(0);}j@j:~$ grep -o include hello.cincludeincludeinclude如上所示, 所有的include都显示出来了, 包括有两个include的行。命令grep -c -o inclu原创 2007-08-25 10:51:00 · 18434 阅读 · 2 评论 -
Linux图形编程用什么开发包?
GUI开发用的多的就是QT, GTK, WxWidgets.做一些初级到点, 线,面的编程,比如, 游戏特效, 就可以用到鼎鼎大名的opengl及其附属库:OpenGL support libraries(from wikipedia)GLUT – The OpenGL utility toolkit.SDL – The Simple DirectMedia Layer.GLU – Some原创 2008-11-26 05:49:00 · 5027 阅读 · 0 评论