Showing all 2 results
Price
Category
Promt Tags
AcademicIntegrity
Algorithms
BusinessFinance
BusinessGrowth
BusinessIntelligence
BusinessLeadership
BusinessStrategy
ComputerScience
ContentEditing
ContentOptimization
CustomerFeedback
DataAnalysis
DataStructures
DataVisualization
DigitalTransformation
EdTech
EducationalResearch
EntertainmentLaw
FamilyLaw
FinancialPlanning
Fitness Tracker
GlowNaturally
GreenInnovation
HigherEducation
HypothesisTesting
InnovationSummit
IntellectualProperty
InterviewPreparation
KeywordOptimization
MarketingStrategy
NetworkingOpportunities
ProfessionalDevelopment
ProfessionalGrowth
ProofreadingTips
PureRadiance
RenewableEnergy
SEOContent
StatisticalAnalysis
StudentEngagement
SustainableArchitecture
SustainableBeauty
TechInnovation
TimelessBeauty
TimelessGlow
UserExperience
SystemAdministration
Generate a list of installed packages
€15.31 – €16.22Price range: €15.31 through €16.22. Debian-Based Systems (e.g., Ubuntu, Debian):
Use the dpkg command:
bash
dpkg --get-selections
- Description: Lists all installed packages.
- Optional: Pipe the output to
grepto filter results, e.g.,dpkg --get-selections | grep package-name.
Alternatively, use the apt command:
bash
apt list --installed
- Description: Displays a list of installed packages with version information.
2. Red Hat-Based Systems (e.g., CentOS, Fedora, RHEL):
Use the rpm command:
bash
rpm -qa
- Description: Lists all installed packages.
Alternatively, use the dnf or yum package managers:
bash
dnf list installed
or
bash
yum list installed
- Description: Outputs installed packages with version and repository details.
3. Arch-Based Systems (e.g., Arch Linux, Manjaro):
Use the pacman command:
bash
pacman -Q
- Description: Lists all installed packages with their version numbers.
4. SUSE-Based Systems (e.g., openSUSE):
Use the zypper command:
bash
zypper se --installed-only
- Description: Lists installed packages along with their version details.
5. Generic Package Manager (Flatpak):
If you are using Flatpak, list installed packages with:
bash
flatpak list
Tips for Usage
- Redirect output to a file for analysis:
bash
dpkg --get-selections > installed_packages.txt
- Combine with
grepfor targeted searches:bashrpm -qa | grep package-name
Select options
This product has multiple variants. The options may be chosen on the product page
Write basic Linux commands
€12.32 – €16.22Price range: €12.32 through €16.2210 Basic Linux Commands for Beginners
ls- Description: Lists the contents of a directory.
- Example:
lsshows files and folders in the current directory. Usels -lfor detailed information orls -ato include hidden files.
pwd- Description: Prints the current working directory.
- Example:
pwddisplays the absolute path of the directory you are in.
cd- Description: Changes the current directory.
- Example:
cd /home/user/Documentsnavigates to the Documents folder. Usecd ..to move up one directory.
mkdir- Description: Creates a new directory.
- Example:
mkdir projectcreates a directory named “project” in the current location.
rm- Description: Removes files or directories.
- Example:
rm file.txtdeletes the file “file.txt.” Userm -r folderto remove a directory and its contents recursively.
cp- Description: Copies files or directories.
- Example:
cp file1.txt file2.txtcopies “file1.txt” to “file2.txt.” Usecp -r source_folder target_folderto copy directories.
mv- Description: Moves or renames files and directories.
- Example:
mv file.txt /home/user/Documentsmoves “file.txt” to the Documents folder.mv oldname.txt newname.txtrenames the file.
touch- Description: Creates an empty file or updates the timestamp of an existing file.
- Example:
touch newfile.txtcreates an empty file named “newfile.txt.”
cat- Description: Displays the contents of a file.
- Example:
cat file.txtoutputs the content of “file.txt” to the terminal.
man- Description: Displays the manual (help) pages for a command.
- Example:
man lsprovides detailed information and options for thelscommand.
Tips for Beginners:
- Use
--helpafter any command (e.g.,ls --help) for a brief overview of options and usage. - Use Tab for auto-completion and Ctrl + C to cancel running commands.
Select options
This product has multiple variants. The options may be chosen on the product page