0

So, I am using UBUNTU in a virtual machine. I tried this command in Xfce Terminal(I installed it) - sudo pacman -S make patch.But it is showing this after entering the correct psw - https://i.stack.imgur.com/GF0EB.png

lunix
  • 1

1 Answers1

0

You need to add yourself to the sudo group.

As root, run usermod -aG sudo jothamrizanth.

Also, pacman is Arch Linux's package manager. On Debian & Ubuntu, you can use apt install make patch to install make and patch.

P Varga
  • 328