首先可以按照 這篇博文 對 terminal 進行美化!
替換/etc/apt/source.list
為以下內容,做好備份!!
deb bionic main restricted universe multiverse
deb-src bionic main restricted universe multiverse
deb bionic-security main restricted universe multiverse
deb-src bionic-security main restricted universe multiverse
deb bionic-updates main restricted universe multiverse
deb-src bionic-updates main restricted universe multiverse
deb bionic-backports main restricted universe multiverse
deb-src bionic-backports main restricted universe multiverse
deb bionic-proposed main restricted universe multiverse
deb-src bionic-proposed main restricted universe multiverse
最後使用sudo apt update
更新
name
作用tldr
檢視命令幫助
tesseract-ocr
文字識別
ffmpeg
視音訊處理工具
git不知道就不用裝
tree
目錄樹autojump
目錄直達
poppler-utils
包含一系列pdf處理工具 pdfunite等
unar
解壓工具
sudo apt update
sudo apt install tldr tesseract-ocr git ffmpeg tree autojump poppler-utils unar
# autojump 安裝好後,還不能直接使用,直接執行以下命令:
echo
". /usr/share/autojump/autojump.bash"
>> ~/.bashrc
# 更改許可權
sudo
chmod 755 /usr/share/autojump/autojump.bash
# 更新 .bashrc
source ~/.bashrc
# git config --list # 顯示當前的git配置
# git config -e [--global] # 編輯git配置檔案
git config [--global] user.name "[name]"
# 設定提交**時的使用者資訊
git config [--global] user.email "[email address]"
git config --global color.ui true
# 讓git顯示顏色,會讓命令輸出看起來更醒目
# 配置別名
git config --global alias.st status
git config --global alias.co checkout
git config --global alias.ci commit
git config --global alias.br branch
git config --global alias.lg "log --color --graph --pretty=format:'%cred%h%creset -%c(yellow)%d%creset %s %cgreen(%cr) %c(bold blue)<%an>%creset' --abbrev-commit"
# 配置ssh key
ssh-keygen -t rsa -c "[email protected]"
# 配置免密
# 下次執行git push再次輸入使用者名稱之後,git就會記住使用者名稱密碼並在上述目錄下建立.git-credentials檔案,記錄的就是輸入的使用者名稱密碼。
vim ~/.gitconfig # 在後面追加如下兩行
cat>>~/.gitconfig<<
eof[credential]
helper=store
eof
cat>>~/.bashrc<<
eof# alias set
alias la='ls -a'
alias lh='ls -lh'
alias l='ls'
alias cp='cp -v'
alias mv='mv -v'
alias rm='rm -v'
alias vi='vim'
alias lm='ls -l|grep "^-"| wc -l' #當前目錄下檔案個數
eof
cat>>~/.vimrc<<
eof" 自動匹配括號
inoremap set number
set ruler
set showcmd
set hls
"this will make mouse active
set mouse=a
"set up tab spaces
set tabstop=4 softtabstop=4 shiftwidth=4 expandtab
set autoindent
"to speed up vim
set re=1
set ttyfast
set lazyredraw
set scrolljump=10
"設定非輸入模式時按enter也換行
nmap oeof
# 修改 ~/.bashrc 第 60 行的 \w 改為大寫的 w 即可
59 if
["$color_prompt"
=yes];
then
60 ps1=
'$\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
61 else
62 ps1=
'$\u@\h:\w\$ '
63 fi
windows下mstsc 遠端Ubuntu 教程
首先,我們先設定ubuntu的遠端控制,將其設定為允許被遠端連線,進入系統 首選項 桌面共享,或者直接搜尋桌面共享,如圖所示 將 允許其他人檢視您的桌面 這一項勾上,然後在安全那項,勾選 要求遠端使用者輸入此密碼 並設定遠端密碼。並且我們取消勾選 必須為對本機器的每次訪問進行確定 這樣做,是為了被遠...
windows通過xrdp連線ubuntu
參考鏈結1 參考鏈結2 參考鏈結3 參考鏈結4 centos 方案一 通過安裝第三方xfac4或者xubuntu桌面系統達到遠端訪問的功能的。通過以下命令直接安裝,然後通過windows自帶的遠端訪問工具就可以直接訪問了。安裝xrdp sudo apt get install xrdp 安裝vnc4...
grub rescue 模式下修復 ubuntu
由於在rescue模式下,只有少量的基本命令可用,必須通過一定的操作才能載入正常模組,然後進入正常模式。rescue模式下可使用的命令有 set,ls,insmod,root,prefix 設定啟動路徑 先假設grub2的核心檔案在 hd0,8 分割槽,再來看看怎樣從 rescue模式進入從 hd0...