2020年4月30日 星期四

macOS顯示CPU與GPU使用量

macOS 10.15 Catalina使用內建的Activity Monitor即可顯示CPU與GPU的使用量


使用方法如下:

2020年4月29日 星期三

macOS關閉hyper-threading

要永遠關閉macOS的hyper threading方法如下:
  1. 重新開機,進入修復模式Recovery Mode
  2. 選單 > Utilities > Terminal
  3. 在開啟的終端機(Terminal)中輸入下面指令
    • nvram SMTDisable=%01

重新開啟hyper-threading的方式則需要重設NVRAM

2020年4月23日 星期四

用inxi看硬體配置

看硬體資訊有許多方法,之前提到過的有:
越上面的越漂亮,但訊息越少,越下面的訊息量多但不易閱讀。這邊介紹一個屆在neofetch與lshw之間的看硬體配置指令inxi,在CentOS 7上安裝下指令:
  • sudo yum install inxi
安裝完成後的指令使用方式如下:
  1. inxi
  2. inxi -b
  3. inxi --usb
  4. inxi -F
  5. sudo inxi -F

2020年4月18日 星期六

2020年4月17日 星期五

Mac用diskutil做RAID-0 (striped)

在蘋果電腦上要把硬碟串起來做striped RAID-0,開啟終端機後依序執行:
  1. diskutil list
  2. sudo diskutil appleRAID create stripe AkitioAB JHFS+ disk4 disk5
  3. diskutil appleRAID list
上面指令的意思如下:

2020年4月16日 星期四

用neofetch看硬體資訊

指令模式下看硬體資訊使用neofetch,使用ASCII art顯示

neofetch是用bash寫出來的,上圖的硬體資訊解釋如下:

2020年4月15日 星期三

Apache2用virtual host的網頁不正常

網頁伺服器用apache2,機器搬家後發現原來上面透過virtual host架的網頁無法正常顯示,而是跳出apache的歡迎頁面。搞半天才發現不是apache2的設定錯誤,而是host name設定錯誤。所以對於下面兩個檔案:
  • /etc/hosts :將裡面的host name對應到新更動的IP即可
  • /etc/apache2/sites-enabled/000-default.conf:不用更動這個存放virtual host的設定檔

2020年4月14日 星期二

AH00558: apache2: Could not reliably determine the server's fully qualified domain name

在啟動Apache2的網頁伺服器時,雖可正常啟動,但卻出現下面的警告訊息
  • AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1. Set the 'ServerName' directive globally to suppress this message

最簡單的解決方法在 /etc/apache2/apache2.conf 裡面加入機器正確的名稱

2020年4月12日 星期日

2020年4月11日 星期六

2020年4月10日 星期五

wget使用的簡單說明與限速

要抓http或是ftp上面的檔案,可使用wget,例如說:
  1. wget http://linux.csie.nctu.edu.tw/kernel/linux/kernel/v5.x/linux-5.6.tar.gz
  2. wget https://mirrors.edge.kernel.org/pub/linux/kernel/v5.x/linux-5.6.tar.gz
  3. wget --no-check-certificate https://mirrors.edge.kernel.org/pub/linux/kernel/v5.x/linux-5.6.tar.gz
  4. wget --limit-rate=1m http://linux.csie.nctu.edu.tw/debian/debian-cd/10.3.0/amd64/iso-bd/debian-edu-10.3.0-amd64-BD-1.iso
  5. wget -c -t inf -b --limit-rate=1m http://linux.csie.nctu.edu.tw/debian/debian-cd/10.3.0/amd64/iso-bd/debian-edu-10.3.0-amd64-BD-1.iso
上面指令的意思是:

2020年4月4日 星期六