如何将 ~/.profile 重置为默认值

如何将 ~/.profile 重置为默认值

我一直在~/.profile尝试使用这个文件来永久地向我的$PATH变量中添加一些内容但似乎我造成了一些损害。

我现在无法登录 ubuntu。当我输入密码时,屏幕变黑 1 秒,然后返回登录屏幕。如果我按 Ctrl+Alt+F3,我可以使用命令行登录。我的问题是,我如何~/.profile从命令行进行编辑以便再次登录?

答案1

您可以使用以下方式编辑文件

nano ~/.profile

要恢复默认设置,~/.profile请使用

cp /etc/skel/.profile ~/.profile

由于这将覆盖您修改的版本,您可能需要先保存您的版本:

cp ~/.profile ~/.profile.invalid

答案2

如果你收到错误信息:

cp /etc/skel/.profile: command not found

尝试:

/usr/bin/cp /etc/skel/.profile ~/.profile

如果这不起作用,请尝试使用 sudo 权限:

/usr/bin/sudo /usr/bin/cp /etc/skel/.profile ~/.profile

然后重启

相关内容