zoukankan      html  css  js  c++  java
  • 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
  • 相关阅读:
    urlEncode
    rsyslog queue队列权威指南
    rsyslog的安装、使用、详解
    长连接及心跳保活原理简介
    python时间日期格式化和反格式化
    无锁编程
    如何快速定位找出SEGV内存错误的程序Bug
    ElasticSearch搜索数据到底有几种方式?
    golang string和[]byte的对比
    PHP中使用Redis长连接笔记
  • 原文地址:https://www.cnblogs.com/hulk190/p/11360704.html
Copyright © 2011-2022 走看看