青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

隨筆 - 298  文章 - 377  trackbacks - 0
<2025年11月>
2627282930311
2345678
9101112131415
16171819202122
23242526272829
30123456

常用鏈接

留言簿(34)

隨筆分類

隨筆檔案

文章檔案

相冊

收藏夾

搜索

  •  

最新評論

閱讀排行榜

評論排行榜

Debian-Installation-Configuration Lenny
If you have not installed gedit or vi, you can try to use nano!

You may come across the following problem when you restart your newly installed OS:
Starting MTA...
which will spend your many time!

How to speed the starting up, here is a way:
1. sudo gedit /etc/exim4/update-exim4.conf.conf
Change dc_minimaldns='false' to dc_minimaldns='true'
Then
2. sudo dpkg-reconfigure exim4-config
Say OK!



#### Connect to the Internet #############

If you can not have access to Internet, try this:
$ nano /etc/network/interfaces
then add this:

auto eth0
iface eth0 inet dhcp

and save, then reboot!

Remark: If you have succeeded in connection to the Internet, and have installed network-manager-gnome,
then you should uncomment the above two lines in /etc/network/interfaces


######  Configure the Sources of Software ########################


Add the following  sources to your /etc/apt/sources.list:

#ustc-debian
deb http://debian.ustc.edu.cn/debian lenny main non-free contrib
deb-src http://debian.ustc.edu.cn/debian lenny main non-free contrib
#ustc- Security updates
deb ftp://debian.ustc.edu.cn/debian-security lenny/updates main non-free contrib
deb-src ftp://debian.ustc.edu.cn/debian-security lenny/updates main non-free contrib
#ustc- Proposed updates
deb http://debian.ustc.edu.cn/debian lenny-proposed-updates main non-free contrib
deb-src http://debian.ustc.edu.cn/debian lenny-proposed-updates main non-free contrib


#sjtu
deb http://ftp.sjtu.edu.cn/debian lenny main contrib non-free
deb-src http://ftp.sjtu.edu.cn/debian lenny main contrib non-free
deb http://ftp.sjtu.edu.cn/debian-security/ lenny/updates main non-free contrib
deb-src http://ftp.sjtu.edu.cn/debian-security/ lenny/updates main non-free contrib

#163
deb http://mirrors.163.com/debian/ lenny    main contrib non-free
deb-src http://mirrors.163.com/debian/ lenny    main contrib non-free
deb http://mirrors.163.com/debian-backport/ lenny-backports main contrib non-free
deb-src http://mirrors.163.com/debian-backport/ lenny-backports main contrib non-free
deb http://mirrors.163.com/debian-security lenny/updates main contrib non-free
deb-src http://mirrors.163.com/debian-security lenny/updates main contrib non-free
deb http://mirrors.163.com/debian lenny-proposed-updates main contrib non-free
deb-src http://mirrors.163.com/debian lenny-proposed-updates main contrib non-free


deb http://www.lamaresh.net/apt sid main  #wine, this can provide the newest edition of #wine!


#multimedia
deb http://ftp.tw.debian.org/debian-multimedia/ lenny main
deb-src http://ftp.tw.debian.org/debian-multimedia/ lenny main
deb http://www.debian-multimedia.org lenny main

#deb http://ftp.jp.debian.org/debian/ lenny main non-free




When you use
sudo apt-get update
to refresh sources, you may get the error as:
 GPG error: ftp://debian.ustc.edu.cn unstable Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 07DC563D1F41B907
W: You may want to run apt-get update to correct these problems

the resolution is such as:
#  gpg --keyserver hkp://wwwkeys.eu.pgp.net --recv-keys EA8E8B2116BA136C
#  gpg --armor --export EA8E8B2116BA136C | apt-key add -

The other is:
#  gpg --keyserver hkp://wwwkeys.eu.pgp.net --recv-keys  07DC563D1F41B907
#  gpg --armor --export  07DC563D1F41B907 | apt-key add -

But for the pubkey of 905C75258D4B24D2 from http://www.lamaresh.net/apt/key.gpg, which is a wine source, you should do:
# wget -c http://www.lamaresh.net/apt/key.gpg
# apt-key add key.gpg


 If there is other PUBKEY need to add,  you can replace this EA8E8B2116BA136C to your PUBKEY

################## install desktops #########################
if you have only installed the basic text interface without any graphic desktop, do this:
$ sudo apt-get install x-window-system-core

Then type this if you want to use the light-weighted desktop--LXDE
$ sudo apt-get install lxde


If you want to get a bare minimum base install of X, do:
$ sudo aptitude install xorg

To install Xfce do the following:
$ sudo aptitude install xfce4

There are many useful utilities that come with XFCE, to install these do:

$ sudo aptitude install xfce4-goodies

