Ticker

6/recent/ticker-posts

Google IT Support Professional:Technical Support Fundamentals (Week 5) Software Quiz Answers.

Don't just copy for the sake of completion. 
Make sure you understand first.

Installing, Updating, and Removing Software on Linux

readme.md

Install, Update and Remove Software for Linux

This lab will teach you how to perform basic software maintenance on Linux machines. This includes installing software that’s not already present on the machines, updating existing software to the newest version, and uninstalling software that‘s no longer needed. All of these tasks are very common in the IT world, so it’s important that you’re able to do them quickly and effectively. What you’ll do

There are three learning objectives for this lab:
  • Install - You’ll install the Mozilla Firefox web browser. There’s currently no version of Firefox on the machine you’ll be using, so it will be a fresh installation.
  • Update - The machine you’ll be using comes preinstalled with an old version of the VLC Media Player. You’ll update VLC to the newest version.
  • Uninstall - You’ll uninstall the GIMP photo-editing tool from the machine, removing it entirely.

script.sh

  1. # verifying installed software
  2. dpkg -s firefox
  3. dpkg -s gimp
  4. dpkg -s vlc

  5. sudo apt-get install -f # force an update of the package manager, update vlc
  6. dpkg -s vlc
  7. sudo apt-get update
  8. sudo apt-get install firefox # install firefox
  9. dpkg -s firefox
  10. sudo apt-get remove gimp # remove gimp
  11. dpkg -s gimp

一一一一一一一一一一一一一一一一一一一一一一一一一一一一一一一一一一一一一一一一一一一一一一

           Machine Learning Coursera-All weeks solutions [Assignment + Quiz] click here
       &
                         Coursera Google Data Analytics Professional Quiz Answers   click here
    &
                       Coursera Google IT Support Professional   click here

Have no concerns to ask doubts in the comment section. I will give my best to answer it.
If you find this helpful kindly comment and share the post.
This is the simplest way to encourage me to keep doing such work.


Thanks & Regards,
- Wolf

Post a Comment

0 Comments