Complete the command to install the package named 'curl' using apt.
sudo apt [1] curlThe install command is used with apt to add new packages like curl.
Complete the command to update the package list on a Debian-based system.
sudo apt [1]The update command refreshes the list of available packages and their versions.
Fix the error in the command to remove the package 'nano' using apt.
sudo apt [1] nanoThe remove command deletes the specified package, here nano.
Fill both blanks to upgrade all packages after updating the package list.
sudo apt [1] && sudo apt [2]
First, update refreshes the package list, then upgrade installs the latest versions of packages.
Fill all three blanks to install 'git', update the package list, and then remove 'vim'.
sudo apt [1] git && sudo apt [2] && sudo apt [3] vim
The commands are: install to add git, update to refresh package info, and remove to uninstall vim.