You can use
$ sudo apt-get remove --purge xfce*
to uninstall xfce4
$ sudo apt-get install gnome-desktop-environment

Set up time automatically:
$ sudo apt-get install ntp

Install nm-applet again in case of the safe installation
$ sudo apt-get install network-manager-gnome

$ sudo apt-get install gdm-themes

##### Mount probable partitions automatically ###########################
You can use disk-manager to help you mount partitions, this is a easy way!
So you can install it like this:
$ sudo apt-get install disk-manager
Then start it like this:
$ sudo disk-manager

But if you want to mount partitions by yourself, do the following:
At first, install ntfs-3g
$ sudo apt-get install ntfs-3g

Then add the following to /etc/fstab
/dev/sda5 /media/repository ntfs-3g defaults 0 0
/dev/sda6 /media/backuplinux ext3 relatime 1 2
/dev/sda1 /media/spare-space ext3 relatime 1 2

And then

$ cd /media
$ sudo mkdir repository backuplinux spare-space

And what you need to do at last is type:
$ sudo mount -a
to check if it work well!


#### SCIM input and Chinese support  #######################

1. You need to choose zh_CN.UTF-8 for the support of Chinese, at the same time you should default the local to be en_US.UTF-8:
   sudo dpkg-reconfigure locales
2.
sudo apt-get install scim scim-pinyin ttf-wqy-zenhei xfonts-wqy

Then:
sudo gedit /etc/X11/Xsession.d/95xinput
add something like:

export XMODIFIERS=@im=SCIM
export GTK_IM_MODULE="scim"
export QT_IM_MODULE="scim"
scim -d

Then:
sudo chmod 755 /etc/X11/Xsession.d/95xinput

And last
restart your X-window
OK!

############ Install SCIM-Python Input Method ######################
Here is the steps, after you downloaded and unzipped the file http://blogimg.chinaunix.net/blog/upfile2/090218155038.gz
$ sudo apt-get install scim-dev
$ sudo apt-get install python-dev
$ sudo apt-get install python-enchant
$ sudo apt-get install python-gtk2-dev
$ sudo apt-get install libgtk2.0-dev
$ tar jxvf scim-python-${version}.tar.bz2
$ cd scim-python-${version}
$ ./configure --prefix=/usr
$ make                                       #this step needs more time, so be patient
$ sudo make install

After that, you can restart your X-window by Ctrl+Alt+Backspace, and log in again, then you will find the SCIM-Python!
If you need not want to use scim-pinyin any more, please uninstall it by:
sudo apt-get remove scim-pinyin

############### Install IE4LINUX #############################
1) sudo apt-get update
   sudo     apt-get install wine libxxf86dga1 libxxf86vm1 cabextract

2) Logout and login with a user account. Download and install IEs4Linux:

wget -c http://www.tatanka.com.br/ies4linux/downloads/ies4linux-latest.tar.gz
tar zxvf ies4linux-latest.tar.gz
cd ies4linux-*
./ies4linux --no-gui --install-corefonts



################# Install NVIDIA in Lenny #####################


Note: Please print these instructions. After step 6 you will be dropped to a shell and not longer be able to read this page.

   1. $ sudo apt-get install build-essential linux-headers-$(uname -r)
   2. $ cd /usr/src
   3. $ sudo ln -s linux-headers-$(uname -r) linux
   4. $ sudo wget -c http://us.download.nvidia.com/XFree86/Linux-x86/173.14.12/NVIDIA-Linux-x86-173.14.12-pkg1.run
   5. $ sudo /etc/init.d/gdm stop    (to stop gdm and drop to a terminal)
   6. # cd /usr/src && sh NVIDIA-Linux-x86-100.14.23-pkg1.run (to launch the nVidia installer script)

    * Accept the license agreement to continue
    * Select No on the first question prompting to download Kernel from nVidia
    * Click Ok to compile a new Kernel
    * Select No at the prompt to abort now
    * Let the installer finish the build
    * Select Yes to let nVidia-xconfig automatically update your xorg.conf file
    * Click Ok
    * Once the installer has completed, type startx and enjoy your new video hardware enabled Lenny with nVidia driver

You can change your resolution and other advanced video card settings via the nice NVIDIA X Server Settings control applet. Simply navigate to Applications-> System Tools -> NVIDIA X Server Settings

#######  Install Kile+LaTeX support, Openoffice ########################
sudo apt-get install kile kdvi kpdf scim-qtimm openoffice.org

If you can not start kile with your normal user account, that is you are not a root user, please check the permission of the directory $HOME/.kde, to encure that you are the owner of .kde, otherwise you can not start it unless in root role!

Way of changing the owner of $HOME/.kde:
sudo chown -Rf yourname:yourgroup $HOME/.kde

