Currently browsing category

Linux, Page 8

ipmitool 指令筆記

重開 bmc : 設定動態取得 ip : 設定 ipmi 網路 : 取得產品序號 : 如果只要看某特定產品,在 print 後面加入產品 id 例如 0, 1, 10 …ete : …

CentOS 7 設定時間同步

可以先用下列指令看是否有同步 # timedatectl 假設沒和 ntp server 同步可以用下列指令使其同步 # timedatectl set-ntp yes 如果發現時區設錯可以用下列指令更改 # timedatectl set-timezone Asia/Taipei 如果不要和 ntp server 同步,想要手動校正時間,請參考下面指令 # timedatectl …

將所有圖片轉成 pdf 檔案

用下列指令就可以按照檔案順序轉 pdf 格式 $ convert `ls -1 *.jpg` file.pdf or $ i=300; convert `ls -1 *.jpg` -compress jpeg -quality 100 \ -density …

CentOS 7 docker 安裝筆記

先用下面指令進行安裝 # yum-config-manager – -add-repo https://download.docker.com/linux/centos/docker-ce.repo # yum install -y docker-ce docker-ce-cli containerd.io 如果有安裝舊的版本,可以用下列指令清除一下 # yum remove -y docker docker-client docker-client-latest docker-common …

DSM 5.2 自動更新 letsencrypt 憑證

首先把 synology 的 sshd 服務打開,在 Control Panel -> File Services -> SFTP -> Enable SFTP service 然後在某台主機啟 web 服務,設定好 letsencrypt 自動更新。編輯 /etc/crontab …

CentOS 7 服務列表

$ systemctl list-unit-files –type=service 以往都是用 chkconfig –list 這個指令

apache proxy 設定

<VirtualHost *:443> ServerName web1.liho.tw:80 ProxyPreserveHost On ProxyPass / ‘http://192.168.177.8/’ ProxyPassReverse / ‘http://192.168.177.8/’</VirtualHost>