知行迭代
导航
首页
最近更改
随机页面
常用
分类目录
Linux命令
Mediawiki常用
电脑技巧
工具
链入页面
相关更改
特殊页面
页面信息
登录
查看“Ubuntu”的源代码
←
Ubuntu
页面
讨论
阅读
查看源代码
查看历史
因为以下原因,您没有权限编辑本页:
您请求的操作仅限属于该用户组的用户执行:[
[1]
]
您可以查看和复制此页面的源代码。
Ubuntu是一个[[Linux]]的发行版,由Canonical公司发布并提供商业支持。Ubuntu项目公开承诺开源软件开发的原则;鼓励人们使用自由软件,研究它的运作原理,改进和分发。Ubuntu是著名的[[Linux]]发行版之一,基于[[Debian]]发行版和GNOME桌面环境。 ==简介== ===时间轴=== *2004年10月20日,马克·舍特尔沃斯创立并发布Ubuntu第一个版本Ubuntu 4.10,它以Debian为开发蓝本。 *2005年7月8日,马克·舍特尔沃斯与Canonical有限公司宣布成立Ubuntu基金会,并提供1千万美元作为启始营运资金。但直至2006年,此基金会仍未投入运作。马克·舍特尔沃斯形容此基金会是在Canonical有限公司出现财务危机时的紧急营运资金。 ===版本=== ===安装=== ====制作启动U盘==== Ubuntu官方教程使用[[Rufus]]软件制作启动U盘,下面使用[[UltraISO]]软件制作启动U盘,只是写启动盘可以用试用版。 *打开UltraISO,选择下载好的Ubuntu系统 *点击菜单栏‘启动’》‘写入硬盘映像’ *在对话框的‘硬盘驱动器’处选择要刻录的U盘 *然后点击‘写入’,注意U盘会被格式化所有资料都没有 *启动U盘制作完成,可以用它在任何电脑安装Ubuntu {{了解更多 |[https://ubuntu.com/tutorials/tutorial-create-a-usb-stick-on-windows#1-overview Ubuntu 教程:Windows上制作启动U盘] }} ====安装到电脑==== ====安装到U盘==== ==软件== ===软件安装=== ===常用软件=== {| class="wikitable" style="width: 100%; ! 名称 ! 描述 ! 网址 |- | [[KVM]] | | |- | [[VMware Workstation]] | | [https://www.vmware.com/products/workstation-pro.html 官网] [https://www.vmware.com/products/workstation-pro/workstation-pro-evaluation.html 下载] |- | [[搜狗输入法]] | 有自定义短语功能,支持多行空格等。Windows上有广告弹窗。 <br \><br \>安装:<br \>1.安装fcitx。<code>sudo apt-get install fcitx</code> <br \>2.添加中文语言支持 <br \>3.下载安装搜狗输入法。<code>sudo dpkg -i sogoupinyin_版本号_amd64.deb</code> 。如果安装过程提示缺少依赖<code>sudo apt -f install</code><br \><br \>设置为默认输入法,点击桌面右上角键盘图标->设置(Configure)->Input Method将sougoupinyin移动到最上边。 | [https://pinyin.sogou.com/linux/ 官网] [https://pinyin.sogou.com/linux/help.php 安装指南] |- | 网易音乐 | 安装:<br \>1.点击下载客户端,其他操作系统客户端,Linux版 <br \>2.双击下载的deb文件安装 | [https://music.163.com/ 官网] [https://music.163.com/#/download 下载] |- | qq音乐 | | [https://y.qq.com/download/download.html 下载] |- | [[Conky]] | 桌面环境的系统监控工具。免费开源,高度可定制。<br \><br \>安装:<code>sudo apt-get install conky</code> | [https://github.com/brndnmtthws/conky 官网] |- | btop | | |} ==安全设置== ===用户管理=== ===防火墙设置=== ==网络设置== ==安装驱动== ===显卡驱动=== {| class="wikitable" style="width: 100%; ! 方法 ! 描述 |- | Ubuntu软件库安装 | 推荐方法,简单快捷可更新。 <br \><br \>安装步骤:<br \>1.更新软件库 <code>sudo apt-get update</code> <br \>2.查找相关驱动 <code>sudo ubuntu-drivers devices</code> ,后面带recommend是系统推荐版本<br \>3.安装驱动,安装指定版本如<code>sudo apt-get install nvidia-driver-470</code>,直接安装系统推荐版本 <code>sudo ubuntu-drivers install</code> <br \>4.如果UEFI模式,需要导入签名。 <br \>5.重启系统 <code>reboot</code>,验证是否安装成功 <code>sudo nvidia-smi</code> |- | NVIDIA官网驱动安装 | |- | | |} {{了解更多 |[https://www.itzgeek.com/post/how-to-install-nvidia-drivers-on-ubuntu-20-04-ubuntu-18-04.html itzgeek.com:如何在 Ubuntu 20.04 和 Ubuntu 18.04 安装NVIDIA驱动] |[https://ubuntu.com/blog/how-to-sign-things-for-secure-boot Ubuntu 博客:Secure Boot模式下如何签名] |[https://askubuntu.com/questions/1023036/how-to-install-nvidia-driver-with-secure-boot-enabled askubuntu.com:Secure Boot模式下如何安装NVIDIA驱动] |[https://askubuntu.com/questions/762254/why-do-i-get-required-key-not-available-when-install-3rd-party-kernel-modules/762255#762255 askubuntu.com:https://askubuntu.com/questions/1116778/how-to-set-the-resume-variable-to-override-these-issues] }} ====常见问题==== I: The initramfs will attempt to resume from /dev/sda2 <syntaxhighlight lang="bash"> blkid | awk -F\" '/swap/ {print $2}' printf "RESUME=UUID=$(blkid | awk -F\" '/swap/ {print $2}')\n" | sudo tee /etc/initramfs-tools/conf.d/resume sudo update-initramfs -u -k all </syntaxhighlight> {{了解更多 |[https://askubuntu.com/questions/1116778/how-to-set-the-resume-variable-to-override-these-issues askubuntu.com:] }} == 备份与还原 == === 备份软件 === {| class="wikitable" style="width: 100%; ! 名称 ! 接口 ! 级别 ! 描述 ! 网站 |- | Déjà Dup | 图形界面 | 文件 | Ubuntu的默认桌面备份管理器,桌面左上角点击Activities,搜索<code>backups</code>可以找到。 | [https://wiki.gnome.org/Apps/DejaDup gnome] |- | tar | 命令行 | 文件 | | |- | rsync | 命令行 | 文件 | | |- | dd | 命令行 | 硬盘 | 使用dd镜像硬盘,配合gzip压缩文件。不能使用dd备份当前正在使用的块存储设备,会导致文件系统上的不一致。 | |- | [[clonezilla]] | 图形界面 | 硬盘 | 系统备份还原软件。 | |- | [[partclone]] | 命令行 | 硬盘 | 系统备份还原软件。clonezilla开发,clonezilla也默认使用partclone备份。 | |- | TimeShift | 图形界面 | | 系统备份还原软件。 | |- | systemback | 图形界面 | 硬盘 | 系统备份还原软件。 | |} {{了解更多 |[https://help.ubuntu.com/community/BackupYourSystem Ubuntu 社区wiki:备份你的系统] |[https://en.wikipedia.org/wiki/List_of_backup_software 维基百科:备份软件列表] |[https://www.dell.com/support/kbdoc/zh-cn/000152034/如何使用Ubuntu Linux备份实用程序备份戴尔PC ] }} ==常见问题== ===显示问题=== 1.屏幕偶尔几秒黑屏一下。 2.黑屏后无法唤起。 ===声音问题=== 1.USB耳机或音响没声音 *在终端输入<code>alsamixer</code>命令,打开AlsaMixer *按F6选择声卡 *查看声音设备的id:<code>cat /proc/asound/cards</code> *打开<code>sudo gpedit /etc/asound.conf</code>,根据声卡id设置默认声卡。 <syntaxhighlight lang="bash"> defaults.ctl.card 2 defaults.pcm.card 2 </syntaxhighlight> {{了解更多 |[https://askubuntu.com/questions/447718/no-sound-on-usb-headset-how-to-manage-soundcards-and-audio-devices askubuntu.com:USB耳机上没有声音,如何管理声卡和音频设备?] }} ==资源== ===官网=== *Ubuntu 官网:https://ubuntu.com/ *Ubuntu 文档:https://help.ubuntu.com/ *Ubuntu 社区wiki:https://help.ubuntu.com/community/CommunityHelpWiki *Ubuntu 桌面指南:https://help.ubuntu.com/stable/ubuntu-help/index.html.zh-CN ===相关网页=== *[https://zh.wikipedia.org/zh-cn/Ubuntu 维基百科:Ubuntu] [[分类:系统软件]]
本页使用的模板:
模板:Linux分区方案
(
查看源代码
)
模板:了解更多
(
查看源代码
)
返回至“
Ubuntu
”。