GentooInstallation Logo

Gentoo Installation

Gentoo-zh 群推荐安装教程: https://bitbili.net/gentoo-linux-installation-and-usage-tutorial.html https://www.yafa.moe/post/install-gentoo-on-mac/ https://litterhougelangley.life/blog/2021/05/21/gentoo/ https://blog.bugsur.xyz/gentoo-handbook-installation/ 群内如果要贴长文本,可以使用网络粘贴板: <输出命令> | curl -F "c=@-" "https://fars.ee/" 并且将输出里的 url: http://far.se/xxxx 这行贴出来。使用的时候可以 curl http://far.se/xxxx | less 查看 QEMU/Linux guest Configuration Host To create a disk image for the virtual machine, run: ...

March 21, 2022 · 111 min · Sakamoto Kurome
openSUSE Logo

openSUSE

/ˌoʊpənˈsuːzə/ Desktop Installation DVD 方式安装 安装系统方式选择 DVD 方式安装。使用其他方式安装系统需要耗费比其他安装方式更多的时间和精力,除非必要,建议优先使用离线的 DVD 镜像进行系统安装。这里推荐滚动更新的 openSUSE Tumbleweed。 最好是到官网下载 openSUSE 风滚草的 ISO 文件。因为 openSUSE 官网才会第一时间提供最新版风滚草 ISO 映像文件,国内的很多镜像站一般不会第一时间就同步过来,这样就免除在安装好后还需要更新系统的步骤。 语言选择 English,因为 Linux 需要经常使用 Terminal,中文家目录是很不方便的。 Network 可以设置 static hostname。 System Role 选择 Desktop with KDE Plasma,openSUSE 的 KDE 是最好的。 分区 选择默认的 btrfs 文件系统,可通过 Guided setup 进行多样化设置,比如 root 用 btrfs,home 用 ext4,单独为 swap 建立一个分区之类的。 Clock and time zone 记得使用 UTC 和 NTP。 在最后的部分,可以点击 Software,取消安装 Office Software、Games、KDE PIM 模组。 在安装好后,先进桌面进行初始化,如果不进直接在 TTY 中恢复备份,就不会创建 Desktop、Download 等目录其他配置。 镜像源 国内镜像 我们官方的态度是不鼓励直接使用镜像的。 ...

March 9, 2022 · 97 min · Sakamoto Kurome
Fedora Logo

Fedora

[fəˈdɔrə] 费多拉 Fedora Linux 版本 Fedora 官方版本 Fedora 工作站是可以安装在笔记本电脑和台式电脑上的 Linux。 此版本附带 GNOME 作为默认桌面环境和各种标准应用程序,以便 Fedora Linux 已准备好用于日常使用。 Fedora 服务器专门用于服务器计算机用途,提供邮件服务器、DNS 等的安装。 Fedora 物联网,用于物联网和设备边缘生态系统。 Fedora CoreOS 是一种自动更新的操作系统,旨在安全、大规模地运行容器化工作负载。 Fedora Silverblue 是一个不可变的桌面操作系统,旨在支持以容器为中心的工作流。 Fedora Spins Fedora 的默认桌面环境是 GNOME,但是如果您喜欢其他的桌面环境,比如 KDE Plasma Desktop 或 Xfce,您可以下载一个您喜欢的桌面环境的 spin,然后用它来安装 Fedora,为您选择的桌面环境进行预配置。 ...

March 9, 2022 · 94 min · Sakamoto Kurome
Ubuntu Logo

Ubuntu Tips

New Ubuntu #!/usr/bin/bash # Restore backup cp .bashrc .bashrc.orig rsync -av /media/kurome/DataBackup/Backup/Home/latest/ /home/kurome/ # Update system # sudo sed -i 's@//.*archive.ubuntu.com@//mirrors.ustc.edu.cn@g' /etc/apt/sources.list # will list in "Other Software" sudo apt update sudo apt upgrade -y # Enable custom systemd service sudo cp ~/.opt/clash/clash.service /usr/lib/systemd/system sudo cp ~/.opt/aria2/aria2.service /usr/lib/systemd/system sudo systemctl enable --now clash.service sudo systemctl enable aria2.service # Install apps sudo sh -c 'echo "deb [arch=amd64 trusted=yes] https://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google-chrome.list' sudo apt update sudo apt install -y \ adb fastboot \ aria2 \ qemu-system-x86 samba \ git \ proxychains \ tree zfsutils-linux \ fcitx5 fcitx5-chinese-addons \ google-chrome-stable \ timeshift \ libfuse2 \ vlc \ curl \ vim \ fdupes \ python3-pip \ libavcodec-extra \ unrar \ goldendict \ kdeconnect \ gnome-tweaks gnome-shell-extensions chrome-gnome-shell \ gnome-shell-extension-gsconnect \ breeze qt5ct sudo apt install -y --no-install-recommends ubuntu-restricted-extras sudo dpkg -i ~/.opt/pkgs/wps-office_11.1.0.11664.XA_amd64.deb sudo dpkg -i ~/.opt/pkgs/Xmind-for-Linux-amd64bit-22.11.2556.deb sudo sed -e 's/9050$/7890/g' -i /etc/proxychains.conf # System settings gsettings set org.gnome.desktop.media-handling automount false gsettings set org.gnome.shell.extensions.dash-to-dock show-mounts false gsettings set org.gnome.shell.extensions.dash-to-dock click-action cycle-windows gsettings set org.gnome.shell app-picker-layout "[]" # ufw sudo ufw enable sudo ufw allow proto tcp from 192.168.2.0/24 to any port 1714:1764 sudo ufw allow proto udp from 192.168.2.0/24 to any port 1714:1764 # utc sudo timedatectl set-local-rtc 0 Backup Your System Ubuntu Help Arch Wiki Rsync 备份 ...

March 8, 2022 · 85 min · Sakamoto Kurome
Ubuntu Logo

Ubuntu System

Package Management dpkg 管理软件包 dpkg 意即 Debian 包管理器(Debian PacKaGe manager)。dpkg 是一个可以安装、构建、删除及管理 Debian 软件包的命令行工具。 其它的一些工具如 dpkg-deb 和 dpkg-query 等使用 dpkg 作为执行某些操作的前端。 ...

March 8, 2022 · 211 min · Sakamoto Kurome