我最近买了一台预装了 Ubuntu 的新戴尔笔记本电脑。但是,我不小心跳过了首次设置,通常需要配置时区和用户等内容。所以现在启动时我只有访客会话可用。所以我的问题是:我可以重新运行首次设置吗?如果不行,我该如何添加用户?
我遵循了这个问题的建议(如何重置丢失的管理密码?) 并设法创建了一个用户,但我无法用它登录 DE,因为它没有主目录,可能还有其他东西。
我正在使用 Ubuntu 16.10。
答案1
后以 root 身份登录你应该使用命令adduser <username>
,这将创建一个新用户、其主目录等。或者,当用户已经创建时,您可以手动创建其主目录:
mkdir /home/<username> # Make the user's home directory
cp /etc/skel/* /home/<username>/ # Copy the content of the skeletal dirirectory
chown -R <username>:<username> /home/<username> # Change the ownership
最后你必须将此用户添加到 sudo 组,因此它将具有管理员(root)的权限 - 您可以使用:usermod -a -G sudo <username>
或adduser <username> sudo
。
答案2
您可以使用 Ubuntu Live 版本启动您的笔记本电脑,chroot 到安装在笔记本电脑上的系统,然后添加新用户。 - 第一部分使用本教程:https://help.ubuntu.com/community/LiveCdRecovery - 第二部分看这里(从命令行部分添加用户):https://help.ubuntu.com/community/AddUsersHowto