Aug
18
2010
0

在debian上安裝google chrome

最近想換成google chrome的beta版,研究了一下

在google網站上抓好deb安裝檔

http://www.google.com/chrome

我的系統是i386版,看是用那一版本就抓那一版

然後安裝起來

sudo dpkg -i google-chrome-stable_current_i386.deb

安裝好之後,會在/etc/apt/source.list.d/裡面新增一個檔案google-chrome.list

也會在系統上多一組gpg key,可以用apt-key list來看是那一組,這樣之後安裝的時候就不會出現key沒有認證的訊息

這樣裝起來之後,預設是安裝stable版,可以手動換成beta , unstable版

手動移除stable版本

sudo apt-get remove google-chrome-stable

安裝beta , unstable版本,很想嘗試新版本的話就可以這樣作

sudo apt-get install google-chrome-beta

sudo apt-get install google-chrome-unstable

在從選單開啟google chrome就完成了

Written by damon in: it |
Jul
22
2010
0

a light weight gnome desktop

i’ve try to build a light weight gnome desktop with debian testing, here is how

download this iso and burn it into cdrw or this iso for amd64 platform , and install debian as usual

add non-free , contrib to /etc/apt/source.list

install xorg with command apt-get install xorg

install gdm3 with command apt-get install gdm3

install mutter with command apt-get install mutter

install iceweasel , mozplugger , flashplugin-nonfree with command apt-get install iceweasel mozplugger flashplugin-nonfree

install gnome packages with command apt-get install gnome-core file-roller unrar gthumb openoffice.org openoffice.org-gnome emesene filezilla network-manager-gnome ibus ibus-chewing gnome-themes pulseaudio gnome-screensaver totem gnome-codec-install ttf-arphic-ukai ttf-arphic-uming ttf-sazanami-gothic ttf-sazanami-mincho ttf-baekmuk msttcorefonts

it’s also fun to try the new gnome3 interface gnome-shell , install it with command

apt-get install gnome3-session , then select gnome3 from gdm login screen , that’s it

Written by damon in: it |
Jul
13
2010
0

upgrade iceweasel to 3.6.4 by hand

here is a little guide for someone who want to upgrade to iceweasel 3.6.4 for debian unstable or testing

please be sure to download correct platform package , my system is running debian unstable i386

1. download iceweasel 3.6.4 form http://packages.debian.org/experimental/iceweasel

2. download xulrunner 1.9.2 from http://packages.debian.org/experimental/xulrunner-1.9.2

3. download libmozjs3d from http://packages.debian.org/experimental/libmozjs3d

4. remove icewasel with command apt-get remove –purge iceweasel

5. remove xulrunner with command apt-get remove –purge xulrunner-1.9.1

6. install libmozjs3d with command dpkg -i libmozjs3d_1.9.2.4-2_i386.deb

7. install xulrunner with command dpkg -i xulrunner-1.9.2_1.9.2.4-2_i386.deb

8. install iceweasel with command dpkg -i iceweasel_3.6.4-1_i386.deb

restart iceweasel , and it’s done

Written by damon in: it |
Jun
18
2010
0

twnic的dns檢測服務

在台灣,網域名稱都是twnic這個機構在負責處理的,所以呢,dot tw網域他們的管理範圍,最近發現有各dns檢測的服務,網址在

http://rs.twnic.net.tw/cgi-bin/dns.cgi

輸入網域名稱之後就可以檢測了

Written by damon in: it |
Jun
13
2010
0

replace metacity with mutter and gnome-shell

after install mutt and gnome-shell , it’s time to switch to gnome-shell , the next generation gnome window manager

first , backup this value with command

gconftool-2 –get /desktop/gnome/session/required_components/windowmanager

white down or take screen shot to backup the old value

and set new value to switch to gnome-shell with command

gconftool-2 –set /desktop/gnome/session/required_components/windowmanager –type string gnome-shell

then logout , login again , it’s done

Written by damon in: it |
Jun
13
2010
0

setup my debian testing ready for next generation gnome 3

this morning , i remove , purge and replace with new packages , to fit the next generation gnome 3 which will release on October 2010

remove gdm , and replace with gdm3

remove epiphany-browser , and replace with iceweasel

remove metacity , and replace with mutter

add new package : gnome-shell

for new installed system , install these packages before install whole gnome-desktop-environment packages

apt-get install gdm3 iceweasel mutter gnome-shell

then

apt-get install gnome-desktop-environment

for testing gnome 3 new interface

apt-get install gnome3-session

and select gnome 3 session when login with gdm3

Written by damon in: it |
May
19
2010
2

