紀錄工作上的點點滴滴

輸入法相關

2024-02-28 工作雜記 Linux

設定中文輸入法 在windows時我習慣是使用微軟新注音輸入法,轉到Linux 的替代方案是新酷音。以下是我安裝新酷音的步驟。 至於輸入法框架,因為是使用 Gnome 桌面系統,在試過 fcitx 與 ibus 之後,最後是 ibus 比較能再大多數軟體上正常運作。fcitx 在有些時候會出現閃退或 ... Read More

關閉IPv6

2024-02-28 工作雜記 Linux

設定文件: /etc/sysctl.conf net.ipv6.conf.all.disable_ipv6 = 1 net.ipv6.conf.default.disable_ipv6 = 1 net.ipv6.conf.lo.disable_ipv6 = 1 讓設定生效 sudo sysctl ... Read More

windows ssh key 登入 Linux

2023-11-15 linux linux windows

先產生 ssh 金鑰 ssh-keygen 將公鑰上傳到目標主機 type $env:USERPROFILE\.ssh\id_rsa.pub | ssh {account}@{IP-ADDRESS-OR-FQDN} "cat >> ... Read More