天天看點

Ubuntu16.04下常用軟體的安裝:搜狗、終端多視窗分屏Terminator、截圖工具shutter、Google等

文章結構

    • 1.[搜狗拼音安裝](https://blog.csdn.net/leijieZhang/article/details/53707181)
    • 2.vim編輯器不正常
    • 3.Firefox安裝[flash](https://get.adobe.com/flashplayer/)插件
    • 4.安裝網易雲
    • 5.截圖工具shutter
    • 6.安裝Google
    • 7.Terminator

1.搜狗拼音安裝

下載下傳link

sudo dpkg -i 安裝包
sudo apt-get install -f
sudo dpkg -i 安裝包
           

将鍵盤輸入法系統改為fcitx,

Ubuntu16.04下常用軟體的安裝:搜狗、終端多視窗分屏Terminator、截圖工具shutter、Google等

重新開機,完事後搜fcitx配置

Ubuntu16.04下常用軟體的安裝:搜狗、終端多視窗分屏Terminator、截圖工具shutter、Google等

2.vim編輯器不正常

sudo apt-get remove vim-common
sudo apt-get install vim
           

3.Firefox安裝flash插件

Ubuntu16.04下常用軟體的安裝:搜狗、終端多視窗分屏Terminator、截圖工具shutter、Google等

将降壓後的libflashplayer.so複制到制定位置

sudo mv libflashplayer.so /usr/lib/firefox/browser/plugins
           

4.安裝網易雲

沒有音樂的生活該是多麼寂寞,官網隻有Ubuntu18.04版的,不知道管不管用在16.04上,我還是老實點下對應系統版本的吧。

網易雲1.0版本Ubuntu16.04
sudo dpkg -i netease-cloud-music_1.0.0_amd64_ubuntu16.04.deb 
           

會報錯,deb安裝解決不了依賴問題,是以我們來修複下(搜狗的deb安裝也是),然後再次執行指令方可

sudo apt-get install -f 
sudo dpkg -i netease-cloud-music_1.0.0_amd64_ubuntu16.04.deb 
           
Ubuntu16.04下常用軟體的安裝:搜狗、終端多視窗分屏Terminator、截圖工具shutter、Google等

5.截圖工具shutter

雖然ubuntu也自帶了截圖工具,但不太好使,不能對圖檔進行标注啥的,是以就很難受。

sudo add-apt-repository ppa:shutter/ppa
sudo apt-get update
sudo apt-get install shutter
           

安裝完事,設定一波快捷鍵

Ubuntu16.04下常用軟體的安裝:搜狗、終端多視窗分屏Terminator、截圖工具shutter、Google等

快捷鍵的指令等同于在shell中運作

shutter -s

#截取拖拉選擇區域

shutter -a

#截取目前活動視窗

注意沒儲存的截圖檔案在 ~/.cache/shutter/unsaved 目錄下

6.安裝Google

wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb
           

對于64位版本可以使用如下連結下載下傳:

wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb 
           

下載下傳完後,運作如下指令安裝。

sudo dpkg -i google-chrome*; sudo apt-get -f install 
           

然後,就可以去搜尋使用了。

7.Terminator

Ubuntu終端多視窗分屏Terminator

1、安裝

Terminator最大的特點就是可以在一個視窗中打開多個終端

sudo apt-get install terminator

2、快捷鍵

Ctrl+Shift+E 垂直分割視窗

Ctrl+Shift+O 水準分割視窗 F11 全屏

Ctrl+Shift+C 複制

Ctrl+Shift+V 粘貼

Ctrl+Shift+N 或者 Ctrl+Tab 在分割的各視窗之間切換

Ctrl+Shift+X 将分割的某一個視窗放大至全屏使用

Ctrl+Shift+Z 從放大至全屏的某一視窗回到多窗格界面

3、優化配置

初始界面不太美觀

修改配置檔案

sudo vim ~/.config/terminator/config

[global_config]
  geometry_hinting = False
  handle_size = 1
  inactive_color_offset = 1.0
  title_font = mry_KacstQurn Bold 11
  title_hide_sizetext = True
[keybindings]
[layouts]
  [[default]]
    [[[child1]]]
      parent = window0
      profile = default
      type = Terminal
    [[[window0]]]
      parent = ""
      type = Window
[plugins]
[profiles]
  [[default]]
    background_darkness = 0.76
    background_image = None
    background_type = transparent
    cursor_color = "#3036ec"
    custom_command = tmux
    font = Ubuntu Mono 13
    foreground_color = "#ffffff"
    login_shell = True
    show_titlebar = False
    use_system_font = False
           
Ubuntu16.04下常用軟體的安裝:搜狗、終端多視窗分屏Terminator、截圖工具shutter、Google等

繼續閱讀