PATH configuration for TeXLive2008:
Put the following to the begining of $HOME/.bashrc:
MANPATH=$HOME/texlive/texmf/doc/man:$MANPATH
INFOPATH=$HOME/texlive/texmf/doc/info:$INFOPATH
PATH=$HOME/texlive/bin/i386-linux:$PATH
export MANPATH INFOPATH PATH

Then renew it by:
source .bashrc

Remark: If you have reinstalled the OS and do not want to reinstall TeXLive2008 again, you can move the former file folders of texlive2008 and .texlive2008 to the proper place of your new OS, usually this is in $HOME/, and you need not change their file permissions any more!

###### Mutilmedia configuration ################################3
sudo apt-get install libxine1-ffmpeg libxine1-all-plugins libxine1-plugins w32codecs libstdc++5

sudo apt-get install gstreamer0.10-ffmpeg gstreamer0.10-pitfdll gstreamer0.10-plugins-bad gstreamer0.10-plugins-ugly gstreamer0.10-esd

sudo apt-get install libdvdnav4 libdvdread3 libdvdcss

sudo apt-get remove totem-mozilla -y

sudo apt-get install smplayer smplayer-themes mozilla-mplayer libmatroska0

sudo apt-get install gstreamer0.10-fluendo-mpegdemux gstreamer0.10-gnonlin libasound2-plugins

sudo apt-get install audacious

sudo apt-get install audacious-plugins audacious-plugins-extra

Install Realplayer:
If you've downoaded the .deb package of realplayer in /media/repository/soft-linux, type
sudo apt-get install lsb && sudo dpkg -i *.deb


##### Tools for unzip and buiding ##################

sudo apt-get install build-essential autoconf automake cvs subversion
sudo apt-get install unrar p7zip-full cabextract
sudo apt-get install synaptic


################## FTP usage ########################
sudo apt-get install lftp vsftpd

Then:
gedit $HOME/.lftp/rc
the content is:
set    ftp:charset    GBK
set    file:charset    UTF-8

###### Change the appearance of Terminal ####################
1 change the title of Terminal
 Open a terminal, then Edit->Profile-> Default -> Edit -> Title and Command, then select the Dynamically-set title to be Isn't displayed

2 change the command-prompt
  $ gedit ~/.bashrc
And find and change:
else
    #PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
    PS1='[\t@\w]\$ '

############## Other configurations #####################
sudo apt-get install gnome-games
sudo apt-get install stardict
sudo apt-get install gthumb
sudo apt-get install pidgin



You can uninstall the exim4 and netatalk to speed the startup of OS:
sudo apt-get remove exim4
sudo apt-get remove netatalk


####### Some optimization after the above done! ##################
if you can not triggle Edit Menus, then check the Permissions of ~/.config/menus, if it's permission is root, then use:
sudo chown -Rf yourname:yourgroup /home/$HOME/.config/menus
and then try again!


posted on 2009-06-10 01:52 聶文龍 閱讀(605) 評論(0)  編輯 收藏 引用

只有注冊用戶登錄后才能發表評論。
網站導航: 博客園   IT新聞   BlogJava   博問   Chat2DB   管理


