歡迎您光臨本站 註冊首頁

Linux裝機經驗與軟體下載

←手機掃碼閱讀     火星人 @ 2014-03-09 , reply:0

Linux裝機經驗與軟體下載

引自:http://blog.chinaunix.net/u/22778/showart.php?id=154820

轉載:http://my.opera.com/oversampling/blog/show.dml/252609 安裝時我修改了一些沒有必要的地方.用紅色標註.

1.首先使用pq一類的分區工具把整個分成一個區,然後刪除掉.或者在安裝的時候一個一個分區的刪除.
2.對於40G的硬碟
boot 300M #要激活,就是那個小閃電!
3G
usr 6G
var 1G #sudo apt-get clean and sudo apt-get autoclean 可以考慮再大點
opt 12G
home 16.7G
swap 1G

這之後就可以安裝了.安裝過程傻瓜化的.建議選擇中文.這樣就不用下文所示的那些選擇中文字體之類操作了.
3.修改你的源,並升級到最新的系統:
sudo gedit /etc/apt/sources.list

deb http://ubuntu.cn99.com/ubuntu/ breezy main restricted universe multiverse
deb http://ubuntu.cn99.com/ubuntu/ breezy-updates main restricted universe multiverse
deb http://ubuntu.cn99.com/ubuntu/ breezy-security main restricted universe multiverse
deb http://ubuntu.cn99.com/ubuntu/ breezy-backports main restricted universe multiverse
deb http://ubuntu.cn99.com/ubuntu-cn/ breezy main restricted universe multiverse
deb http://ubuntu.cn99.com/backports/ breezy-extras main restricted universe multiverse
這個源比較快,但是可能會有些舊,建議用這個,如果有安裝不成功的軟體,再用下面的源試試.


or
sudo cp /etc/apt/sources.list /etc/apt/sources.list_backup
sudo gedit /etc/apt/sources.list

deb http://us.archive.ubuntu.com/ubuntu breezy main restricted
deb-src http://us.archive.ubuntu.com/ubuntu breezy main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://us.archive.ubuntu.com/ubuntu breezy-updates main restricted
deb-src http://us.archive.ubuntu.com/ubuntu breezy-updates main restricted

## Uncomment the following two lines to add software from the 'universe'
## repository.
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## universe WILL NOT receive any review or updates from the Ubuntu security
## team.
deb http://us.archive.ubuntu.com/ubuntu breezy universe
deb-src http://us.archive.ubuntu.com/ubuntu breezy universe

## Uncomment the following two lines to add software from the 'backports'
## repository.
## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://us.archive.ubuntu.com/ubuntu breezy-backports main restricted universe multiverse
deb-src http://us.archive.ubuntu.com/ubuntu breezy-backports main restricted universe multiverse

deb http://security.ubuntu.com/ubuntu breezy-security main restricted


deb-src http://security.ubuntu.com/ubuntu breezy-security main restricted

deb http://security.ubuntu.com/ubuntu breezy-security universe
deb-src http://security.ubuntu.com/ubuntu breezy-security universe

deb http://archive.ubuntu.com/ubuntu breezy multiverse
deb-src http://archive.ubuntu.com/ubuntu breezy multiverse

## Backports
deb http://archive.ubuntu.com/ubuntu breezy-backports main restricted universe multiverse
deb http://ubuntu-backports.mirrormax.net/ breezy-extras main restricted universe multiverse

工大的源,這個不要錢.
deb http://172.23.79.23/download/ubuntu/ubuntu breezy main restricted universe multiverse
deb http://172.23.79.23/download/ubuntu/ubuntu breezy-security main restricted universe multiverse
deb http://172.23.79.23/download/ubuntu/ubuntu breezy-updates main restricted universe multiverse
deb http://172.23.79.23/download/ubuntu/ubuntu breezy-backports main restricted universe multiverse
deb http://172.23.79.23/download/ubuntu/ubuntu-cn breezy main universe multiverse restricted

