親子日記APP
|
免費申請
|
登入
mini box 迷你盒子
這裡是工程師的筆記資料.
部落格
相簿
APP日記
書籤
目前分類:「
linux / unix
」的相關文章
瀏覽方式:
摘要列表
|
標題列表
To write the output of a command to a file
2020
09
14
15:14
To write the output of a command to a file, there are basically 10 commonly used ways. Please note that the n.e. in the syntax column means "not existing". There is a way actually, but it's too complicated to fit into the ...
繼續閱讀»
分類:
linux / unix
/
留言(0)
apache httpd log 檔案格式
2020
09
14
15:05
httpd.conf 中
apache httpd Log 的標準格式是: LogFormat "%h %l %u %t \"%r\" %>s %b" common
記錄檔就像這樣: 172.69.34.195 - - [08/Sep/2020:15:44:57 +0800] "GET /favicon.ico HTTP/1.1" 404 ...
繼續閱讀»
分類:
linux / unix
/
留言(0)
vi / vim 常用命令
2020
09
03
12:39
搜尋字串並取代 :%s/search_from/replace_to/g
加一個 "c" ,可在取代前,逐一確認是否取代 replace: :%s/search_from/replace_to/gc replace with qqqqqq (y/n/a/q/l/^E/^Y)?
搜尋略過大小寫的差異: :%s/search_from/replace_to/gi ...
繼續閱讀»
分類:
linux / unix
/
留言(0)
curl / httpstat 分析網頁下載各階段的時間
2020
06
04
16:02
利用 curl 來測試網頁下載時
查詢各個連接階段所花費的時間,例如 DNS查詢時間、下載時間、SSL連接花費的時間...
把這段存為 curltime.sh curl -w @- -o /dev/null -s "$@" <<'EOF' time_namelookup: %{time_namelookup}\n time_connect: %{t...
繼續閱讀»
分類:
linux / unix
/
留言(0)
mount
2020
05
30
19:02
mount 出現的問題
"mount: /mnt/xvdf1: wrong fs type, bad option, bad superblock on /dev/xvdf1, missing codepage or helper program, or other error."
有可能是硬碟 partition uuid 重覆
# ls -l /dev/disk/by-uuid/ tota...
繼續閱讀»
分類:
linux / unix
/
留言(0)
note: linux sshd 要改用金鑰登入,禁止以帳號密碼登入
2019
12
30
10:22
修改 /etc/ssh/sshd_config
主要有兩項設定 # Change to no to disable tunnelled clear text passwords PasswordAuthentication no yes → 允許用戶以帳號+密碼登入 linux (內定是 yes ) no → 禁止用戶以帳號+密碼登入 linux PubkeyAuthentication yes ...
繼續閱讀»
分類:
linux / unix
/
留言(0)
筆記:CentOS/RedHat/Debian/Rocky linux 修改主機名稱 hostname
2019
11
02
23:30
顯示目前的主機名稱 /其它資訊 $ hostnamectl $ hostnamectl Static hostname: picaa 這是一台VM Icon name: computer-vm Chassis: vm Machine ID: 153a217486fe4be8a8db123db67ed581 Boot ID: a8f3c1328e154cf6b169641238054b97 Virtualization: kvm Operating System: CentOS Linux 7 (Core) CPE OS Name: cpe:/o:c...
繼續閱讀»
分類:
linux / unix
/
留言(0)
[mac] .DS_Store 檔案, ._* 開頭的隱藏檔案
2019
10
20
23:34
.DS_Store (英文全稱 Desktop Services Store) https://zh.wikipedia.org/wiki/.DS_Store 蘋果 Mac OS X 作業系統所創造的隱藏文件,用於存貯目錄的自定義屬性,如文件們的圖標位置或者是背景色的選擇。 該檔由 Finder 創建/維護,類似於 Microsoft Windows 中的 desktop.ini 檔 默認情況下,Mac OS X 的Finder程序會在進行存取的每個目錄下創建.DS_Store文件,甚至是在遠程系統上的目錄(例如通過SMB連接或者蘋果文件協議連接來共享的目錄),並且甚至如果用戶僅僅通過移動該目錄的Finder窗口自定義了其顯示。 這與既存的在先前版本的Finder中為了同...
繼續閱讀»
分類:
linux / unix
/
留言(0)
筆記: Linux 建立 Swap, 以及 Swap 使用狀況監控, OOM
2019
05
01
12:47
建立 swap 的方式 Step #1 先建立一個 2G 空白的檔案以供 swap 使用 (以 root 身份操作) $ dd if=/dev/zero of=/swapfile bs=1M count=2048 2048+0 records in 2048+0 records out 2147483648 bytes (2.1 GB) copied, 6.6971 s, 321 MB/s 或 $ fallocate -l 2G /swapfile Step #2 設定 /swapfile 檔案只限 root 才能讀寫 $ chmod 0600 /swapfile Step #3 將 /swapfile 檔...
繼續閱讀»
分類:
linux / unix
/
留言(0)
筆記:Linux hugepages 設定
2019
02
27
12:08
Hugepages 是從 Linux kernal 2.6 後加入的新功能
default 是 2048 kB (2MB)
查詢目前 page size (Bytes) $ getconf PAGE_SIZE 或 getconf PAGESIZE 4096 $ cat /proc/sys/vm/nr_hugepages 0 $ cat /proc/meminfo | grep Huge A...
繼續閱讀»
分類:
linux / unix
/
留言(0)
上一頁
1
2
3
4
下一頁