Home mail me! Syndicate this site using RSS

Archive for July, 2006


Lead PHP programmer quits

Jani Taskinen, the lead PHP programmer has been quit PHP project, and he leaves a short� message saying goodbye.

————————
Thank you all for the last 6 years or so. It has been fun (sometimes)
and many times not so much fun. Unfortunately I have had enough and
I don’t want to be associated with this project anymore.

I’m sure most people (the ones who matter) can understand why.
If someone doesn’t, I could not care less. Take care.

Please do not reply to this email.

–Jani

p.s. Delete my CVS account. I have no use for it anymore.
————————
For more infomation, please visit php.internals group.

NTFS-3G – Read & Write NTFS in Ubuntu Dapper

2007年7月25日更新:最新的Ubuntu 7.04已经包含了ntfs-3g,并且加了个ntfs-config自动配置安装包,非常方便!

虽然在2001年LINUX就支持NTFS格式文件的读取,但是在写文件方面一直不尽人意,近日发布的这款新软件NTFS-3G可在LINUX下安全读写NTFS分区的文件,虽然还是beta版,不过试用了一下,感觉非常棒。

安装步骤如下:

1. 先安装FUSE

# wget http://flomertens.keo.in/debian/ntfs-3g/binary-i386/fuse-utils_2.5.3-1_i386.deb
# wget http://flomertens.keo.in/debian/ntfs-3g/binary-i386/libfuse2_2.5.3-1_i386.deb
# sudo dpkg -i libfuse2_2.5.3-1_i386.deb fuse-utils_2.5.3-1_i386.deb

2. 再安装NTFS-3G

# wget http://flomertens.keo.in/debian/ntfs-3g/binary-i386/ntfs-3g_20070714-BETA-1_i386.deb
# sudo dpkg -i ntfs-3g_20070714-BETA-1_i386.deb

Read more…