部分答案...正在进行中...

部分答案...正在进行中...

这里这是显示正在发生的事情的视频链接。我用手机拍摄的,所以画质较差,请谅解。

当我打开笔记本电脑时,我输入密码来设置驱动器,登录屏幕弹出,我输入密码,屏幕变黑,出现的下一个屏幕是登录屏幕。我再次输入密码,按回车键,同样的事情发生了。

当我在终端中输入时,

ls -al .*thority
pwd

输出是,首先,

-rw------- 1 amolith amolith 14000 Jun 19 11:21 .ICEauthority
-rw------- 1 amolith amolith    59 Jun 19 14:19 .Xauthority

然后

/home/amolith

ls -al当我在目录中运行该命令时home,以下是输出。

total 24
drwxr-xr-x  4 root    root     4096 Jun  3 11:28 .
drwxr-xr-x 24 root    root     4096 Jun  8 09:30 ..
drwr------ 41 amolith amolith 12288 Jun 19 14:19 amolith
drwxrwxr-x  3 root    root     4096 Jun  3 11:28 .encryptfs

df运行该命令时,

Filesystem                  1K-blocks     Used Available Use% Mounted on
udev                           932664        0   9326764   0% /dev
tempfs                         191324     6164    185160   4% /run
/dev/mapper/ubuntu--vg-root  12831848 12234968         0 100% /
tmpfs                          956604       12    956592   1% /dev.shm
tmpfs                            5120        4      5116   1% /run/lock
tmpfs                          956604        0    956604   0% /sys/fs/cgroup
/dev/loopo                      81408    81408         0 100% /snap/core/1689
/dev/loop1                     366336   366336         0 100% /snap/libreoffice/19
/dev/loop2                     187008   187008         0 100% /snap/atom/8
/dev/loop3                     187008   187008         0 100% /snap/atom/9
/dev/sda1                      474712   123440    322242  28% /boot
tmpfs                          191320        8    191312   1% /run/user/112
tmpfs                          191320        0    191320   0% /run/user/1000
/home/amolith/.Private       12831848 12831848         0 100% /home/amolith

当我以 root 身份登录时:

Error found when loading /root/.profile:
mesg: ttyname failed: Inappropriate ioctl for device

当我输入`ls -alt | more -7

total 133596
-rw-------  1 amolith amolith   18585 Jun 20 13:19 .bash_history
drwxr-xr-x 41 amolith amolith   12288 Jun 20 13:03 .
-rw-------  1 amolith amolith      59 Jun 20 13:03 .Xauthority
drwxr-xr-x 38 amolith amolith   12288 Jun 20 09:17 .cache
drwx------  3 amolith amolith    4096 Jun 19 14:16 .gnupg

当我跑步时grep mesg .profile

mesg n || true

当我跑步时ls -l / | more 在此处输入图片描述

dpkg -l *nvidia*输出:

Desired=Unknown/Install/Remove/Purge/Hole
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name          Version    Architecture Description
++-==============-==========-============-=================================================
un nvidia-common  <none>     <none>       (no description available)
un nvidia-legacy- <none>     <none>       (no description available)
un nvidia-prime   <none>     <none>       (no description available)
un nvidia-vdpau-d <none>     <none>       (no description available)

我对 Ubuntu 还很陌生;一个半星期前我从 ChromeOS 开始使用它,所以一切对我来说都很陌生和新奇。任何帮助都将不胜感激!

答案1

部分答案...正在进行中...

步骤1:(重新编辑添加新内容,然后重新启动)

sudo pico /etc/lightdm/lightdm.conf

[LightDM]
[SeatDefaults]
greeter-show-manual-login=true
allow-guest=true
[XDMCPServer]
[VNCServer]

第2步:

  • 以普通用户身份登录文本终端
  • 类型ls -al .*thority*
  • 你应该至少看到两个 .old 文件,如果重新创建的话,可能会看到更多
  • 如果你只看到两个 .old 文件
    • mv .ICEauthority.old .ICEauthority
    • mv .Xauthority.old .Xauthority

步骤#3:

  • 输入ls -alt | more -7并显示前五行(请复制/粘贴到您的问题中,而不是在评论中)

步骤4:

  • 类型sudo passwd root
  • 输入您的管理员密码
  • 输入两次 root 的新密码
  • 输入exit,然后按 control-alt-f7 返回正常登录屏幕
  • 尝试使用新密码登录 root

步骤#5:

  • 在正常登录屏幕上,使用向上/向下箭头,查看是否出现访客,以及您是否可以以访客身份登录

步骤#6:

  • 在根帐户中
  • terminal从破折号开始
  • 编辑个人资料
    • pico .profile或者gedit .profile
  • 改成mesg n || truetty -s && mesg n || true
  • 保存文件并退出 pico/gedit
  • 注销,重新以 root 身份登录并确认没有错误

相关内容