FUNDAMENTALS OF COMPUTER

COMPUTER PROGRAMMING FUNDAMENTALS

RASPBERRY PI PROJECT IDEAS

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
Which command removes software and frees up space on Raspberry PI? Hint:Two correct answers
A
sudo apt-get update && sudo apt-get upgrade
B
sudo apt-get remove ace-of-penguins
C
sudeo apt-get autoremove
D
dpkg ____ list
E
dpkg ____ status packagename
Explanation: 

Detailed explanation-1: -You’ll frequently see the prefix sudo before commands, which means you’re telling the computer to run the command with super user privileges. An alternative to entering sudo before each command is to access the root command prompt, which runs every command with super user privileges.

Detailed explanation-2: -You run sudo apt-get upgrade to install available upgrades of all packages currently installed on the system from the sources configured via sources. list file. New packages will be installed if required to satisfy dependencies, but existing packages will never be removed.

There is 1 question to complete.