ref
export path=/home/yan/share/usr/local/arm/3.4.1/bin:$path
開啟~/.bashrc,新增行:
export path=/home/yan/share/usr/local/arm/3.4.1/bin:$path
使生效:
source .bashrc
vim /etc/profile # 開啟檔案
在裡面加入:
export path=/home/yan/share/usr/local/arm/3.4.1/bin:$path
使生效:
source profile
echo $path
或env
使用者登入後載入profile和bashrc的流程如下:
/etc/profile
->/etc/profile.d/*.sh
h om
e/.b
ashp
rofi
le
−>
home/.bash_profile ->
home/.
bash
pro
file
−>
home/.bashrc
->/etc/bashrc
bash首先執行/etc/profile指令碼,/etc/profile指令碼先依次執行/etc/profile.d/*.sh
隨後bash會執行使用者主目錄下的.bash_profile指令碼,.bash_profile指令碼會執行使用者主目錄下的.bashrc指令碼,
而.bashrc指令碼會執行/etc/bashrc指令碼。
至此,所有的環境變數和初始化設定都已經載入完成.
bash隨後呼叫terminfo和inputrc,完成終端屬性和鍵盤對映的設定.
其中path這個變數特殊說明一下:
如果是超級使用者登入,在沒有執行/etc/profile之前,path已經設定了下面的路徑:
/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
如果是普通使用者,path在/etc/profile執行之前設定了以下的路徑:
/usr/local/bin:/bin:/usr/bin
安裝imagemagick
$ sudo apt-get install imagemagick
改變畫素大小(切換至相應的**目錄)
或convert example.png -resize 200x100 example.png(200寬,100高)
convert example.png -resize 200 example.png(只調整寬度)
convert example.png -resize x100 example.png(只調整高度)
如:mogrify -resize 500x500 -format jpg 1.jpg
格式轉換:
convert howtogeek.png -quality 95 howtogeek.jpg(數字介於1~100,預設為92)
旋轉影象:
Ubuntu常見問題
1 ubuntu 切換到root使用者模式 ubuntu系統剛建立的時候預設是沒有root使用者的,需要手動新增 root使用者密碼才能切換到root使用者,命令如下 sudo passwd root此時會提示輸入密碼,按要求輸入root使用者密碼,便建立root使用者 切換root使用者命令為 s...
Ubuntu 常見問題
ubuntu安裝完需要做的事 開機顯示grub該怎麼修復 ubuntu中新增解除安裝桌面環境的方法及命令 ubuntu中新增解除安裝桌面環境的方法及命令 ubuntu中新增解除安裝桌面環境的方法及命令 ubuntu中新增解除安裝桌面環境的方法及命令 ubuntu中新增解除安裝桌面環境的方法和命令 解...
Ubuntu常見問題
1 could not get lock var cache apt archives lock 解決辦法是 sudo rm rf var cache apt archieves lock sudo apt update 這樣就可以解決啦 2 對於 could not get lock var li...