- 请问framebuffer设备驱动是不是仅用于console下面的显示驱动? Linux/Unix社区 / 内核及驱动程序研究区 – CSDN社区 community.csdn.net
littlebat注:
最初是为了在linux内核启动开始后,显示linux的小企鹅图标
…
后来使用它为linux文本控制台提供更大的字体和显示分辨率
…
后来使用它为其它的国家语言提供语言平台,如zhcon…(tags: linux framebuffer)
littlebat后注:在我的那台486DX100的机器上,内核编译(2.4.35.3)选择了支持framebuffer还是不能在启动时显出那只小企鹅;没重新编译内核前的那个redhat linux 9.0(内核2.4.20-8)在这台486DX100启动时不能显出小企鹅,但把硬盘挂在另一台赛扬1G的机器上启动时就可以显出小企鹅。
- 如何挂载windows分区和U盘 – 软件直通车
littlebat注:
1、支持ntfs分区
最简单的方式是通过安装支持ntfs的rpm包实现
2、挂载windows分区
mount -t vfat /dev/hda1 /mnt/winc -o codepage=936 iocharset=936
3、挂载U盘
mount -t vfat /dev/sda1 /mnt/usb(tags: linux mount windows U盘)
littlebat后注:原来以为上面的iocharset要写成gb2312之类,没想到还可以直接写成“936”之类。
- SlackWare10.1从(硬盘)安装到配置(包括升级)全过程! | Slack.LinuxSir.ORG
安装过程相对简单,对新手来说,接下来的配置就比较头疼了。
月份:2007年10月
Linux内核配置(links for 2007-10-30)
- Gentoo Linux文档 — 配置内核
首先,开启development and experimental code/drivers。您必须激活它,否则,您将无法看到一些非常重要的代码/驱动:代码 5: 选择experimental code/driversCode maturity level options —>
[*] Prompt for development and/littlebat注:如不选这一项,后面的“Framebuffer support”就是灰化不可选的。在这里查看什么是framebuffer以及framebuffer有什么用?(原标题为:请问framebuffer设备驱动是不是仅用于console下面的显示驱动?其中“8 楼Ropyn(剑心)”的讲解比较详细) - Linux 2.6.19.x 内核编译配置选项简介【作者:金步国】
Linux Grub启动windows相关问题和解决方法及硬盘修复(links for 2007-10-28)
-
If you have installed DOS (or Windows) on a non-first hard disk
…
grub> map (hd0) (hd1)
grub> map (hd1) (hd0)
…
Another problem arises if you installed more than one set of DOS/Windows onto one disk
…
grub> unhide (hd0,0)
grub> hide (hd0,1)
grub … -
笔者经常对有“病”的硬盘进行小修小补,使用最多的是半专业的硬盘修复软件。我试过很多这类的软件,最后在我机子里只留下HDDREG、
MHDD、FBdisk、以及一些原厂的DM工具,至于MS的SCANDISK,不
我想从grub或是lilo启动Windows,但是黑屏了,我该怎么办呢?(转摘)
我想从grub或是lilo启动Windows,但是黑屏了,我该怎么办呢?
这是一个已知的问题。Windows在当它不是安装在第一个硬盘时会拒绝启动。要搞定这个,你需要在引导管理器的配置文件中作一些小改进来“欺骗”一下Windows并让它相信它是安装在第一个硬盘上的。请注意在下面的例子中,Gentoo安装在hda(第一个硬盘),Windows安装在hdb(第二个硬盘)。根据你的需要改变配置文件。
代码 3.5: grub.conf中关于Windows双重启动条目的例子 |
title Windows XP map (hd1) (hd0) map (hd0) (hd1) rootnoverify (hd1,0) chainloader +1 |
代码 3.6: lilo.conf中关于Windows双重启动条目的例子 |
other=/dev/hdb1 label=WindowsXP table=/dev/hdb map-drive = 0x80 to = 0x81 map-drive = 0x81 to = 0x80 |
这会使Windows相信它安装在第一个硬盘上并且会没有疑问的启动。更多的信息可以参考GRUB文档或man lilo.conf,取决于你使用哪个引导程序。
怎样防止孩子睡觉踢被子(links for 2007-10-27)
- 怎样防止孩子睡觉踢被子?(_雅虎知识堂
littlebat注:
1、睡前不可过于兴奋
2、少穿衣服
3、良好的睡眠姿势
4、蛲虫病
另参见:孩子踢被子的解决方法(转帖2篇)
Damn Small Linux语言支持情况、Linux下字体路径修改等linux相关网摘(links for 2007-10-26)
- Enabling Apt – DSL Wiki
DSL is not derived purely from Debian, if you ‘apt-get install’ the wrong application you may break somet …
You may also consider to compile and install the latest perl version. Overall it works pretty well but some things may be broken here and there. - Language Support – DSL Wiki
Booting with option “dsl lang=xx”
…
* In Chinese language characters are not shown correctly.
…
DSL and Unicode
While the core bits of DSL are capable of handling files in Unicode encodings, most of the included apps cannot. … - X-Window中如何设置字体-linux学习-Linux教程网
查看目前 X 伺服程式的字型路径
# xset -q
新增字型目录
# xset +fp ~/myfonts 或
# xset fp+ ~/myfonts
删除字型目录
# xset -fp ~/myfonts 或
# xset fp- ~/myfonts
当字型目录做更新後,则字型路径的设定也需更 - Slackware Linux 101 – 在引导 Linux 机器时发生了什么
Joe Brockmeier 研究了 Slackware Linux init 进程。他讨论了系统如何初始化服务、各种运行级别是什么,以及如何从缺省安装中添加或除去服务来定制系统。
- Linux用户也能玩转Google Earth了-Debian/Ubuntu-Linux教程网
Google最近发布了一个Linux版本的Picasa(图像管理、处理软件),不过使用的仍是Wine模拟器,而Google Earth的Linux版本则是一款原生Linux应用程序,没有使用任何模拟器软件。 Google Earth官方下载页
(tags: linux google-earth)
- LFS (版本6.1.1) 安装心得 – LinuxSir.Org
1. 尽可能的摆脱host system的影响, 首先创建一个最基本的自治的Toolchain.
…
2. 当所有的基本Toolchain工具准备好了,就可以chroot.
…
3. 在Chroot后的虚拟根/环境下, 用toolchain中的工具生成出最后的LFS系 - Fwolf’s Blog一个linux相关的博客
- ubuntu系统更改网卡mac地址及安装双网卡(双IP)的方法 – dayup的专栏 – CSDNBlog
我们单位的网络连接局域网(以下简称内网)和互联网(以下建成外网)采用不同的网段,连接外网绑定了网卡mac地址。因为懒得总是切换ip地址,所以我安装了两块网卡,不过安装过程并不顺
- busybox简介及使用-linux命令-Linux教程网
busybox是一个集成了一百多个最常用linux命令和工具的软件,他甚至还集成了一个http服务器和一个telnet服务器,而所有这一切功能却只有区区1M左右的大小.我们平时用的那些linux命令就好比是分立式
- 系统管理员工具包: 移动 UNIX 目录
有时候,您需要将整个 UNIX® 目录树复制到相同系统中其他的位置或不同的系统。有许多种不同的方法可以完成这项操作,但并非所有的方法都可以保持信息数量不变或兼容于不同的系统。本文
Linux下用iptables共享上网、Redhat Linux 启动服务和系统文件及目录相关问题(links for 2007-10-24)
- RedHat 启动服务详解 – 城市胡同
littlebat注:
下面是作者列出的需要启动的服务
acpid
cpuspeed
crond
Iptables
Kudzu
Network
Random
Readahead和Readahead_early
Syslog - The /etc/sysconfig/ Directory
Red Hat Linux 8.0: The Official Red Hat Linux Reference Guide
Prev Chapter 3. Boot Process, Init, and Shutdown Next
The /etc/sysconfig/ DirectoryThe following information outlines some of the files found in the /etc/sysconfig/ directory, their functio - The /etc/sysconfig/network file
#GATEWAY=gwip, where gwip is the IP address of the remote network gateway -if available.
#GATEWAYDEV=gwdev, where gwdev is the device name eth# you use to access the remote gateway.
- Linux iptables firewall 設定常見 FAQ 整理 (最近更新時間:8/18/2006) – 网络技术 – linux宝库论坛 linux,社区,入门,下载,教程,命令,新闻,下载,论坛,人才,开源,自由软件 – Powered by Discuz!
NAT服务,让内部 privae ip 共享上网:
iptables -A POSTROUTING -t nat -s 192.168.1.0/24 -j MASQUERADE
echo 1 > /proc/sys/net/ipv4/ip_forward
或
iptables -A POSTROUTING -t nat -s 192.168.1.0/24 -j SNAT –to 210.1.1.1
echo 1 > /proc/sys/net/ipv4/i
Linux下用iptables实现共享上网及在Damn Small Linux中保存静态ip设置(links for 2007-10-23)
- 简单实现Iptables共享上网 – lydr的个人空间 – Linux中国博客 – powered by X-Space
IP伪装,是Linux系统的一种网络功能,如果一台Linux主机使用IP伪装功能连接到互联网上,那么其他计算机,不论是在同一个局域网上还是通过调制解调器连接,只要连接到这个Linux主机上,就可
- linux实现共享上网-mineral -JavaEye技术社区
配置Linux的NAT和ip_forward: 这里我直接从网上找了一个scripts。非常好用。
- RedHat 8.0 9.0提供ADSL共享上网的解决办法[抄袭篇] – LinuxSir.Org
三、在/etc/rc.d/rc.local中加入如下:echo 1 > /proc/sys/net/ipv4/ip_forward
iptables -t nat -A POSTROUTING -s 192.168.0.0/24 -o ppp0 -j MASQUERADE四、重新启动机器。就OK了。
- iB::Topic::Not-DHCP booting
Booting with static IP is discussed in the Wiki (manually adding command to /opt/bootlocal.sh).In DSL 3.4.4 & DSL 4.0 I updated netcardconf.lua to more easily handle static IP and persisting the setup. I recommend you download the latest and try it.
安装Damn Small Linux相关问题、linux网站收藏及mlterm配置(links for 2007-10-21)
-
littlebat注:此页讲怎样把DSL安装到硬盘上。
boot…
sudo -s
cfdisk /dev/hda
…
sudo -s
mkswap /dev/hda1
swapon /dev/hda1
…
dsl-hdinstall -
littlebat注:
此页讲在不能从光盘或USB直接启动或没有光驱、USB时,制作启动软盘从光驱或USB或拷贝到硬盘上的文件启动DSL。
download: bootfloppy.img OR bootfloppy-usb.img
make boot floppy: dd if=bootfloppy.img of=/d -
有几篇好文章,如:Linux的汉化,Enlightenment的中文显示问题,在mutt里直接看doc、xls、ppt、pdf附件文件 等等
-
littlebat注:有比较详细的配置代码
-
Live System on USB flash drive / USB memory stick
-
littlebat注:有多种方法可以把DSL安装到USB上,如下:
From within DSL
From within Linux
From within Windows
Convert .iso to USB installation
UNIX参考文章收集网站及其上的Minix专题文章收集(links for 2007-10-20)
- UNIX REFERENCE
Home | 业界动态 | Open source | GNU | Linux | BSD | Solaris | AIX | HP-UX | IRIX | Mac OS X | Minix | Tru64 | SCO UNIX | Network | Security | X-Window | Database | 应用服务 | Programming | 经典著作 | 永远的纪念 | 杂项 | Special topics |
- Minix
littlebat注:此页收集了一些比较好的Minix文章,如:
引导分析,安装实战,内存管理分析,Linux下访问Minix文件系统等等