Linux基礎設定

2021-10-18 16:20:40 字數 1471 閱讀 1112

更新軟體包

apt-get update &&

apt-get upgrade -y

apt-get -y install vim #先來個vim舒服一下
vi ~/.vimrc
啟用滑鼠

:set mouse-=a
貼上以下內容

if has(

'mouse'

)set mouse-=a

endif

syntax on

filetype indent on

set showcmd

set showmatch

set incsearch

set syn=cpp

set nu!

set hlsearch

set nobackup

set ruler

colorscheme evening

set autoindent

set smartindent

set tabstop=4

set shiftwidth=4

set enc=utf-8

set fenc=utf-8

set fencs=utf-8,ucs-bom,gb18030,gbk,gb2312,cp936

set langmenu=zh_cn.utf-8

set helplang=cn

儲存走你

vi /etc/bash.bashrc

vi ~/.bashrc

找到並注釋掉類似於如下內容

if

![ -n "$" -a -n "$"];

then

ps1=

'$\u@\h:\w\$ '

fi

並在下面新增

ps1=

"\[\e[37;1m\][\[\e[35;1m\]\u\[\e[32;1m\]@\[\e[34;1m\]\h \[\e[31;1m\]\w \[\e[33;1m\]\t\[\e[37;1m\]]\[\e[32;1m\]\$\[\e[m\]"

儲存走你

source /etc/bash.bashrc

source ~/.bashrc

來個系統資訊檢視

基礎完畢 enjoy ?

linux基礎網路設定

linux基礎網路設定 網路基本資訊 設定網路基本資訊 dhcp自動管理網路基本資訊 1.網路基本資訊的檢視 ip netmask gateway dns mac hostname hosts網路基本資訊 1 檢視ip netmask mac資訊 ifconfig ip ifconfig a 檢視所...

linux基礎網路設定

linux基礎網路設定 網路基本資訊 設定網路基本資訊 dhcp自動管理網路基本資訊 1.網路基本資訊的檢視 ip netmask gateway dns mac hostname hosts網路基本資訊 1 檢視ip netmask mac資訊 ifconfig ip ifconfig a 檢視所...

Linux程式設計基礎 GDB(設定斷點)

啟動gdb後,首先就是要設定斷點,程式中斷後才能除錯。在gdb中,斷點通常有三種形式 斷點 breakpoint 在 的指定位置中斷,這個是我們用得最多的一種。設定斷點的命令是break,它通常有如下方式 可以通過info breakpoints n 命令檢視當前斷點資訊。此外,還有如下幾個配套的常...