按月归档:2012-01

linux加载NTFS

1.  安装ntfs-3g 和 fuse

yum install fuse ntfs-3g -y
注:如果你在使用 CentOS 5.3 或更旧版本,那么你需要安装来自 ELRepo 的 kmod-fuse

也可以下载源码自己编译,我开始就是自己编译的。
编译方法:
wget http://tuxera.com/opensource/ntfs-3g-2011.4.12.tgz
tar zxvf ntfs-3g-2011.4.12.tgz
cd ntfs-3g-2011.4.12
./configure
make
make install Continue

m0n0wall部署

一直想使用m0n0wall ,传说很很神通广大。
由于想使用wget直接安装,结果安装时不尽如意,无奈,FREEBSD默认不装wget,那就装吧,又没有
Ports,也装吧。
使用 portsnap 安装/同步 ports 系统
使用portsnap不需要事先安装 ports tree,并且能够在任何时候恢复到已知的最新状态(即使手工对ports tree进行了修改)。
使用 portsnap 分成两个步骤:下载压缩的 portsnap 快照,和更新现有系统。下载或更新 portsnap 快照的方法是 portsnap fetch;首次安装,或希望将 ports tree 恢复到快照的样子,应使用 portsnap extract;之后更新系统中的 ports tree,则可以通过 portsnap update 来完成。对于服务器而言,推荐在 crontab 中增加在每天3点执行 portsnap cron,以减少使用时所需要的下载时间。 Continue