Ubuntu 管理心得

搜尋此網誌

2021年12月31日 星期五

Remove ibus input method 輸入法

cf: https://askubuntu.com/questions/860780/how-to-remove-old-ibus-keyboard-input-menu-items 

Enter dconf-editor and go to org.gnome.desktop.input-sources.sources then delete the input method not needed, e,g, ('ibus', 'fuzzy_table')

2021年12月30日 星期四

Inquiry about paper staus

 cf: https://www.editage.com/insights/how-do-i-write-an-inquiry-to-the-editor-about-my-manuscripts-current-status


Dear Mr./Ms. XXX [Editor's Name],

I have submitted my revised manuscript titled XXXX [manuscript id: xxxx] to your journal via the online submission system on dd/mm/yyyy [date of submission]. Two days later, the status changed to ‘with editor.’ However, the status has remained unchanged ever since.

I would be grateful if you could let me know whether there has been any further progress on my submission.

Sincerely,

XXXX [Your name and contact details]

2021年12月5日 星期日

Clean /var/log/journal

cf: https://j7.lb168.tw/2019/07/vacuum-var-log-journal/


  1. sudo vim /etc/systemd/journald.conf
  2. Add the lines:
  3. SystemMaxUse=10M
    SystemMaxFileSize=10M
  4. sudo systemctl restart systemd-journald.service

cf: https://askubuntu.com/questions/1238214/big-var-log-journal 

  1. sudo journalctl --vacuum-size=10M
  2. sudojournalctl --vacuum-time=10d

2021年12月4日 星期六

Configure Thunderbird for localhost

 cf :  https://gist.github.com/raelgc/6031274

  1. 帳號設定 -> 新增其他帳號 -> Unix Mailspool(Movemail)(U)
  2. 您的大名: chiao
  3. 電子郵件地址: chiao@localhost
  4. 寄件伺服器: localhost

As of Thunderbird 87beta.x.x, Movemail support is removed. 

https://www.thunderbird.net/en-US/thunderbird/87.0beta/releasenotes/ 

Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"?

cf: https://stackoverflow.com/questions/54184707/warning-continue-targeting-switch-is-equivalent-to-break-did-you-mean-to-u

 

 Error while exporting excel from FAHP online system:

Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in /usr/share/php/OLE.php on line 319

sudo vim +319 /usr/share/php/OLE.php

Change "continue" to "continue 2" as follows:

  default:
#chiao, 2021-12-5               
#                continue;
                continue 2;

網誌存檔