OnITRoad - 常见问题
Ubuntu 20.04 如何安装Cinnamon桌面
Ubuntu 20.04 如何安装Cinnamon桌面 安装Cinnamon Desktop桌面: $ sudo apt install cinnamon-desktop-environment
Views:0 2020-07-07
列出Ubuntu 20.04中所有服务
列出Ubuntu 20.04中所有服务 列出所有服务 列出所有服务单元文件: $ systemctl list-units --all --type=service --no-pager 列出所有可用的系统单元文件: $ systemctl list-unit-files --no-pager 可以使用grep过滤我们想要的服务单元文件: $ systemctl list-unit-fil
Views:0 2020-07-07
Ubuntu 20.04 NTP服务器
Ubuntu 20.04 NTP服务器 NTP 表示 National Time Protocol(国家时间协议),用于多台计算机的时钟同步。 NTP服务器负责彼此同步地保持一组计算机。 安装NTP服务器 首先,我们需要安装NTP服务器。 $ sudo apt install ntp 配置NTP服务器 NTP服务器已经预先配置了一些服务器池,我们可以在“/etc/ntp.conf”文件中
Views:0 2020-07-07
Ubuntu 20.04使用UFW打开HTTP端口80和HTTPS端口443
Ubuntu 20.04使用UFW打开HTTP端口80和HTTPS端口443 Ubuntu检查UFW防火墙的状态。 # ufw status verbose Status: active Logging: on (low) Default: deny (incoming), allow (outgoing), disabled (routed) New profiles: skip 我们有多种选
Views:0 2020-07-07
在Ubuntu 20.04中如何切换Python版本
在Ubuntu 20.04中如何切换Python版本 检查Ubuntu系统上有哪些Python版本: $ ls /usr/bin/python* /usr/bin/python2 /usr/bin/python2.7 /usr/bin/python3 /usr/bin/python3.7 /usr/bin/python3.7m /usr/bin/python3.8 /usr/bin/p
Views:0 2020-07-07
如何从Windows 10远程桌面访问Ubuntu 20.04
如何从Windows 10远程桌面访问Ubuntu 20.04 在Ubuntu 20.04桌面上安装远程桌面协议(RDP)服务器XRDP。 $ sudo apt install xrdp 设置开机自启动并运行远程桌面共享服务器xrdp: $ sudo systemctl enable --now xrdp 打开3389TCP端口: $ sudo ufw allow from any to an
Views:0 2020-07-07
Ubuntu 20.04如何重置root密码
Ubuntu 20.04如何重置root密码 重新启动进入 GRUB 菜单。 如果 Ubuntu 20.04 是唯一安装的操作系统,您需要一直按“SHIFT”才能显示 GRUB 菜单。 接下来,当您的“Ubuntu”启动菜单突出显示时,按“e”编辑 Grub 菜单项。 使用上下箭头键,找到 ro quiet splash $vt_handoff 这行。 并把 ro quiet splash $v
Views:0 2020-07-07
Ubuntu 20.04系统备份和恢复
Ubuntu 20.04系统备份和恢复 在本教程中,我们将使用TimeShift来创建Ubuntu 20.04系统的完整系统备份快照。 安装Timeshift备份实用程序: $ sudo apt install timeshift 使用Timeshift GUI创建备份 创建系统备份 在左上方打开timeshift应用程序。 在这里,你有两个选择。首先是使用“rsync”作为主要备份工具或者
Views:0 2020-07-07
Ubuntu报错 sudo: add-apt-repository: command not found
Ubuntu报错 sudo: add-apt-repository: command not found 问题: sudo: add-apt-repository: command not found 修复add-apt-repository:命令在Ubuntu中找不到的错误很简单。 add-apt-repository命令取决于 software-properties-common 。 只需运行
Views:0 2020-07-07
Ubuntu启动修复
Ubuntu启动修复 如何修复无法正确启动的Ubuntu系统? 创建Live CD / USB 创建引导光盘/U盘 下载Ubuntu live ISO文件,然后使用dd写入光盘或者U盘。 $ sudo dd if="ubuntu-18.04-desktop-amd64.iso" of=/dev/sdX bs=8M 将U盘插入机器,选择从U盘引导。 当Ubuntu出现时,选择“
Views:0 2020-07-07
Ubuntu 打开共享对象文件
Ubuntu 打开共享对象文件 问题 error while loading shared libraries: libudev.so.0: Cannot open shared object file: No such file or directory 解决方案 要安装libudev.so.0,我们需要手动下载并安装libudev0_175-0ubuntu9。 这可以通过使用gdeb
Views:0 2020-07-07
Ubuntu 20.04 GPG error: The following signatures couldn’t be verified
Ubuntu 20.04 GPG error: The following signatures couldn’t be verified 问题 Ubuntu 20.04 GPG error: The following signatures couldn't be verified “ubuntu 20.04 gpg错误:无法验证以下签名” 这个错误常见于 将第三方包存储库添加到APT包管理
Views:0 2020-07-07
Ubuntu Linux如何关闭ACPI
Ubuntu Linux如何关闭ACPI 如何禁用“ACPI”? 系统启动时,连续按下“SHIFT”以进入GRUB启动菜单。 接下来,选择语言。 按F6进入可用的内核引导参数。 选择 acpi=off,然后按回车键。 出现x标记时, 按Esc关闭GRUB引导参数列表。 选择适当的安装选项并按回车键。
Views:0 2020-07-07
Ubuntu Missing plugin: gstreamer
Ubuntu Missing plugin: gstreamer 问题 在Ubuntu中播放视频或者音频时报错: ** Message: Missing plugin: gstreamer|1.0|totem|MPEG-4 AAC decoder|decoder-audio/mpeg, mpegversion=(int)4, level=(string)2, base-profile=(str
Views:0 2020-07-07
Ubuntu 存储库
Ubuntu 存储库 Ubuntu 区分“免费”软件和非免费软件。 Ubuntu 存储库中的软件分为四个类别或者组件 - main、restricted、universe 和 multiverse。 四个主要存储库是: Main - 受规范支持的免费和开源软件。 Universe - 社区维护的免费和开源软件。 restricted- 设备的专有驱动程序。 Multiverse - 受版权或者法律
Views:0 2020-07-07
Ubuntu The headers for the current running kernel were not found
Ubuntu The headers for the current running kernel were not found 问题 VirtualBox Guest Additions在构建阶段时报错: Building the VirtualBox Guest Additions kernel modules The headers for the current running ker
Views:0 2020-07-07