主要變動:
以gnome為預設桌面,桌面分別為
gnome2.6

kde4.2

openbox的簡易桌面,加上lxpanel的工具列

以iceweasel(是Mozilla Firefox瀏覽器的Debian再發布版)取代firefox,在debian中,啟動更快、更穩定,相容於所有firefox外掛
shutter截圖工具
由於更新極多,一直有大量的 bug 出現,修更花了許多時間,所以核心並未升級,仍是2.6.27.9
deb http://ppa.launchpad.net/shutter/ppa/ubuntu jaunty main匯入key
deb-src http://ppa.launchpad.net/shutter/ppa/ubuntu jaunty main
sudo apt-get source unzip
tar xzvf unzip_5.52.orig.tar.gz
cd unzip*
gedit unzpriv.h
把所有
*p = native((*p & 0×80) ? oem2iso[*p & 0×7f] : *p);}
改為
*p = native(*p);}
如下:
# ifdef CRTL_CP_IS_OEM
# ifndef IZ_ISO2OEM_ARRAY
# define IZ_ISO2OEM_ARRAY
# endif
# define _ISO_INTERN(str1) {register uch *p;\
for (p=(uch *)(str1); *p; p++)\
*p = native(*p);}
# else
# define _ISO_INTERN(str1) A_TO_N(str1)
# endif
#endif
#ifndef _OEM_INTERN
# ifdef CRTL_CP_IS_OEM
# define _OEM_INTERN(str1) A_TO_N(str1)
# else
# ifndef IZ_OEM2ISO_ARRAY
# define IZ_OEM2ISO_ARRAY
# endif
# define _OEM_INTERN(str1) {register uch *p;\
for (p=(uch *)(str1); *p; p++)\
*p = native(*p);}
make -f unix/Makefile generic
把新的unzip覆蓋/usr/bin/unzip即可