2022年5月15日 星期日

2022年5月14日 星期六

QUEENDOM的《チキチキバンバン》

醬醬阿 起乩起乩 棒棒 

TVアニメ「パリピ孔明」OPテーマ「チキチキバンバン」【踊ってみた】 with 3D Virtual 英子, 1m30s

2022年5月12日 星期四

檢查系統是否裝在VM虛擬機上

檢查某台機器是否裝在VM (Virtual Machine)虛擬機上,用lscpu指令:

  • lscpu | grep -i 'hypervisor vendor'

如果有結果跑出來,那就是在VM上:例如說

  • Hypervisor vendor: KVM,裝在KVM virtualization
  • Hypervisor vendor: Xen,裝在Oracle VM

關於Hypervisors提供者還有例如:

2022年4月22日 星期五

Mac上做locate的updatedb

Linux或Mac可用指令locate + 關鍵字來查找檔案,在做這件事情之前要先建立整個檔案系統的索引,Linux上的指令是updatedb,在Mac或是其他BSD上則是locate.updatedb。執行過程如下所示:

  1. cd /
  2. sudo /usr/libexec/locate.updatedb

2022年4月21日 星期四

Mac上Rstudio安裝套件時出現gfortran相關的ld warning, library not found for -lxxx

在Mac上的Rstudio安裝套件的時候出現類似下列錯誤:

gfortran-4.8   -fPIC  -g -O2  -c mclust.f -o mclust.o
gfortran-4.8   -fPIC  -g -O2  -c mclustaddson.f -o mclustaddson.o

ld: warning: directory not found for option '-L/usr/local/lib/gcc/x86_64-apple-darwin13.0.0/4.8.2'
ld: warning: directory not found for option '-L/usr/local/lib/gcc/x86_64-apple-darwin13.0.0/4.8.2'
ld: library not found for -lquadmath

clang: error: linker command failed with exit code 1 (use -v to see invocation)