美文网首页树莓派/香橙派.Space
Arch Linux ARM (树莓派)配置和桌面安装折腾

Arch Linux ARM (树莓派)配置和桌面安装折腾

作者: 不着调的小男生 | 来源:发表于2017-06-24 09:22 被阅读660次

    Arch Linux 我对他的赞赏超过了Debian和之类的衍生版.Arch Linux也很邪教,这要得名于他的Arch WiKi.这很赞,因为你的大部分问题都可以在WiKi找到你要的答案,同样包括了Arch Linux arm 树莓派版的系统安装.
    可以参考我的简书,完成你的树莓派系统的安装(只是翻译了官方的英文):树莓派2 Arch Linux ARM 安装
    安装环境也需要一个物理机的Linux系统,推荐Ubuntu(社区做的很不错特别在国内的论坛,大部分教学都是Ubuntu,相对的Debian很少出现,虽然兼容度极高).


    文章内容的继续建立在你已经安装树莓派Arch的基础上,如果你没有安装下面的步骤不适合你参考.

    为了满足朋友的要求,才有此文.

    开始 Go!

    更新你的系统

    升级更新你的系统到最新状态
    sudo pacman -Syu     
    

    配置sudo账户权限

    sudo 使一般用户不需要知道超级用户的密码即可获得权限。

    ####安装sudo
    pacman -S sudo   
    ####配置sudo
    nano /etc/sudoers
    

    去除下列行的#号

    %wheel ALL=(ALL) ALL
    %wheel ALL=(ALL) NOPASSWD: ALL
    

    安装中文字体

    sudo pacman -S adobe-source-han-sans-cn-fonts
    
    如果安装叫诶术后bash显示乱码
    sudo nano /etc/bash.bashrc
    ####添加:
    export LANG=en_US.utf8
    export LC_ALL=en_US.utf8
    

    设置系统时间

    timedatectl set-timezone Asia/Shanghai
    
    timedatectl set-local-rtc false
    

    声卡驱动的安装

    sudo pacman -S pulseaudio pavucontrol
    sudo pacman -S pulseaudio-alsa libcanberra-gstreamer
    sudo pacman -S gstreamer0.10-plugins gst-libav gst-vaapi
    sudo pacman -S gst-plugins-good gst-plugins-ugly
    sudo nano /boot/config.txt
    ####添加如下代码:
    dtparam=audio=on
    hdmi_drive=2
    

    桌面环境的安装(LXQT)

    sudo pacman -S xorg-server xf86-video-fbdev xorg-xrefresh
    sudo pacman -S desktop-file-utils
    sudo pacman -S lxqt oxygen-icons
    sudo packer -S qterminal
    ####单用户不一定需要Display-Manager
    sudo pacman -S sddm
    sudo sh -c "sddm --example-config > /etc/sddm.conf"
    sudo systemctl enable sddm
    sudo systemctl start sddm
    
    

    蓝牙(树莓派3)

    sudo pacman -S bluez bluez-utils
    ####需要自己安装配置yaourt,这里不阐明
    yaourt -S pi-bluetooth
    systemctl start bluetooth.service
    systemctl enable bluetooth.service
    sudo systemctl enable brcm43438.service
    sudo reboot
    
    

    Wi-Fi配置

    sudo pacman -Syu networkmanager network-manager-applet
    systemctl enable NetworkManager
    systemctl start NetworkManager
    sudo ifconfig wlan0 up
    ifconfig wlan0
    

    文章部分参考于网络,毕竟我的2b没有蓝牙和WIFI,为了确保文章的可用性,还是希望大家有什么错误指出来.

    相关文章

      网友评论

        本文标题:Arch Linux ARM (树莓派)配置和桌面安装折腾

        本文链接:https://www.haomeiwen.com/subject/oiohcxtx.html