Ubuntu Linux知識點(筆記)

2021-10-05 06:35:04 字數 2585 閱讀 9238

hash sum mismatch問題

在update的時候,總會有那麼幾個失敗的,其中hash sum mismatch錯誤很常見,它的原因是由於你所使用的網路的**商設定了透明快取導致你獲取的源並不是最新的,導致更新失敗,對於最近更新的包快取不及時就會出現這樣的問題,而且自己新增的源更容易出現這個問題,目前的解決方法要麼是你用流動網路更新(流量啊),要麼是自己設定**。

怎樣開啟 apt-get debug

apt-get clean會刪除所有的快取包,但是有的時候還是想清理更多,就壓用到apt-get autoremove:清理之前安裝 包時所需要的,但是現在不需要的依賴包。

在update的時候,總會有那麼幾個失敗的,其中hash sum mismatch錯誤很常見,它的原因是由於你所使用的網路的**商設定了透明快取導致你獲取的源並不是最新的,導致更新失敗,對於最近更新的包快取不及時就會出現這樣的問題,而且自己新增的源更容易出現這個問題,目前的解決方法要麼是你用流動網路更新(流量啊),要麼是自己設定**。

利用terminal迴圈輸出字串:

$ for i in `seq 121 150`; do echo "(select controller_id,visit_time from visit_log where controller_id = $i order by visit_time desc limit 1)"; echo "union"; done

輸出:(select controller_id,visit_time from visit_log where controller_id = 121 order by visit_time desc limit 1)

union

(select controller_id,visit_time from visit_log where controller_id = 122 order by visit_time desc limit 1)

union

(select controller_id,visit_time from visit_log where controller_id = 123 order by visit_time desc limit 1)

union

(select controller_id,visit_time from visit_log where controller_id = 124 order by visit_time desc limit 1)

union

(select controller_id,visit_time from visit_log where controller_id = 125 order by visit_time desc limit 1)

union

(select controller_id,visit_time from visit_log where controller_id = 126 order by visit_time desc limit 1)

union

(select controller_id,visit_time from visit_log where controller_id = 127 order by visit_time desc limit 1)

union

(select controller_id,visit_time from visit_log where controller_id = 128 order by visit_time desc limit 1)

union......

問題描述:auth.log每隔幾分鐘就會有內容進來:

oct 22 09:09:01 tianyi cron[12577]: pam_unix(cron:session): session opened for user root by (uid=0)

oct 22 09:09:01 tianyi cron[12577]: pam_unix(cron:session): session closed for user root

這是因為有cron定時程式執行導致的,為了不讓它出現在日誌裡,採取以下辦法:

這可能是cron呼叫sendmail的測試連通性任務,或者查收郵件?總之和sendmail有關。

關掉方法:

sudo

vi /etc/pam.d/common-session-noninteractive

檔案結尾附件找到

session required pam_unix.so

在其前面加上:

session [success=1 default=ignore] pam_succeed_if.so service

incron quiet use_uid

儲存。重啟cron任務:

sudo

service

cron restart

這下auth.log清淨了不少。。。

python leetcode刷題知識點筆記2

第一種方法 bfs廣度優先搜尋,使用雙端佇列deque 因為效能比另外兩種queue好得多 在大迴圈內對二叉樹的每個層做一次遍歷,range len queue 使只遍歷當前的層,每次大迴圈ans加1。由於每個節點僅訪問一次,所以時間複雜度o n import collections class s...

TestLink知識點Mantis知識點

testlink知識點 1 testlink系統提供了六種角色 a guest 只有讀的許可權,適合於檢視測試用例和測試需求,以及專案分析的使用者。b testdesigner 可以開展測試用例和測試需求的所有工作。c tester 只能執行測試用例。d senior tester 可以檢視和維護測...

python大一知識點 python知識點複習

放假歸來,這幾天複習了一下好久不用的python,總結了一下知識點。語法基礎tuple與list的異同都由多個元素組成 tuple由 組成,list由組成 tuple不可變,list可變 tuple表示的是一種結構,而list表示的是多個事物的集合 tuple操作比list快 字串用法要點 轉義符和...