• Manjaro安装+配置 指导


    Mi第一代、13寸屏、N卡940mx

    采用legacy

    显卡驱动 据传说仅使用Intel显卡禁用N卡,可以节省电能

    1、去除没用软件

    libre-officepiddgehexfirefoxxfce4screenshotsteam打印...

    2、Manjaro换源

    sudo pacman-mirrors -i -c China -m rank
    sudo pacman -Syy  

    会显示最快的几个源,选的是中科大的源USTC。

    3、添加USTC的archlinuxcn

    修改/etc/pacman.conf,在最后一行添加:

    [archlinuxcn]
    SigLevel = Optional TrustedOnly
    Server = https://mirrors.ustc.edu.cn/archlinuxcn/$arch

    然后运行:

    sudo pacman -S archlinuxcn-keyring 
    sduo pacman -Syy

    4、安装sogoupinyin

    sudo pacman -S fcitx
    sudo pacman -S fcitx-im sudo pacman -S fcitx-configtool
    sudo pacman -S fcitx-qt4 sudo pacman
    -S fcitx-sogoupinyin

    添加输入法配置文件 (sudo nano ~/.xprofile)

    export GTK_IM_MODULE=fcitx
    export QT_IM_MODULE=fcitx
    export XMODIFIERS="@im=fcitx"

    讲键盘(英文)加入为默认,再添加sogoupinyin

     

    5、安装google-chrome

    安装googlehelper2.3.0

    https://github.com/haotian-wang/google-access-helper

    在chrome扩展中安装

    pacman -S seahorse

    在seahorse中,登录设置为空密码可以取消解锁环

    6、其他软件安装

    typoraelectronic-wechatdeepin-screenshot

    pacman -S wps-office
    pacman -S ttf-wps-fonts

    7、关闭不必要的服务

    查看启动服务

    systemctl list-unit-files --type=service | grep enabled

    关闭不必要的服务

    sudo systemctl stop bluetooth.service
    sudo systemctl stop ModemManager.service
    
    sudo systemctl disable bluetooth.service
    
    sudo systemctl disable ModemManager.service
    
    sudo systemctl stop org.cups.cupsd.service
    sudo systemctl disable org.cups.cupsd.service
    
    sudo systemctl stop avahi-daemon.service
    Job for avahi-daemon.service canceled.
    sudo systemctl status avahi-daemon.service
    
    sudo systemctl stop avahi-daemon.service
    Warning: Stopping avahi-daemon.service, but it can still be activated by: avahi-daemon.socket
    sudo systemctl disable avahi-daemon.service
    
    sudo systemctl status avahi-daemon.socket
    sudo systemctl stop avahi-daemon.socket
    sudo systemctl disable avahi-daemon.socket
    
    sudo systemctl stop NetworkManager-dispatcher.service 
    sudo systemctl stop NetworkManager.service
  • 相关阅读:
    Solr简介
    儿童节快乐
    添加新的内容分类
    weka
    Junit测试样例
    Linux MySQL单实例源码编译安装5.5.32
    perconatoolkit 工具集安装
    Linux MySQL单实例源码编译安装5.6
    MySQL 开机自启动
    mysql5.6之前需要账号的安全加固
  • 原文地址:https://www.cnblogs.com/hulk190/p/11360704.html
Copyright © 2020-2023  润新知