紀錄工作上的點點滴滴

我的Linux生活日記 Debian 使用心得-2022.04

2024-02-28 我的Linux生活日記 linux

我的Linux生活日記 Debian 使用心得-2022.04 tags: 我的linux日常生活 Debian 當初會接觸Debian 這個作業系統是因為我想找一個穩定的發行板,也確實Debian 相比Ubuntu 穩定很多,很少在更新作業系統後出現問題。 踏入Debian 初期,常常發現有驅動軟 ... Read More

輸入法相關

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