4.系統升級(如果出現需要輸入[Y/n] 或 [y/N] 一律輸入 y 並 回車):
sudo apt-get update
sudo apt-get dist-upgrade 作用
sudo apt-get upgrade 作用
5.設置本地local環境:
sudo dpkg-reconfigure locales
確保 zh_CN.UTF-8 被選擇,同時也默認local為 zh_CN.UTF-8
zh_CN.GBK,zh_CN.GB18030 zh_CN(GB2312)
6.根據你安裝的系統來選擇安裝的中文支持環境
安裝中文語言支持(Ubuntu):
sudo apt-get install language-pack-gnome-zh language-pack-gnome-zh-base language-pack-zh language-pack-zh-base language-support-zh


7.安裝中文字體
sudo apt-get install ttf-arphic-ukai ttf-arphic-uming
8.使用圓體來美化,支持中文粗體和斜體
字體文件壓縮包 VeraSansYuanTi.tar.gz
使用如下命令解壓縮:
tar -xzvf VeraSansYuanTi.tar.gz
將 VeraSansYuanTi 目錄移動到字體文件夾
sudo mv VeraSansYuanTi /usr/share/fonts/
刷新字體緩存
sudo fc-cache -f
備份現有的 fonts.conf
sudo cp /etc/fonts/fonts.conf /etc/fonts/fonts.conf.old
使用新的 fonts.conf
sudo cp /usr/share/fonts/VeraSansYuanTi/fonts.conf /etc/fonts/
重啟X
同時按住 Ctrl Alt 退格鍵 重啟 X . 完成美化.

偶一向喜歡偷懶.安裝過程中選擇了系統語言為中文,於是5,6,7,8統統不用了.^_^,偷懶的感覺就是好啊.安裝后一看,感覺不錯.
9.安裝輸入法,你可以在SCIM和fcitx輸入法中任選一種安裝
sudo apt-get install scim scim-modules-socket scim-modules-table scim-pinyin scim-tables-zh scim-input-pad
sudo sh -c " echo 'export XMODIFIERS=@im=SCIM ; export GTK_IM_MODULE="scim" ; scim -d ' > /etc/X11/Xsession.d/95xinput "
sudo chmod 755 /etc/X11/Xsession.d/95xinput
10.設置LC_ALL和其它屬性:
sudo gedit /etc/environment
在編輯器里,將內容修改如下(默認使用中文界面):

LANGUAGE="zh_CN:zh:en_US:en"
LC_CTYPE=zh_CN.UTF-8
LANG=zh_CN.UTF-8
GST_ID3_TAG_ENCODING=GBK
保存,關閉編輯器

好了,註銷一下電腦.(系統 -> 註銷 -> 註銷) 這時候,輸入法 (按 Ctrl 空格 鍵激活輸入法) 都應該可以使用了,並且整個界面都是中文的了.

這個10也是沒有必要的.原因嗎?偶偷懶了:)
11.安裝JAVA環境
sudo apt-get install sun-j2re1.5
sudo ln -sf /usr/lib/j2re1.5-sun/bin/java /usr/bin/java #這一步新設置中沒有,沒有這一步,qq不能用


重啟 Mozilla Firefox
12.安裝QQ
wget -c http://download.ubuntu.org.cn/software/lumaqq_2005-linux_gtk2_x86_no_jre.tar.gz
sudo tar zxvf lumaqq_2005-linux_gtk2_x86_no_jre.tar.gz -C /opt/
wget -c http://download.ubuntu.org.cn/software/lumaqq_2005_patch_2006.01.30.02.00.zip
sudo unzip -o lumaqq_2005_patch_2006.01.30.02.00.zip -d /opt/LumaQQ/lib
sudo chown -R root:root /opt/LumaQQ/
sudo chmod -R 755 /opt/LumaQQ/
sudo gedit /usr/share/applications/LumaQQ.desktop

# 在新增的文件內加入下面這幾行

[Desktop Entry]
Name=LumaQQ
Comment=QQ Client
Exec=/opt/LumaQQ/lumaqq
Icon=/opt/LumaQQ/QQ.png
Terminal=false
Type=Application
Categories=Application;Network;

# 保存編輯過的文件

安裝完成後的快捷方式在(應用程序 -> internat -> LumaQQ)

