国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

ubuntu14.04配置開發環境

weizx / 1467人閱讀

摘要:配置開發環境說明每次在虛擬機重裝都要重新配置一遍開發環境略繁瑣整理個配置文檔記錄如下本文檔以為基準其他版本可能略有差異會同步更新等比較完善后考慮寫成腳本自動化配置初始化設置桌面環境設置選項更改設置語言設置分辨率設置輸入法設置內存磁盤等更改密

ubuntu14.04配置開發環境

說明:

1.每次在虛擬機重裝ubuntu,都要重新配置一遍開發環境.略繁瑣,整理個配置文檔記錄如下.

2.本文檔以ubuntu 14.04 為基準,其他版本可能略有差異.

3.會同步更新,等比較完善后.考慮寫成shell腳本,自動化配置.

0. 初始化設置 0.1 桌面環境設置選項更改
bash1. 設置語言
2. 設置分辨率
3. 設置輸入法
4. 設置內存,磁盤,CPU等
0.2 更改root密碼
bash默認root密碼是隨機的,即每次開機,都有一個新的root密碼。

修改方式:
sudo passwd  # 提示輸入當前用戶密碼.enter后,提示我們輸入新的密碼并確認,此密碼即為root密碼.
su root      # 切換root用戶

1. 更改下載源

源列表

1.1 更改源列表
bash
1. 首先備份源列表(for sure): sudo cp /etc/apt/sources.list /etc/apt/sources.list_backup 2. 而后用gedit或其他編輯器打開: sudo gedit /etc/apt/sources.list
1.2 源列表內容

1.2.1 阿里云更新服務器(北京萬網/浙江杭州阿里云服務器雙線接入)

bash
deb http://mirrors.aliyun.com/ubuntu/ utopic main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ utopic-security main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ utopic-updates main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ utopic-proposed main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ utopic-backports main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ utopic main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ utopic-security main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ utopic-updates main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ utopic-proposed main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ utopic-backports main restricted universe multiverse

1.2.2 網易163更新服務器(廣東廣州電信/聯通千兆雙線接入)

bash
deb http://mirrors.163.com/ubuntu/ utopic main restricted universe multiverse deb http://mirrors.163.com/ubuntu/ utopic-security main restricted universe multiverse deb http://mirrors.163.com/ubuntu/ utopic-updates main restricted universe multiverse deb http://mirrors.163.com/ubuntu/ utopic-proposed main restricted universe multiverse deb http://mirrors.163.com/ubuntu/ utopic-backports main restricted universe multiverse deb-src http://mirrors.163.com/ubuntu/ utopic main restricted universe multiverse deb-src http://mirrors.163.com/ubuntu/ utopic-security main restricted universe multiverse deb-src http://mirrors.163.com/ubuntu/ utopic-updates main restricted universe multiverse deb-src http://mirrors.163.com/ubuntu/ utopic-proposed main restricted universe multiverse deb-src http://mirrors.163.com/ubuntu/ utopic-backports main restricted universe multiverse
2. 安裝常用軟件 2.1 安裝deb包

搜狗輸入法

2.2 apt-get安裝
bash
sudo apt-get update sudo apt-get install vim sudo apt-get install zsh sudo apt-get install git sudo apt-get install curl sudo apt-get install python-pip sudo apt-get install apache2-utils # 安裝并發測試工具 ab
2.3 刪除unity,安裝Mate桌面程序(Gnome x2分支)

參考文檔

bash
1. 刪除unity(可以不刪除,只執行安裝步驟) sudo apt-get remove unity unity-asset-pool unity-control-center unity-control-center-signon unity-gtk-module-common unity-lens* unity-services unity-settings-daemon unity-webapps* unity-voice-service 2. 安裝Mate sudo apt-get update sudo apt-get install mate-desktop-environment-core 3. 安裝Mate插件 sudo apt-get install mate-desktop-environment-extra # 安裝插件 4. 安裝結束后,"注銷"系統,在登錄窗口,注意"選擇登錄GUI",選擇mate,輸入密碼登錄即可切換.
3. 配置開發環境 3.1配置python開發環境
bash
sudo pip install flask sudo pip install tornado
4. 查看并kill進程

命令收藏,全面

bash
ps -e # 查看所有進程 pgrep firefox # 查看僵死進程ID sudo kill PID # 殺死進程 sudo kill APP_NAME # 采用軟件名稱,殺死 sudo kill -9 PID # 強力殺死 ps 參數: -aux 以BSD風格顯示進程 常用 -efH 以System V風格顯示進程 -e , -A 顯示所有進程 a 顯示終端上所有用戶的進程 x 顯示無終端進程 u 顯示詳細信息 f 樹狀顯示 w 完整顯示信息 l 顯示長列表

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/45380.html

相關文章

  • Ubuntu14.04 LTS下安裝jdk

    摘要:近日,由于項目要求,需要在下安裝和配置開發環境,下面對自己的一些實踐做了一下總結。二下載提供的自解壓包進行手動安裝這種安裝可自由選擇版本,能進行靈活的配置。我一般把非系統軟件安裝到下。 近日,由于項目要求,需要在ubuntu下安裝和配置java開發環境,下面對自己的一些實踐做了一下總結。   Sun JDK的安裝一般有兩種方式: 一、通過ubuntu提供的包管理工具進行安裝   ...

    dreamGong 評論0 收藏0

發表評論

0條評論

weizx

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<