青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            久久久久国内| 欧美性淫爽ww久久久久无| 可以看av的网站久久看| 亚洲国产精品久久91精品| 亚洲人成网站在线观看播放| 久久久噜噜噜久久狠狠50岁| 欧美一区二区三区四区在线| 欧美在线不卡视频| 性欧美办公室18xxxxhd| 欧美一区二区三区免费视频| 久久精品视频免费| 久久久999精品| 久久综合伊人77777蜜臀| 久色成人在线| 亚洲日本成人女熟在线观看| 日韩一区二区精品视频| aa级大片欧美| 中文av字幕一区| 性欧美大战久久久久久久免费观看| 西瓜成人精品人成网站| 久久久久久欧美| 欧美成ee人免费视频| 欧美日韩久久| 国产精品久久久久av| 国语自产精品视频在线看8查询8 | 欧美韩国在线| 欧美日韩一区二区在线观看视频| 国产精品午夜在线观看| 精久久久久久久久久久| 一区二区三区久久久| 性亚洲最疯狂xxxx高清| 欧美成人精品在线视频| 中文日韩在线| 免费成人你懂的| 欧美色图麻豆| ●精品国产综合乱码久久久久| 亚洲精品在线视频| 久久精品欧洲| 99在线观看免费视频精品观看| 欧美一级淫片aaaaaaa视频| 欧美激情1区2区3区| 国产欧美一区二区精品仙草咪| 亚洲国产欧美日韩精品| 久久九九精品| 一区二区三区不卡视频在线观看| 美女久久一区| 国产日产高清欧美一区二区三区| 日韩午夜在线电影| 免费成人在线观看视频| 午夜精品视频在线| 欧美色视频一区| 亚洲第一区色| 蜜桃久久av| 久久精品官网| 国产亚洲欧美激情| 亚洲欧美综合网| 久久不射网站| 鲁鲁狠狠狠7777一区二区| 国产精品二区二区三区| 亚洲国产1区| 久久国产精品一区二区| 99精品欧美一区二区三区| 久久婷婷国产综合精品青草| 国产精品婷婷| 亚洲欧美国产日韩天堂区| 亚洲日本电影在线| 欧美成ee人免费视频| 亚洲国产精品电影在线观看| 久久久噜噜噜久噜久久| 欧美一区二区网站| 国产亚洲一区在线播放| 久久麻豆一区二区| 久久欧美中文字幕| 一区二区三区**美女毛片| 久久一日本道色综合久久| 国内久久精品视频| 久久精品国产免费观看| 午夜日韩在线| 国产一区二区三区日韩| 久久嫩草精品久久久精品| 久久国产手机看片| 亚洲高清视频一区二区| 亚洲国产高潮在线观看| 欧美人交a欧美精品| 亚洲视频香蕉人妖| 亚洲欧美日韩国产成人| 韩国一区二区在线观看| 欧美激情欧美激情在线五月| 欧美激情偷拍| 亚洲欧美日韩精品一区二区| 欧美在线观看日本一区| 亚洲国产精品成人va在线观看| 亚洲激情视频在线观看| 国产精品久久久久永久免费观看 | 久久久久一区二区三区四区| 久久视频一区| 亚洲少妇在线| 欧美一区二区成人| 最新国产拍偷乱拍精品 | 午夜欧美精品| 亚洲第一区色| 夜夜嗨av一区二区三区四区| 国产亚洲成av人在线观看导航| 欧美激情网友自拍| 国产酒店精品激情| 亚洲激情网站| 国产视频欧美| 91久久国产自产拍夜夜嗨| 国产精品女人网站| 亚洲第一在线| 国产日韩欧美自拍| 亚洲日本成人| 怡红院精品视频| 亚洲电影观看| 国产精品国产三级欧美二区| 欧美在线你懂的| 欧美激情导航| 久久人人爽人人爽| 欧美视频四区| 欧美激情麻豆| 黑人巨大精品欧美一区二区| 91久久精品美女| 国产专区欧美精品| 亚洲深夜福利网站| 亚洲三级视频| 久久影院午夜论| 久久国产日本精品| 国产精品美女xx| 亚洲第一主播视频| 国内自拍视频一区二区三区 | 亚洲国产aⅴ天堂久久| 亚洲欧美日韩综合国产aⅴ| 亚洲精品一区二区三区福利| 欧美一区二区三区免费视| 亚洲专区国产精品| 欧美三日本三级少妇三2023| 亚洲电影自拍| 在线日本成人| 欧美在线国产| 久久成人资源| 欧美日韩一区三区| 欧美呦呦网站| 宅男精品视频| 欧美freesex交免费视频| 性感少妇一区| 国产精品黄视频| 一区二区三区 在线观看视频| 亚洲日本激情| 欧美寡妇偷汉性猛交| 久久综合久色欧美综合狠狠| 国产婷婷色一区二区三区在线| 亚洲伊人观看| 性亚洲最疯狂xxxx高清| 国产精品久久久免费| 中文一区二区| 国产精品99久久久久久人| 欧美人牲a欧美精品| 日韩亚洲欧美一区| 欧美亚洲午夜视频在线观看| 国产精品裸体一区二区三区| 亚洲国产天堂久久国产91| 最新国产精品拍自在线播放| 久久影院午夜论| 欧美国产日本| 亚洲欧洲在线视频| 欧美成人午夜| 亚洲激情一区| 亚洲午夜精品久久| 国产精品每日更新| 亚洲综合丁香| 久久久另类综合| 亚洲欧洲日产国产网站| 欧美高清在线视频| 久久久久久一区| 亚洲电影第1页| 乱中年女人伦av一区二区| 欧美激情一区二区三区| 一本久久综合| 一区二区不卡在线视频 午夜欧美不卡'| 国内自拍视频一区二区三区 | 久久亚洲欧美国产精品乐播| 一区二区亚洲精品| 欧美国产精品| 香蕉久久夜色| 亚洲国产欧美一区二区三区久久 | 一区二区三区四区五区在线| 国产女优一区| 久久一区亚洲| 一本色道久久综合亚洲精品按摩| 午夜免费日韩视频| 欧美成人精品| 欧美视频1区| 性欧美1819性猛交| 美女主播一区| 一区二区欧美国产| 国产欧美一区二区三区另类精品| 久久久视频精品| 亚洲美女福利视频网站| 久久精品国产亚洲高清剧情介绍| 亚洲国产免费|