原創 Linux技巧總結

2021-03-31 08:56:29 字數 807 閱讀 2201

做軟盤的映象

dd啟用swap分割槽

mk swap

swapon

監視swap區

free

dns配置檔案

/etc/resolv.conf

linuxd dns是通過bind實現的

su - root -c "命令"

連續執行命令

cmd && cmd && cmd

查詢當前目錄下(包括子目錄)所有.c檔案,hello字串

grep hello *.c -r

修改主機名

/etc/sysconfig/***work

啟動文字介面

/etc/inittab

id:x:initdefault:

變5為3

讓乙個程式在退出登陸後繼續執行

# cmd

# disown

或者# nohup cmd &

手工新增閘道器

route add default gw ip

更改閘道器

#vi /etc/sysconfig/***work-scripts/ifcfg-eth0

#/etc/init.d/***work restart

跟蹤路由

#traceroute ip

啟動ftp服務

/etc/init.d/vsftpd start

安裝軟體

rpm -ihv 包名.rpm

軟體安裝到**了?

rpm -qp |aaa.rpm

軟體的反安裝

rpm -e 包名.rpm

原創 Hive left join 技巧總結

根據工作中經驗總結出來 left join 常用的 使用注意點 a left join b on a.id b.id 第一種情況 如果 a 表 的 id 存在 重複,b 表的 id 不存在 重複,那麼 select from a left join b on a.id b.id,sql 執行的結果 ...

原創 Linux常用管理命令總結

一 資料夾操作 1 檢視資料夾 ls al dir diredtory name 2 建立資料夾 mkdir p diredtory name 3 刪除資料夾 rm r f diredtory name 4 移動資料夾 mv diredtory name diredtory name new 5 資...

Linux技巧小總結

處理特殊的檔名 假設linux系統中有乙個檔案名叫 aaa 如果我們想對它進行操作,例如現在要刪除它,如果我們按照一般的刪除方法在命令列中輸入rm aaa命令,介面將會提示我們是無效選項 invalid option 原來由於檔名的第乙個字元為 linux把檔名當作選項了,我們可以使用 符號來解決這...