install google chrome and opera on debian testing amd64

This afternoon , I give google chrome and opera a chance to be installed on my laptop which running debian testing amd64

Here is how to install them

download chrome for linux from google http://www.google.com/chrome

And install chrome with command , and installation will add google’s pgp key and add chrome apt source to /etc/apt/source.list.d/

sudo dpkg -i google-chrome-beta_current_amd64.deb

Add another apt source to /etc/apt/source.list.d/ with this apt settings

deb http://deb.opera.com/opera-beta/ testing non-free

Download and install pgp key for opera with command

wget http://deb.opera.com/archive.key

sudo apt-key add archive.key

sudo apt-get update

sudo apt-get install opera

That’s all , chrome and opera are ready to work

Written by damon in: it |
Apr
17
2010
1

資料從ntfs硬碟複製回linux硬碟之後的狀況

這兩天把資料從ntfs格式的外接硬碟複製回ext4的partition,發現檔案屬性都變成可執行了,檔案實在太多,要一個一個改屬性實在太花時間,問了強者之後,有各指令可以一次解決

­find . -type f -exec chmod o-x,u-x,g-x {} \;

跑完就解決了

Written by damon in: it |
Apr
05
2010
0

install debian x64 on my acer travelmate 6292

last week , i made my mind , i want to switch to gnome on my acer travelmate 6292 laptop

then i just download debian 5.04 netinstall iso , and install stable version on my laptop

the first thing i do when everything finish is to upgrade to unstable with apt-get update ; apt-get dist-upgrade , but before using these command , i have to edit /etc/apt/source.list , i just switch to using unstable with these settings

damon@notebook:/etc/apt$ cat sources.list
deb http://ftp.tw.debian.org/debian/ unstable main contrib non-free
deb-src http://ftp.tw.debian.org/debian/ unstable main contrib non-free

then just typing upgrade with root account , after upgrade for kernel was done , i just reboot my laptop with new kernel , because upgrade process was stop due to udev upgrade error , udev in unstable will not work with debian 5.04 kernel , after reboot with new kernel , i just using apt-get -f install , apt-get dist-upgrade , until every upgrade commands are finished without error

my personal favorite window manager is gnome, and i need chinese traditional input method , which support chewing and cangjie , and i also need open office , web browser , windows live messenger client , chinese traditional font , so i just install all i need with these command

apt-get install xorg gnome gnome-audio pulseaudio ibus ibus-chewing ibus-table-cangjie5 openoffice.org iceweasel emesene flashplugin-nonfree ttf-arphic-ukai ttf-arphic-uming firmware-iwlwifi firmware-linux-nonfree

when installation process were done , just reboot and waiting gdm to start for me

i don’t know why , im-switch did not work well with me , so i just doing things by hand , add these setting into .bashrc in my personal account’s home directory

export LC_ALL=en_US.UTF-8
export GTK_IM_MODULE=ibus
export XMODIFIERS=@im=ibus
export QT_IM_MODULE=ibus

then add ibus as system default input method with this command

cd /etc/alternatives ;mv xinput-all_ALL xinput-all_ALL-old ; ln -s /etc/X11/xinit/xinput.d/ibus xinput-all_ALL

then restart gdm with command /etc/init.d/gdm restart ; then i can configure ibus and using ibus well

in taiwan , the first bank’s web atm which support linux and firefox is esun bank , i’m so lucky , i have bank account with esun bank , so i just pick up a smart card reader which debian unstable got dirver build in , it’s here

http://www.ittec.com.tw/product/IT-830UP%28DM%29.htm

all i need to do is connect smart card reader , and install these packages

apt-get install libccid libpcsc-perl pcscd pcsc-tools ; reboot

then lunch iceweasel and goto this address and install web atm extension , then restart iceweasel , and everything is working well

https://addons.mozilla.org/en-US/firefox/addon/12324

one more configuration to edit is /etc/NetworkManager/nm-system-settings.conf ;  edit it to support ethernet connection

[ifupdown]
#managed=false
managed=true

then just reboot , and ethernet connection support is done

hardware support for debian x64 on my laptop is almost 100% , the only hardware isn’t supported is finger print device , i just diable it and life go on

Written by damon in: it |
Dec
29
2009
0

rejoin domain for virtual machine on hyper-v

sometimes , the new virtual machine from old physical machine may need to rejoin windows ad domain , here is how

on virtual machine , quit domain , reboot

on dc , open ad users and computers , find the new virtual machine , right click , reset computer account

on virtual machine , rejoin domain , reboot

Written by damon in: it |

Powered by WordPress | Aeros Theme | TheBuckmaker.com