0% found this document useful (0 votes)
8 views

Module_4_Installation_and_configuration_of_software_in_Linux_LFCP

The document provides a guide on installing and configuring software in Linux, specifically focusing on methods such as using the Ubuntu Software Centre, .deb files, and package management tools like APT and DPKG. It includes commands for installing, updating, and removing software packages on Debian-based systems. Additionally, it mentions specific software installations like VLC, Brave browser, and Nessus Scanner, along with challenges for installing Metasploit and Qradar SIEM.

Uploaded by

goku
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views

Module_4_Installation_and_configuration_of_software_in_Linux_LFCP

The document provides a guide on installing and configuring software in Linux, specifically focusing on methods such as using the Ubuntu Software Centre, .deb files, and package management tools like APT and DPKG. It includes commands for installing, updating, and removing software packages on Debian-based systems. Additionally, it mentions specific software installations like VLC, Brave browser, and Nessus Scanner, along with challenges for installing Metasploit and Qradar SIEM.

Uploaded by

goku
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

10/2/2024

Module 4
Installation and configuration
software in Linux
Thu Ya

Installation software in Microsoft

Install software in Linux


• Ubuntu software centre
• .deb file
• apt install
• .sh file
• Running python script
• Just getting the source code and need to manually compile the
software.

1
10/2/2024

APT
• In Linux, the apt (Advanced Package Tool) is a package management
system used to install, update, and remove software packages. It is
commonly used in Debian-based distributions such as Ubuntu.
• Before installing new software, it's a good practice to update the
package lists to ensure you have the latest information about
available packages. [ apt update ]
• To install a package, use the apt install command followed by the
package name. For example, to install the vim text editor: sudo apt
install vim
• If you want to remove a previously installed package, you can use the
apt remove command

DPKG
• dpkg is the Debian package management system in Linux. It is a low-
level tool that handles the installation, configuration, and removal of
software packages on Debian-based systems, such as Debian itself,
Ubuntu, and related distributions. The name "dpkg" stands for
"Debian Package.“
• To install a Debian package using dpkg, you can use the following
command: sudo dpkg -i package.deb
• To remove a package, use the -r option: sudo dpkg -r package_name
• To remove a package along with its configuration files, use the -P
option: sudo dpkg -P package_name

Install VLC from Ubuntu Software Centre

2
10/2/2024

Installation chrome in ubuntu

Installation
of brave
browser in
Kali

Tor Network
Access

https://brave.com/linux/

Installation of Nessus Scanner on Kali Linux

3
10/2/2024

Challenge
• Installation of Metasploit in Ubuntu.
• Installation of Qradar SIEM community edition in centos.

You might also like