Linux

是什麼讓程序載入如此之快?

  • July 27, 2021

我有這個問題需要回答。

是什麼讓stzathurasxivfeh等程序立即載入,以及VS CodeGoogle Chrome等程序在低配置電腦中載入如此緩慢的原因是什麼?

例如,我有一台執行 Linux Mint 的低規格筆記型電腦。當我執行st時,它會立即打開一個st實例,但是當我執行Google Chrome時,打開一個****Google Chrome實例需要很長時間。是什麼讓 st 的載入速度比 Google Chrome 快,又是什麼讓 Google Chrome 的載入速度比 st.

謝謝!:)

與 Google Chrome 相比,feh 並沒有太大的作用。只需比較文件大小和依賴項的數量:

$ ls -l /usr/lib/chromium/chromium
-rwxr-xr-x 1 root root 187751032 May 13 05:50 /usr/lib/chromium/chromium
$ ls -l $(which feh)
-rwxr-xr-x 1 root root 207280 Feb  2 21:03 /usr/bin/feh
$ ldd /usr/lib/chromium/chromium | wc -l
178
$ ldd $(which feh) | wc -l
49

此外,Google瀏覽器包括它自己的修改版本的許多它所依賴的開源庫。它很大,載入時間要長得多。

引用自:https://unix.stackexchange.com/questions/659994