# Ubuntu安装使用记录 **Repository Path**: cszhaoqm/ubuntu_notes ## Basic Information - **Project Name**: Ubuntu安装使用记录 - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-05-20 - **Last Updated**: 2025-04-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Ubuntu安装使用记录 ## 目录搜索 find / -type d -iname "ssh" ## Ubuntu Windows双系统启动顺序修改 在已有windows系统后再安装Ubuntu系统,安装成功后默认使用的是grub引导,此时默认进入的是ubuntu系统。 但是希望默认进入的系统是windows,而不是等开机时进入引导后手动去选择windows,此时需要去改变默认启动项。 进入ubuntu系统,打开一个terminal,进入/etc/default目录下 cd /etc/default 2. 打开grub文件,必须以sudo权限去打开,不然编辑后无法保存,因为权限不够 sudo vi grub 里面的内容如下: GRUB_DEFAULT=0 # 这里就是需要更改的地方,Windows是4 #GRUB_HIDDEN_TIMEOUT=0 GRUB_HIDDEN_TIMEOUT_QUIET="true" GRUB_TIMEOUT="10" GRUB_DISTRIBUTOR="`lsb_release -i -s 2> /dev/null || echo Debian`" GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" GRUB_CMDLINE_LINUX="" 看你开机时你的windows在第几个就将 GRUB_DEFAULT=0 的零改为多少,当然从零开始数的,比如你的windows引导在第3行,那么上面的那个零就应该改成2,然后退出保存。 3. 更新引导: sudo update-grub 4. 重启后就会默认进入windows了。 ## 安装iBus输入法 ##