scp 要怎麼保持檔案的原始時間呢?
man scp 可以看到下述參數:
- -p :Preserves modification times, access times, and modes from the original file.
- 範例:scp -p file.txt remote.example.com:
個人筆記, 記錄關於 系統、程式、新聞 與 日常生活 等資訊
scp 要怎麼保持檔案的原始時間呢?
man scp 可以看到下述參數:
第一次在新聞看到,筆電桌機用戶使用 Windows 的市占率下滑,是因為 Linux 的市占率提昇... (雖然這成長率只有多個1.5%)。
波克夏於 2020/5/2 的股東會,巴菲特此次因為疫情,所以開線上股東會,來看看他說了哪些內容吧~
Linux Mint 系統是 Base 在 Ubuntu Linux 之上,純粹拿來當作業系統來用,長的跟 Windows 比較相像。
隨手灌一台來用後,就懶得重灌了,Ubuntu 升級到 20.4 的時候,才在想這台都沒升級過,花點時間找怎麼升級~
Linode 於 2019/12/5 以後開得新帳號(原因:CAN-SPAM Act),連到外部 SMTP Port 預設都被擋掉,以至於全部 Connection timed out。
新開機器可以直接 telnet 測試看看:
$ telnet gmail-smtp-in.l.google.com 25 Trying 2404:6800:4008:c03::1b… Trying 74.125.203.26… telnet: Unable to connect to remote host: Connection timed out
正常狀況
$ telnet gmail-smtp-in.l.google.com 25 Trying 74.125.203.26… Connected to gmail-smtp-in.l.google.com. Escape character is '^]'. 220 mx.google.com ESMTP k2si12268129pld.364 - gsmtp
於 Postfix 的 /var/log/mail.log 會看到下述訊息:
Apr 29 12:47:24 localhost postfix/smtp[18520]: connect to gmail-smtp-in.l.google.com[74.125.203.27]:25: Connection timed out Apr 29 12:47:24 localhost postfix/smtp[18521]: connect to gmail-smtp-in.l.google.com[108.177.97.27]:25: Connection timed out
Apr 29 12:47:24 localhost postfix/smtp[18523]: connect to gmail-smtp-in.l.google.com[64.233.189.26]:25: Connection timed out
Apr 29 12:47:54 localhost postfix/smtp[18523]: connect to alt1.gmail-smtp-in.l.google.com[108.177.9.27]:25: Connection timed out
Apr 29 12:48:24 localhost postfix/smtp[18523]: connect to alt2.gmail-smtp-in.l.google.com[209.85.234.26]:25: Connection timed out
Apr 29 12:48:54 localhost postfix/smtp[18522]: connect to alt3.gmail-smtp-in.l.google.com[142.250.11.27]:25: Connection timed out Apr 29 12:49:24 localhost postfix/smtp[18520]: connect to alt4.gmail-smtp-in.l.google.com[142.250.12.27]:25: Connection timed out
想要開通 Email 的 SMTP Port 需要做些設定,然後在於後台開 Ticket 申請。
IoT 的設備現在越來越多,而 IoT 的設備重點在於大多都有連接網路,而有連接網路若資安沒有處理好,就會發生此新聞報導的類似問題。
使用平板來閱讀電子書都算蠻方便的,就會想要常使用,這個平台上的電子書有上百萬本,中、英文書都有,而且都是免費的,可以使用看看~
到 IKEA 逛街蠻常吃瑞典肉丸的,瑞典肉丸的配方、醬汁的食譜和做法,IKEA 公佈囉~
使用 JavaScript 要驗證 JSON 的格式是否正確,要怎麼做呢?