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

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

常用鏈接

留言簿(34)

隨筆分類

隨筆檔案

文章檔案

相冊(cè)

收藏夾

搜索

  •  

最新評(píng)論

閱讀排行榜

評(píng)論排行榜

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) 評(píng)論(0)  編輯 收藏 引用

只有注冊(cè)用戶登錄后才能發(fā)表評(píng)論。
網(wǎng)站導(dǎo)航: 博客園   IT新聞   BlogJava   博問(wèn)   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>
            欧美精品aa| 国产精品美女xx| 免费毛片一区二区三区久久久| 99riav久久精品riav| 亚洲精品一区二区三区av| 亚洲国产日韩一级| 欧美激情1区2区| 亚洲国产精品t66y| 99精品国产一区二区青青牛奶| 一区二区三区国产盗摄| 亚洲欧美日韩国产成人精品影院 | 日韩亚洲在线观看| 国产偷国产偷精品高清尤物| 国产一区二区欧美| 最新国产成人在线观看| 亚洲在线不卡| 欧美大片在线观看| 一区二区三区高清在线| 欧美一区二区成人6969| 欧美mv日韩mv国产网站app| 欧美日韩一二三区| 国内在线观看一区二区三区| 亚洲免费观看视频| 久久久久se| 亚洲国产另类久久久精品极度| 亚洲视频在线播放| 欧美 日韩 国产 一区| 欧美视频中文字幕| 国精品一区二区| 亚洲精品影视在线观看| 欧美中文在线观看国产| 极品日韩久久| 亚洲一区二区三区四区在线观看| 久久午夜视频| 亚洲日本成人| 久久国产精品久久久久久| 欧美成人一区二区| 美日韩精品视频| 亚洲综合色网站| 亚洲精品综合精品自拍| 久久久国产精品亚洲一区| 另类酷文…触手系列精品集v1小说| 久久综合九色综合欧美狠狠| 在线午夜精品| 久久综合影音| 亚洲电影第1页| 一本久久知道综合久久| 日韩视频在线一区| 欧美在线免费播放| 欧美视频不卡中文| 亚洲成人资源| 国产一区二区0| 国产精品私房写真福利视频| 国语自产精品视频在线看8查询8| 欧美性色综合| 亚洲欧洲综合另类| 久久久91精品国产| 欧美在线观看视频| 国产精品国产一区二区 | 欧美成人一区二区三区在线观看| 国产精品嫩草99av在线| 亚洲午夜精品在线| 欧美激情网友自拍| 麻豆成人综合网| 国产在线视频不卡二| 久久精品91| 亚洲男同1069视频| 国产欧美一区二区三区在线看蜜臀| 久久国产精品久久久久久| 久久久91精品国产一区二区三区| 国产日韩精品一区二区三区 | 夜夜狂射影院欧美极品| 欧美日韩一区二区三区在线看 | 欧美片在线播放| 国产精品九色蝌蚪自拍| 亚洲国产一区二区三区高清| 欧美成人精品高清在线播放| 午夜精品久久久久久久白皮肤| 国产免费观看久久| 先锋影音一区二区三区| 午夜久久福利| 国产一区在线视频| 亚洲调教视频在线观看| 亚洲无线一线二线三线区别av| 欧美日韩国产在线| 欧美一区二区视频在线观看2020| 亚洲一级电影| 在线观看欧美一区| 欧美mv日韩mv国产网站| 欧美精品性视频| 亚洲无线视频| 欧美一区二区免费观在线| 国产午夜精品理论片a级大结局 | 国产精品户外野外| 久久久久久亚洲综合影院红桃 | 亚洲欧美视频一区| 国产亚洲va综合人人澡精品| 欧美伊人精品成人久久综合97 | 国产精品久久久免费| 亚洲欧美日韩成人高清在线一区| 一区二区高清视频在线观看| 国产精品一卡二| 麻豆91精品| 欧美激情亚洲一区| 亚洲精品国产品国语在线app| 亚洲一区二区视频在线观看| 亚洲二区视频| 亚洲日本视频| 欧美日韩国产一区二区三区地区| 久久精彩视频| 欧美精品久久99久久在免费线| 久久大香伊蕉在人线观看热2| 久久蜜桃精品| 久久成人久久爱| 女生裸体视频一区二区三区| 久久久久久久999精品视频| 免费不卡在线视频| 亚洲综合不卡| 久久久99久久精品女同性| 9l视频自拍蝌蚪9l视频成人| 中国av一区| 日韩午夜av电影| 欧美在线1区| 欧美在线观看视频在线| 欧美h视频在线| 在线欧美影院| 一区二区三区精品| 亚洲精品视频在线| 欧美在线日韩在线| 久久久久中文| 国产精品视频精品| 亚洲精品小视频在线观看| 亚洲高清在线| 蜜臀99久久精品久久久久久软件 | 免费的成人av| 一区二区三区视频免费在线观看| 日韩天堂在线观看| 亚洲七七久久综合桃花剧情介绍| 亚洲网站视频| 亚洲欧美国产精品va在线观看| 欧美在线观看一区二区| 亚洲欧美日韩国产中文| 欧美成人综合一区| 欧美电影免费观看大全| 国产一区二区精品久久| 免费看亚洲片| 亚洲人成在线观看一区二区| 亚洲美女电影在线| 欧美一区二区三区日韩视频| 99国产精品国产精品久久 | 欧美中文字幕视频| 亚洲三级视频| 亚洲激情视频在线| 久久免费高清视频| 美女黄毛**国产精品啪啪| 欧美视频四区| 久久性色av| 一区视频在线| 亚洲欧美日产图| 欧美一区二区在线| 欧美福利一区| 日韩午夜激情电影| 韩日视频一区| 亚洲一区免费在线观看| 亚洲精品护士| 久久久精品午夜少妇| 国产欧美日韩一级| 亚洲国产日韩精品| 狠狠色丁香婷婷综合久久片| 久久久青草青青国产亚洲免观| 亚洲欧美日韩精品久久久久 | 亚洲欧美在线一区| 中日韩美女免费视频网址在线观看 | 亚洲日本久久| 亚洲专区一区| 欧美激情一二区| 亚洲午夜激情网页| 99精品视频免费全部在线| 国产精品嫩草久久久久| 亚洲精品视频一区| 香港久久久电影| 欧美三区不卡| 久久久久久久尹人综合网亚洲| 欧美伊人久久久久久午夜久久久久| 国内精品免费在线观看| 亚洲在线日韩| 亚洲人成人一区二区三区| 日韩一级大片| 国内精品久久久久国产盗摄免费观看完整版 | 亚洲成色777777女色窝| 欧美日韩精品国产| 日韩午夜精品视频| 嫩草国产精品入口| 亚洲国产婷婷综合在线精品| 一本色道久久综合狠狠躁篇怎么玩| 久久精品国产91精品亚洲| 国产婷婷97碰碰久久人人蜜臀| 欧美日韩一区高清| 一区二区三区欧美在线观看| 亚洲高清色综合|