linux 點點滴滴 (備忘錄)

2021-08-28 04:01:54 字數 2233 閱讀 5800

1. 結束 ping       快捷鍵   ctrl+c

2. 查詢shell版本   命令   #bash -version

3. 查詢當前所在位置的路徑  命令   #pwd

4.查詢linux版    #cat /proc/version

#uname -a (centos適用)

5. 查詢當前cpu資訊 #cat /proc/cpuinfo

6.修改檔案,可以用vi (如果安裝了 vi vim工具),也可以用 gedit命令;

vi /etc/bash.bashrc

gedit /etc/bash.bashrc

7. #udhcpc       (ubuntu)自動分配ip位址;  (centos 自動獲取ip命令 #ip addr)

8. 修改網路引數配置檔案,詳見本篇下面的網路配置方法

8. 從機請求掛載主機檔案(ubuntu) 

# mount -t nfs -o nolock 192.168.1.xx :/home/name/nfsroot /mnt 

9. 複製檔案

#cp -rf /mnt/* /home     #把 mnt資料夾下的所有的檔案,包含子目錄,複製到 /home 資料夾下;

10.解壓

#tar -xlvf files.tz

11.查詢檔案路徑

#find /etc -name "ifcfg-eth0"

在etc資料夾下,按檔名查詢 ifcfg-eth0 檔案。

#find / -name "ifcfg-eth0"

在根目錄 / 下,查詢檔案名叫 ifcfg-eth0的檔案;

12.按檔案內容查詢

#find /etc /* "查詢內容"

在/etc目錄下,包含所有的子目錄,查詢內容

// 配置檔案

1. gcc安裝,配置路徑檔案,如下幾個是等效的。

/etc/bash.bashrc

/etc/procfile

2. 查詢gcc 的安裝情況

#gcc -v

3.查詢gcc安裝路徑

#type gcc

// 網路命令

#netstat     -rn      查詢網路狀態

#udhcpc              自動獲取ip位址等網路引數;

# service network restart     (或者   /etc/rc.d/init.d/network restart )   重啟網路;

#service iptables stop/start    暫時 關閉/開啟防火牆 (#chkconfig iptables off/on   永久關閉/開啟防火牆)

#service iptables status   檢視防火牆狀態

#ifconfig    檢視/設定 eth0 .....

//網路配置檔案

type=ethernet #網絡卡型別 

device=eth0 #網絡卡介面名稱 

onboot=yes #系統啟動時是否啟用 yes|no

bootproto=static #啟用位址協議 –static:靜態協議 –bootp:協議 –dhcp:協議 -none:不指定協議[最好指定]

ipaddr=192.168.1.11 #網絡卡ip位址 

netmask=255.255.255.0 #子網掩碼 

gateway=192.168.1.1 #網絡卡閘道器位址 

dns1=10.203.104.41 #網絡卡dns位址 

hwaddr=00:0c:29:13:5d:74 #網絡卡裝置mac位址 

broadcast=192.168.1.255 #網絡卡廣播位址 

注:在修改檔案ifcfg-ethx後還需要重新匯入檔案才能生效,具體命令如下:

[root@localhost ~]# /etc/init.d/network reload    #命令有start | restart | stop | reload

設定網路工作的開關(networking)、主機名(hostname)、子網掩碼

配置dns位址,兩種形式,乙個是 nameserver 114.114.114.114 nameserver 8.8.8.3   ,另一種是  dns1=114.114.114.114 dns2=8.8.8.8

與windows的hosts檔案類似,一般預設

acm 點點滴滴

qsort排序方法 六種qsort排序方法 本文中排序都是採用的從小到大排序 一 對int型別陣列排序 int num 100 sample int cmp const void a const void b qsort num,100,sizeof num 0 cmp 二 對char型別陣列排序 ...

sizeof 點點滴滴

1.靜態變數是存放在全域性資料區中的,sizeof計算棧中分配的大小,所以類或結構體中的靜態變數時不會計算在sizeof內的!2.sizeof和strlen的區別 1 sizeof操作符的結果型別是size t,它在標頭檔案中的typedef為unsigned int型別。該型別保證能容納實現所建立...

Elastic search點點滴滴

在打造集中化日誌那篇中,稍微提了下elastic search。elk打造集中化日誌 elastic search是elk的核心,寫的時候重點也放在它上面,不過還是覺得深度挖掘得不是太夠,所以決定再另寫一篇重點介紹下elastic search。正如elastic的本義一樣,es就是為擴充套件而生,...