阿里雲ubuntu 12.04 64位系統java環境配置詳解

來源:互聯網
上載者:User

系統版本:ubuntu 12.04 64位

ssh連結的伺服器(使用終端遠程連結):

    ssh -l username IP地址

如果出現類似如下錯誤:
        @    WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!     @

表示host檔案中記錄的上次登陸資訊和當前資訊不匹配。在用戶端執行:
        mv ~/.ssh/known_hosts /tmp

再次登陸,提示是否繼續連結時輸入yes即可。

添加使用者

1:使用adduser命令:
    sudo adduser username
    adduser會自動建立使用者目錄和shell,並且自動建立分組等。

2:使用useradd

    它會添加這個使用者名稱,並建立和使用者名稱相同的組名,但它並不在/home目錄下建立基於使用者名稱的目錄,也不提示建立新的密碼。

給使用者賦予執行sudo許可權

當新使用者執行sudo提示“xxx is not in the sudoers file. This incident will be reported.”也就是你的使用者名稱沒有許可權使用sudo,只要修改一下/etc/sudoers檔案就行了。

   1)進入超級使用者模式。輸入"su -"
        su - 
    2)添加檔案的寫入權限。輸入命令:
        chmod u+w /etc/sudoers
    3)編輯/etc/sudoers檔案。輸入命令:
        vim /etc/sudoers
        進入編輯模式,找到這一行:
        root ALL=(ALL) ALL
        在它的下面添加:
        username ALL=(ALL) ALL #可以從上一行複製,避免打錯,打錯會出現:沒有許可權執行命令一類的提示。
然後儲存退出。
 
要撤銷檔案的寫入權限。可以輸入命令:

        chmod u-w /etc/sudoers

軟體安裝

linux安裝軟體有多種方法,如果對系統配置不是很熟練,則推薦通過deb包或軟體源來安裝。
1: 安裝deb包
    dpkg -i debName.deb
2:通過軟體源安裝
    ubuntu軟體源設定檔位置:/etc/apt/sources.list
    ubuntu源列表:http://wiki.ubuntu.org.cn/源列表
    更新前注意備份
        sudo cp /etc/apt/sources.list /etc/apt/sources.list_backup
    更新軟體源時,要注意源所對應的系統版本,不同版本可能有細微差別。詳見http://wiki.ubuntu.org.cn/源列表。另外,如果速度可以接受,還是盡量使用歐洲官方源或中國官方源,最好不要隨意更換源列別,免得軟體依賴等一團糟。
    中國官方源(由搜狐維護,和搜狐源是一個),此版本可用於12.04
deb http://cn.archive.ubuntu.com/ubuntu/ precise main restricted universe multiverse
deb http://cn.archive.ubuntu.com/ubuntu/ precise-security main restricted universe multiverse
deb http://cn.archive.ubuntu.com/ubuntu/ precise-updates main restricted universe multiverse
deb http://cn.archive.ubuntu.com/ubuntu/ precise-proposed main restricted universe multiverse
deb http://cn.archive.ubuntu.com/ubuntu/ precise-backports main restricted universe multiverse
deb-src http://cn.archive.ubuntu.com/ubuntu/ precise main restricted universe multiverse
deb-src http://cn.archive.ubuntu.com/ubuntu/ precise-security main restricted universe multiverse
deb-src http://cn.archive.ubuntu.com/ubuntu/ precise-updates main restricted universe multiverse
deb-src http://cn.archive.ubuntu.com/ubuntu/ precise-proposed main restricted universe multiverse
deb-src http://cn.archive.ubuntu.com/ubuntu/ precise-backports main restricted universe multiverse

更新後一定要重新整理源列表
        sudo apt-get update
 
        至於安裝,使用apt-get命令即可,請自行google
連結到伺服器ftp
    一般ubuntu的sftp會預設開啟,日常使用完全夠用,也不需要配置。關於sftp的配置請自行搜尋。
    關於用戶端,linux上推薦File Zilla,Mac推薦yummy FTP。
分區和格式化

1、查看資料盤

在沒有分區和格式化資料盤之前,使用 “df –h”命令,是無法看到資料盤的,可以使用“fdisk -l”命令查看。如下圖:

2、 對資料盤進行分區

執行“fdisk -S 56 /dev/xvdb”命令,對資料盤進行分區;
根據提示,依次輸入“n”,“p”“1”,兩次斷行符號,“wq”,分區就開始了,很快就會完成。

3、 查看新的分區

使用“fdisk -l”命令可以看到,新的分區xvdb1已經建立完成了。

 4、格式化新分區

使用“mkfs.ext3 /dev/xvdb1”命令對新分區進行格式化,格式化的時間根據硬碟大小有所不同。
(也可自主決定選用其它檔案格式,如ext4等)

 5、添加分區資訊

使用“echo '/dev/xvdb1  /mnt ext3    defaults    0  0' >> /etc/fstab”(不含引號)命令寫入新分區資訊。
然後使用“cat /etc/fstab”命令查看,出現以下資訊就表示寫入成功。
註:ubuntu12.04不支援barrier,所以正確寫法是:echo '/dev/xvdb1  /mnt ext3    barrier=0  0  0' >> /etc/fstab
*  如果需要把資料盤單獨掛載到某個檔案夾,比如單獨用來存放網頁,可以修改以上命令中的/mnt部分

6、掛載新分區

使用“mount -a”命令掛載新分區,然後用“df -h”命令查看,出現以下資訊就說明掛載成功,可以開始使用新的分區了。

java和mysql環境安裝:

    安裝java(6b27-1.12.6-1ubuntu0.12.04.2)
        apt-get install openjdk-6-jre-headless
    安裝mysql(mysql-server-5.5)
        apt-get install mysql-server
linux常用命令:
1: 查看檔案夾大小:尤其注意記錄檔夾,不要因為日誌寫滿磁碟造成系統拒絕服務
    du -sh [路徑]
2: 拷貝檔案夾並複製許可權:備份資料千萬記得拷貝許可權,否則恢複後可能造成相關服務無權讀寫
    cp -rp [原] [目標]

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.