How to install with terminal Software on Ubuntu?

Peer

Well-Known Member
Joined
May 17, 2018
Messages
587
Reaction score
305
Credits
402
How to install with terminal Software on Ubuntu?
 


Then it says:
ubuntu@ubuntu:~$ sudo apt instal vlc
E: Ungültige Operation instal
 
Then it says:
ubuntu@ubuntu:~$ sudo apt install vlc
Paketlisten werden gelesen... Fertig
Abhängigkeitsbaum wird aufgebaut.
Statusinformationen werden eingelesen.... Fertig
E: Paket vlc kann nicht gefunden werden.
 
If memory serves - vlc is in Ubuntu's "Universe" repository.
Have you added/enabled the Universe repository yet?
If not, you can enable it using:
Code:
sudo add-apt-repository universe

Once the universe repo is enabled, it will remain enabled in the future (unless you ever decide to remove/disable it).
Next you will need update your packages lists:
Code:
sudo apt update

Then you should be able to install vlc:
Code:
sudo apt install vlc

I hope this helps!
 


Top