【Linux】Shell學習筆記之一——安裝配製

來源:互聯網
上載者:User

【Linux】Shell學習筆記之一——安裝配製 系統版本:CentOS 6.4 如何開啟命令視窗:應用程式》系統工具》終端 如何擷取root 許可權:在終端下,輸入su 再輸入密碼(密碼不顯示在螢幕上) 如何將英文版轉換成中文:[plain] [root@localhost ~]# echo 'LANG="zh_CN.UTF-8"' > /etc/sysconfig/i18n  [root@localhost ~]# init 6   如何使用中IME:yum groupinstall "Chinese support" -y 注消後可重新添加IME FlashPlayer的安裝: 1.開啟一個需要flashPlayer 的網頁。下載FlashPlayer (rpm 格式) 2.在終端開啟下載位置,輸入rpm -ivh + 下載的檔案名稱.rpm 3.重啟 附:之前嘗試網上其它方法總是不行,主要原因是在圖形介面root 許可權的問題。要求移動flashPlayer.so檔案,而許可權不夠。或gdm檔案修改不了。新手果然菜啊。。。 vi編輯器的安裝: [plain] yum -y install vim*   shells 的安裝:(CentOS6.4) sh yum.sh 其中yum.sh 指令碼如下: [plain] #!/bin/bash     mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.$(date +%F)_backup  cd /etc/yum.repos.d/  Ver=$(cat /etc/redhat-release |awk -F "." '{print $1}')  if [ "${Ver}" == "CentOS release 6" ]  then  wget http://mirrors.163.com/.help/CentOS6-Base-163.repo  else  wget http://mirrors.163.com/.help/CentOS5-Base-163.repo  fi  yum makecache  echo "##########################################"  echo "      The installation is complete        "  echo "##########################################"   

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.