• 如何安装Manjaro+Windows双系统


    今天实在是不想使用window系统来开发了,所以希望使用manjaro系统来代替我的 生产工具,目前来说linux发展迅捷,功能已经相当强大。经过ubuntu,deepin最终开始走向manjaro-gnome 的系统,不得不说这是目前的linux桌面系统老大,稳定和社区都很强大,下面展示我的安装成果:

    1. 下载镜像

    https://manjaro.org/
    

    2. 制作U盘启动工具Rufus

    http://rufus.ie/ #工具下载地址
    

    3.安装启动

    1.重启进入系统按F12(本机为小米机型,其他机型可百度)
    2.进入U盘启动
    3.按照指示来安装(忽略),需要注意的是选择安装类型我选择的是替换一个分区来安装manjaro系统简单且没异常
    

    4. 配置Manjaro系统

    • 更换国内源

      sudo pacman-mirrors -i -c China -m rank
      sudo pacman -Syy
      
    • pacman更换清华仓库地址vim /etc/pacman.cnf 最后添加如下:

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

      sudo pacman -Syy && sudo pacman -S archlinuxcn-keyring
      

    5. 安装软件

    • yay安装工具

      sudo pacman -S yay base-devel
      
    • sogou拼音

      sudo pacman -S fcitx-im #全部安装
      sudo pacman -S fcitx-configtool
      sudo pacman -S fcitx-sogoupinyin
      ### vim ~/.profile
      
      
    • 安装google浏览器

      sudo pacman -S google-chrome
      
    • 主题美化

      yay -S arc-gtk-theme
      sudo pacman -S numix-icon-theme
      

      image-20200630002255912

      顺带附上好看的gnome主题链接 https://www.gnome-look.org/p/1275087/下载其中主题copy到/usr/share/themes/目录下即可

    • wifi驱动安装

      # 驱动wifi 某些机型可能不支持wifi驱动
      yay -S rtl8821ce-dkms-git
      sudo modprobe 8821ce
      
    • 其他软件 Typora,VSCode,Idea 等常见工具可以直接到软件管理工具下安装

    • 记一次virtualbox失败

      需要安装
       sudo pacman -S linux56-virtualbox-host-modules
      这个模块
      
  • 相关阅读:
    17.CSS 文本属性和字体属性
    15.CSS 浮动
    D. Same GCDs
    B. Infinite Prefixes
    D. 0-1 MST
    lambda表达式复习
    D. New Year and Conference
    C. New Year and Permutation
    D. Dr. Evil Underscores
    D. Minimax Problem
  • 原文地址:https://www.cnblogs.com/MagicalFool/p/13739227.html
Copyright © 2020-2023  润新知