-2

I installed Linux OS 4 and while it was doing its first update the laptop went into stand by. When I closed it and I opened the computer again it caused me to think the computer was off but it was just in standby. So I turned it off while it was installing the updates.

When I turned it back on the Wifi and touchpad didn't work. I have to use a physical mouse for it to work.

I looked around a little and found a possible command for solving this:

E: dpkg was interrupted... run 'sudo dpkg --configure -a'

But when I enter the command in the terminal it asks for:

[sudo] password for admin:

When I try to put my password in, the computer won't recognize that I am typing it.

Riley
  • 1

1 Answers1

2

To run a command as administrator (user "root"), use sudo <command> and enter your password. You won't get any visual feedback; it is meant to be that way, as a security feature.

See man sudo_root for details.

Radu Rădeanu
  • 169,590