<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/css" href="./clientscript/vbulletin_css/rsstyle.css"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>LinuxSir.Org - Mini Linux 及准系统研究</title>
		<link>http://www.linuxsir.org/bbs</link>
		<description>小型Linux、准系统及注重功能的小型Linux 系统；比如注重路由、防火墙型的准系统；</description>
		<language>zh</language>
		<lastBuildDate>Fri, 10 Sep 2010 18:26:29 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.linuxsir.org/bbs/images/misc/rss.jpg</url>
			<title>LinuxSir.Org - Mini Linux 及准系统研究</title>
			<link>http://www.linuxsir.org/bbs</link>
		</image>
		<item>
			<title>老电脑增加USB启动的问题</title>
			<link>http://www.linuxsir.org/bbs/showthread.php?t=371873&amp;goto=newpost</link>
			<pubDate>Sun, 29 Aug 2010 02:48:13 GMT</pubDate>
			<description>我用一128兆U盘装SliTaz，在945主板上USB-HDD启动OK，现想做为810主板的启动盘，完全甩掉硬盘，怎么做？

是否有USB启动的BIOS模块可加进BIOS？我现在想到最接近的办法是用软盘启动内核，再挂载U盘</description>
			<content:encoded><![CDATA[<div>我用一128兆U盘装SliTaz，在945主板上USB-HDD启动OK，现想做为810主板的启动盘，完全甩掉硬盘，怎么做？<br />
<br />
是否有USB启动的BIOS模块可加进BIOS？我现在想到最接近的办法是用软盘启动内核，再挂载U盘</div>

]]></content:encoded>
			<category domain="http://www.linuxsir.org/bbs/forumdisplay.php?f=93">Mini Linux 及准系统研究</category>
			<dc:creator>5000</dc:creator>
			<guid isPermaLink="true">http://www.linuxsir.org/bbs/showthread.php?t=371873</guid>
		</item>
		<item>
			<title>tinycore 3.0汉化记录</title>
			<link>http://www.linuxsir.org/bbs/showthread.php?t=371555&amp;goto=newpost</link>
			<pubDate>Mon, 16 Aug 2010 09:32:52 GMT</pubDate>
			<description><![CDATA[1 设置locale
安装
glibc_i18n_locale.tcz
glibc_add_libs.tcz
glibc_apps.tcz
glibc_gconv.tcz
运行
mkdir -p /usr/lib/locale
localedef -i zh_CN -f GBK zh_CN
localedef -i zh_CN -f UTF-8 zh_CN
将usr/lib/locale/locale-archive写入到/opt/.filetool.lst
编辑grub的munu.lst在启动项目中加入lang=zh_CN.gbk

2 安装中文字体
下载wqy-microhei中文字体安装到/usr/share/fonts/
将usr/share/fonts/wqy-microhei.ttc写入到/opt/.filetool.lst

3 安装fcitx
安装
xorg-dev
fontconfig-dev
compiletc
squashfs-tools
下载fcitx-3.5
./configure --enable-xft --prefix=/usr/local
make
touch /tmp/mark
make DESTDIR=/tmp/package install
cd /tmp
mksquashfs package fcitx-3.5.tcz
打包成功后通过appbrowser安装
在~./xsession中写入
export XMODIFIERS="@im=fcitx"
export XIM=fcitx
export XIM_PROGRAM=fcitx
fcitx &  

4 问题
3.6版本编译后安装出错，3.5版本可以编译安装，但在zh_CN.utf8环境下输入会出现乱码等不正常现象估计是local的缘故，在zh_CN.gbk环境下输入正常。

谈谈新版的使用感受
tinycore 3.0版本感觉变化挺大的，tce包好像都取消了，对硬件的支持更好了。
宽屏显示需要安装xorg，参考http://wiki.tinycorelinux.com/Using+Xorg+over+Xvesa
声卡设置，参考http://wiki.tinycorelinux.com/Setting+up+Sound
无线网卡设置，参考http://wiki.tinycorelinux.com/Setting+up+Wifi
安装在笔记本上，运行速度很快。我用一个1G分区安装tinycore，装了firefox、emelfm2、fcitx、wicd和一些编译工具大概用去150M。]]></description>
			<content:encoded><![CDATA[<div>1 设置locale<br />
安装<br />
glibc_i18n_locale.tcz<br />
glibc_add_libs.tcz<br />
glibc_apps.tcz<br />
glibc_gconv.tcz<br />
运行<br />
mkdir -p /usr/lib/locale<br />
localedef -i zh_CN -f GBK zh_CN<br />
localedef -i zh_CN -f UTF-8 zh_CN<br />
将usr/lib/locale/locale-archive写入到/opt/.filetool.lst<br />
编辑grub的munu.lst在启动项目中加入lang=zh_CN.gbk<br />
<br />
2 安装中文字体<br />
下载wqy-microhei中文字体安装到/usr/share/fonts/<br />
将usr/share/fonts/wqy-microhei.ttc写入到/opt/.filetool.lst<br />
<br />
3 安装fcitx<br />
安装<br />
xorg-dev<br />
fontconfig-dev<br />
compiletc<br />
squashfs-tools<br />
下载fcitx-3.5<br />
./configure --enable-xft --prefix=/usr/local<br />
make<br />
touch /tmp/mark<br />
make DESTDIR=/tmp/package install<br />
cd /tmp<br />
mksquashfs package fcitx-3.5.tcz<br />
打包成功后通过appbrowser安装<br />
在~./xsession中写入<br />
export XMODIFIERS=&quot;@im=fcitx&quot;<br />
export XIM=fcitx<br />
export XIM_PROGRAM=fcitx<br />
fcitx &amp;  <br />
<br />
4 问题<br />
3.6版本编译后安装出错，3.5版本可以编译安装，但在zh_CN.utf8环境下输入会出现乱码等不正常现象估计是local的缘故，在zh_CN.gbk环境下输入正常。<br />
<br />
谈谈新版的使用感受<br />
tinycore 3.0版本感觉变化挺大的，tce包好像都取消了，对硬件的支持更好了。<br />
宽屏显示需要安装xorg，参考<a href="http://wiki.tinycorelinux.com/Using+Xorg+over+Xvesa" target="_blank">http://wiki.tinycorelinux.com/Using+Xorg+over+Xvesa</a><br />
声卡设置，参考<a href="http://wiki.tinycorelinux.com/Setting+up+Sound" target="_blank">http://wiki.tinycorelinux.com/Setting+up+Sound</a><br />
无线网卡设置，参考<a href="http://wiki.tinycorelinux.com/Setting+up+Wifi" target="_blank">http://wiki.tinycorelinux.com/Setting+up+Wifi</a><br />
安装在笔记本上，运行速度很快。我用一个1G分区安装tinycore，装了firefox、emelfm2、fcitx、wicd和一些编译工具大概用去150M。</div>

]]></content:encoded>
			<category domain="http://www.linuxsir.org/bbs/forumdisplay.php?f=93">Mini Linux 及准系统研究</category>
			<dc:creator>hujy</dc:creator>
			<guid isPermaLink="true">http://www.linuxsir.org/bbs/showthread.php?t=371555</guid>
		</item>
	</channel>
</rss>
