fedora kde 使用记录

默认的wayland环境无法使用中文输入法,基于fedora 37 kde x11环境

2023-01-19

  • 无法使用中文输入法解决方法
    https://fedoraproject.org/wiki/I18N/Fcitx5/zh-cn

    sudo dnf install fcitx5 fcitx5-chinese-addons fcitx5-configtool fcitx5-gtk fcitx5-qt fcitx5-qt-module fcitx5-table-extra kcm-fcitx5 

    系统带了一个输入法选择器程序,选择fcitx5即可

不要安装 fcitx5-autostart ,经过测试这个包和系统自带的输入法选择有冲突, 会导致开机一个报错

  • fedora安装edge

    sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc
    
    sudo dnf config-manager --add-repo https://packages.microsoft.com/yumrepos/edge
    
    sudo dnf install microsoft-edge-stable
  • fedora系统崩溃
    由于显卡重置,桌面效果已重置.
    进入系统提示意外的系统错误
  • 开机总是提示很多错误报告

    systemctl list-unit-files
    
    sudo systemctl disable abrtd abrt-xorg abrt-vmcore abrt-pstoreoops abrt-oops abrt-journal-core

    但是abrt还是一直启动,稍后再研究

2023-01-20

  • 无法安装virtualbox,安装好virtualbox后,错误提示如下

    This system is currently not set up to build kernel modules.
    Please install the Linux kernel "header" files matching the current kernel
    for adding new hardware support to the system.
    The distribution packages containing the headers are probably:
      kernel-devel kernel-devel-6.0.7-301.fc37.x86_64

    只要装上提示的两个依赖即可

    sudo dnf install kernel-devel kernel-devel-6.0.7-301.fc37.x86_64

    然后执行virtualbox脚本

    sudo /sbin/vboxconfig
  • 默认开启小键盘

    sudo vim /etc/sddm.conf
    
    Numlock=on 
  • 开机时候总是进入错误内核的系统,删除错误内核即可

    rpm -qa | grep kernel
    
    sudo dnf remove kernel-core-6.1.6-200.fc37.x86_64

2023-01-22

  • kde错误提示音关闭,设置 音频 通知声音

2023-01-26

  • 软件商店访问速度慢,可以使用flatpack镜像站,执行后下载速度有所缓解
    https://sjtug.org/post/mirror-help/flathub/
  • 使用qq音乐,vscode,edge,docker时候,系统崩溃,未知原因,很快自动重启后恢复正常

2023-02-04

  • 注销后黑屏
  • 蓝牙触摸板,重启后配置无效,需要重新配置,libinput-gesture无法生效

2023-02-05

  • fedora升级后多了一个内核,卸载方法

    sudo rpm -qa kernel kernel-core kernel-modules
    sudo dnf remove -y kernel-6.0.7-301.fc37.x86_64 kernel-core-6.0.7-301.fc37.x86_64 kernel-modules-6.0.7-301.fc37.x86_64

2023-02-07

  • 升级到6.1.9内核后,今天无法连接wifi了,准备重装,看来用linux最好还是别升级

2023-02-13

  • 安装思源黑体字体

    sudo dnf install adobe-source-han-sans-cn-fonts

2023-02-14

  • 安装docker
    https://vuepress.mirror.docker-practice.com/install/fedora/

    sudo dnf config-manager \
      --add-repo \
      https://mirrors.aliyun.com/docker-ce/linux/fedora/docker-ce.repo
    
    sudo sed -i 's/download.docker.com/mirrors.aliyun.com\/docker-ce/g' /etc/yum.repos.d/docker-ce.repo
    
    sudo dnf install docker-ce docker-ce-cli containerd.io docker-compose-plugin
  • 不安装弱依赖

    sudo dnf install --setopt install_weak_deps=False libreoffice-langpack-zh-Hans

2023-02-15

  • linux平台数据库客户端

    sudo dnf install io.beekeeperstudio.Studio

2023-02-18

  • wifi无法连接

2023-02-20

  • 开始检查wifi

    # 打印日志
    dmesg 

    wifi无法恢复,换美丽且低效的win10了

相关文章

此处评论已关闭