目前為止,瀏覽器還沒有什麼問題,插件盡量不要裝
13.安裝更好的多媒體播放驅動
sudo apt-get install beep-media-player totem-xine w32codecs gstreamer0.8-plugins
14.安裝英漢辭典
sudo apt-get install stardict stardict-common stardict-cdict-gb stardict-cedict-gb stardict-hanzim stardict-langdao-ce-gb stardict-langdao-ec-gb stardict-oxford-gb stardict-xdict-ce-gb stardict-xdict-ec-gb

stardict真是個好東東啊.我跑到網站(http://stardict.sourceforge.net/)上把金山詞霸的幾個重要的辭典都下載了.^_^,比金山詞霸好用多了.還有就是dr.exe的那個4合1也下了.上面的命令下載了一下基本的辭典,朗道中英/英中辭典以及牛津辭典.
15.安裝瀏覽器的Flash支持
sudo apt-get install flashplayer-mozilla #擔心瀏覽器會出問題,沒有安裝
16.安裝bt軟體
sudo apt-get install azureus #覺得沒有用,沒有安裝
17.高級設置:



升級你的內核,讓系統更快. 如果你的電腦是Intel晶元,則用如下命令:
sudo apt-get install linux-686
18.安裝 FTP 客戶端 (gFTP)和lftp
sudo apt-get install gftp
sudo apt-get install lftp
http://172.25.69.221:8080/sosow/index.asp
如何在gFTP下可以瀏覽中文ftp
/home/用戶名/.gftp(這是個隱藏文件夾,需要選擇顯示隱藏文件才可以看到)下找到這個文件gftprc
然後找到 remote_charsets這一項,改稱GB2312(如果沒有這項就直接添加)
如:# 這是用逗號分隔的字符集列表,gFTP
# 會使用這些字符集將遠程信息轉換為當前語系.
remote_charsets=GB2312

如何在lftp下可以瀏覽中文
在/etc/lftp.conf里加上
set ftp:charset "gbk"
set file:charset "UTF-8"

下面給出一些lftp常用命令
如何設定重新登錄時間
set net:reconnect-interval-base 30 //初始值
set net:reconnect-interval-max 600 //最大值
set net:reconnect-interval-multiplier 1.5 //遞增倍數
輸入lftp,輸入help(help get)
退出 exit
get文件全明
瀏覽ls
進入目錄cd
在/home/sybase2008下gedit .lftprc
加入debug 3保存,這樣就可以在登錄的時候顯示歡迎信息
埠號:lftp ftp://username:code@*.*.*.*:8080
下載目錄 用mirror代替get
-c可以續傳
如果目錄有空格,就用空格來代替
172.21.12.172 pr pr301 2121



19.安裝多媒體 Codecs (解碼/編碼器)
sudo apt-get install gstreamer0.8-ffmpeg
sudo apt-get install lame
sudo apt-get install sox
sudo apt-get install ffmpeg
sudo apt-get install mjpegtools
sudo apt-get install vorbis-tools
gst-register-0.8
wget -c http://linux.edu.lv/wiki/uploads/codecs.tar.gz #下載不了
#It seems that the link above is invalid now
tar zxvf kodeki.tar.gz
sudo sh ./install.sh

20.安裝硬碟分區編輯軟體 (GParted)


sudo apt-get install gparted

21.安裝 RAR 壓縮/解壓縮程序 (rar)
sudo apt-get install rar
sudo ln -fs /usr/bin/rar /usr/bin/unrar

22.安裝基本的編譯工具 (build-essential)
sudo apt-get install build-essential
沒有用過

23.安裝CrossOver Office
sudo apt-get install crossover-pro
安裝caj的時候,圖書館的下載不了,到期刊網找5.5版本,下載到/tmp,然後默認安裝,要重新啟動,如果從crossover安裝也可以,選擇安裝不支持的軟體,到/tmp目錄找到這個exe文件

24.proftpd
安裝 FTP 服務來提供文件傳輸服務
sudo apt-get install proftpd
standalone
將 FTP 伺服器設置成允許匿名 FTP 用戶讀寫
sudo cp /etc/proftpd.conf /etc/proftpd.conf_backup
sudo gedit /etc/proftpd.conf

在文件末尾添加下列幾行

<Anonymous ~ftp>
User ftp
Group nogroup
UserAlias anonymous ftp
DirFakeUser on ftp
DirFakeGroup on ftp
RequireValidShell off
MaxClients 10
DisplayLogin welcome.msg
DisplayFirstChdir .message
</Anonymous>

sudo /etc/init.d/proftpd restart
開啟關閉只需執行:
/etc/init.d/proftpd start
/etc/init.d/proftpd stop

修改 FTP 伺服器的預設埠號
sudo cp /etc/proftpd.conf /etc/proftpd.conf_backup
sudo gedit /etc/proftpd.conf
找到下列行

Port 21
sudo /etc/init.d/proftpd restart

25.中文pdf
下載AdbeRdr701_linux_chs.tar.gz
http://ardownload.adobe.com/pub/adobe/reader/unix/7x/7.0/chs/AdbeRdr701_linux_chs.tar.gz
tar zxvf AdbeRdr701_linux_chs.tar.gz
sudo mkdir -p usr/bin usr/local/Adobe/Acrobat7.0 usr/share/applications/ usr/share/pixmaps/
sudo tar -C usr/local/Adobe/Acrobat7.0 -xvf AdobeReader/COMMON.TAR
sudo tar -C usr/local/Adobe/Acrobat7.0 -xvf AdobeReader/ILINXR.TAR
sudo ln -s /usr/local/Adobe/Acrobat7.0/bin/acroread usr/bin/acroread
sudo ln -s /usr/local/Adobe/Acrobat7.0/Resource/Icons/AdobeReader.png usr/share/pixmaps/AdobeReader.png


sudo gedit usr/share/applications/AdobeReader.desktop

代碼:
[Desktop Entry]
Encoding=UTF-8
Name=Adobe Reader
MimeType=application/pdf;
Exec=acroread
Type=Application
DocPath=
GenericName=PDF Viewer
GenericName[da]=PDF-fremviser
GenericName[de]=PDF-Betrachter
GenericName[es]=Visor de documentos PDF
GenericName[fi]=PDF-Näyttäjä
GenericName[fr]=Afficheur PDF
GenericName[it]=Visualizzatore PDF
GenericName[ja]=PDFビューア
GenericName[ko]=PDF 보기
GenericName[nl]=PDF-weergaveprogramma
GenericName[nn]=PDF-lesar
GenericName[pt_BR]=Visualizador de arquivos PDF
GenericName[sv]=PDF-visare
GenericName[zh_CN]=PDF 查看器
GenericName[zh_TW]=PDF 檢視程式
Terminal=false
Icon=AdobeReader.png
Caption=PDF Viewer
X-KDE-StartupNotify=false

Categories=Application;Office;Viewer;
Name[de]=Adobe Reader
Name[de]=Adobe Reader
Name[es]=Adobe Reader
Name[fi]=Adobe Reader
Name[fr]=Adobe Reader
Name[it]=Adobe Reader
Name[ja]=Adobe Reader
Name[ko]=Adobe Reader
Name[nl]=Adobe Reader
Name[nn]=Adobe Reader
Name[pt_BR]=Adobe Reader
Name[sv]=Adobe Reader
Name[zh_CN]=Adobe Reader
Name[zh_TW]=Adobe Reader
Name[nb_no]=Adobe Reader
GenericName[nb_no]=PDF-visning
InitialPreference=7


sudo tar zcvf AdobeReader_chs-7.0.1.tgz ./usr
sudo apt-get install alien
sudo alien -k AdobeReader_chs-7.0.1.tgz

安裝:
sudo apt-get install adobereader-chs

啟動會提示PPKLite.api初始化失敗,沒有好的辦法,屏蔽之:
sudo chmod -x /usr/local/Adobe/Acrobat7.0/Reader/intellinux/plug_ins/PPKLite.api

26.中文亂碼的解決辦法
如果下載了文件是亂碼
sudo apt-get install convmv
man convmv (q 退出)

建議使用這個命令
sudo convmv -f cp936 -t utf8 -r --nosmart --notest convert/
下面為參參考:
convmv -r -f gb2312 -t utf-8 /目錄 --notest
convmv -f zh_CN.GB2312 -t UTF-8 -r --notest filenames更改


cp936應該只包括中文 GBK編碼的漢字,如果是GB18030可能就無能為力了
convmv 加一個參數 --nosmart,convmv 默認只是測試,不實際改文件名,要實際改文件名要再加參數 --notest

如果光碟中的中文顯示為亂碼
sudo gedit /etc/fstab
註釋掉一行
加上/dev/hdc /media/cdrom0 udf,iso9660 user,noauto,iocharset=utf8 0 0
保存即可

27.安裝中文tetex
sudo gedit /etc/apt/sources.list中增加一行
deb http://debian.ustc.edu.cn/debian-uo/ sid marillat rareware misc ustc
再sudo apt-get update ,部分軟體只有ustc的uo源中才有.
sudo apt-get install tetex-base
sudo apt-get install tetex-bin
sudo apt-get install tetex-extra 這些是tex的基本系統
sudo apt-get install cjk-latex
sudo apt-get install dvipdfm-cjk 支持中日韓語言所需的
sudo apt-get install dvipdfmx 生成的pdf不內嵌字體,文件會小很多,具體參看dvipdfmx的readme
sudo apt-get install gbkfonts 轉換simsun.ttf字體的軟體 (ustc的uo源才有)
sudo apt-get install texmf-zh 自動安裝中文字體,並在tex系統中添加一個文件夾來放中文字體(uo源才有)
sudo apt-get install latex-beamer 幻燈片工具
sudo apt-get install freetype1-tools
sudo apt-get install libttf2 這是TrueType 和 Type1字體的一些轉換工具和相關的編碼文件,如果用dvipdfmx則需要安裝.(這兩個應該已經被關聯上了)

simsun.ttf,simfang.ttf,simkai.ttf,simli.ttf,simyou.ttf,simhei.ttf常見的宋體,仿宋,楷體,隸書,幼圓,黑體ttf文件,放在/usr/share/fonts/truetype/ 中
注意simsun.ttf不能用simsun.ttc代替,否則可能編譯出錯.
sudo cp *.* /usr/share/fonts/truetype/

sudo install-gbkfonts /usr/share/fonts/truetype/simsun.ttf song
sudo install-gbkfonts /usr/share/fonts/truetype/simfang.ttf fang
sudo install-gbkfonts /usr/share/fonts/truetype/simkai.ttf kai


sudo install-gbkfonts /usr/share/fonts/truetype/simli.ttf li
sudo install-gbkfonts /usr/share/fonts/truetype/simyou.ttf you
sudo install-gbkfonts /usr/share/fonts/truetype/simhei.ttf hei

安裝完的字體可以在/usr/share/texmf-zh/ 中找到.
其它的想用到的字體,可以同樣安裝.
刪除使用命令
sudo remove-gbkfonts song

為了生成的pdf中的中文可以copy,可以搜索中文,中文書籤不是亂碼,可以用dvipdfmx編譯latex生成的dvi文件.
使用dvipdfmx的方法如下:
sudo apt-get install cmap-adobe-gb1 如果有繁體還要cmap-adobe-cns1
sudo apt-get install gs-cjk-resource
sudo gedit /etc/texmf/texmf.d/50dvipdfmx.cnf,將第二行的註釋拿掉,
sudo update-texmf
sudo mktexlsr 刷新一次資料庫吧

用 ubuntu 的話,盡量不要混用 debian 的源,尤其是庫,它們不是二進位可兼容的.ubuntu 的 tetex 實在太舊了,建議 ubuntu 用戶用 texlive2005!

sudo apt-get install imagemagick
sudo convert infile.jpg outfile.eps

測試
sudo gedit test.tex
粘貼並保存 ,保存為gb2312格式
documentclass{article}
usepackage{CJK}
begin{document}
begin{CJK*}{GBK}{song}
你好Latex
end{CJK*}
end{document}
保存為GB2312,utf8為亂碼
sudo latex test.tex
xdvi test.dvi 查看
sudo dvipdfmx test.dvi 生成pdf
acroread test.pdf

把那個源去掉!
sudo gedit /etc/apt/sources.list中增加一行
deb http://debian.ustc.edu.cn/debian-uo/ sid marillat rareware misc ustc 去掉這一行

28.matlab的安裝sp3
拷貝第一張盤的iso文件,第二張盤和第三張盤的普通文件到硬碟
建立目錄cd1
sudo modprobe loop
sudo mount m14sp3ua.iso /home/sybase2008/1/cd1/ -t iso9660 -o loop
#sudo umount home/sybase2008/1/cd1/ 不要忘記卸載
建立目錄/opt/matlab(chmod 777)
sudo chmod 777 /lib/libc.so.6 如果不更改屬性,會有一個警告


把license.dat拷貝到主文件夾下
在目錄/opt/matlab下運行
sudo cp /home/sybase2008/license.dat /opt/matlab

在該目錄下運行
sudo /home/sybase2008/1/cd1/install
然後用install_matlab進行設置,基本上回車就可以

29.安裝 Email 客戶端程序 (Mozilla Thunderbird)
sudo apt-get install mozilla-thunderbird

30.安裝超星文件閱讀器
下載linux版本的booxviewer.
網址:http://www.linuxfans.org/nuke/modules.php?name=Forums&file=viewtopic&t=138982
http://www.magiclinux.org/people/kanker/tools/bxviewer.tar.gz

tar zxvf bxviewer.tar.gz
sudo ./download/bxviewer/installbxv
提示
Welcome to the install script of BooX Viewer!
Install for /bin/bash...
installation complete!
logout, and login again
type "bxv" or "bxv filename.pdg" to start the program!
回到當前用戶所在目錄,輸入命令:  
sudo gedit .bash_profile  
在此文件的加上:  
export LD_LIBRARY_PATH=${installdir}
export PATH=$PATH:${installdir}  

其中${installdir}為你所下載的BooX Viewer軟體解壓后所在目錄,即bxv和libborqt-6.9.0-qt2.3.so所在目錄.  

不 過我試了半天也沒調好,不知道是應該將${installdir}替換為安裝路徑,還是將installdir替換為安裝路徑.後來,將 libborqt-6.9.0-qt2.3.so拷貝到/usr/lib目錄下sudo cp libborqt-6.9.0-qt2.3.so /usr/lib.進入bxviewer目錄,輸入./bxv,終於成功了.

31.音頻格式轉換工具
sudo apt-get install ffmpeg
19步已經安裝了
使用例如:
sudo ffmpeg -i 1.mp3 1.wav

32.安裝DVD:rip
安裝 DVD 播放功能
wget -c http://download.videolan.org/pub/libdvdcss/1.2.9/deb/libdvdcss2_1.2.9-1_i386.deb
sudo dpkg -i libdvdcss2_1.2.9-1_i386.deb

安裝多媒體播放器 (MPlayer) 和相應的Mozilla FireFox 插件


sudo apt-get install mplayer-386
sudo apt-get install mplayer-fonts
sudo apt-get install mozilla-mplayer
sudo cp /etc/mplayer/mplayer.conf /etc/mplayer/mplayer.conf_backup
sudo gedit /etc/mplayer/mplayer.conf

Find this line
找到這一行
vo=x11, # To specify default video driver (see -vo help for
用下一行代替

vo=xv, # To specify default video driver (see -vo help for
保存編輯好的文件

sudo apt-get install dvdrip
sudo apt-get install vcdimager
sudo apt-get install cdrdao
sudo apt-get install subtitleripper
sudo ln -fs /usr/bin/rar /usr/bin/rar-2.80
sudo gedit /usr/share/applications/dvdrip.desktop
{{{
* Insert the following lines into the new file [[BR]]將下列語句插入新文件
{{{
[Desktop Entry]
Name=dvd::rip
Comment=dvd::rip
Exec=dvdrip
Icon=/usr/share/perl5/Video/DVDRip/icon.xpm
Terminal=false
Type=Application
Categories=Application;AudioVideo;

保存編輯好的文件

GRV1(PUB)上的密碼已經改為
2vd3azw2

33.安裝 Compiled HTML Help (CHM) 查看器 (xCHM) chmsee千萬不要安裝,切記
sudo apt-get install xchm
Applications -> Graphics -> xCHM
應用程序 -> 圖像 -> xCHM

34.Xpdf中文
sudo apt-get install xpdf-chinese-simplified

35.看ps文件
sudo apt-get install kghostview

好多東東啊.有選擇的安裝幾個就好了.不要貪多:)


[火星人 ] Linux裝機經驗與軟體下載已經有850次圍觀

http://coctec.com/docs/linux/show-post-57448.html