Skip to main content

CompTIA Linux+ Certificate. Study. 1



I have recently obtained CompTIA Linux+ certificate and this is what to study to pass!!

CompTIA Linux+ can be achieved through two difference exam path.

 We are only talking about LX0-103 & LX0-104.

Exam detail can be found in CompTIA homepage.

https://certification.comptia.org/certifications/linux#examdetails

There are sections you need to focus.

1. System Architecture
2. Linux INstallation and package management
3. GNU and Unix commands
4. Devices, linux Filesystems, filessystem hierachy Standard


Question 1
lspci

NAME
       lspci - list all PCI devices

SYNOPSIS
       lspci [options]

DESCRIPTION
       lspci is a utility for displaying information about PCI buses in the system and devices connected to them.

       By default, it shows a brief list of devices. Use the options described below to request either a more verbose output
or output intended for parsing by other programs.

       If you are going to report bugs in PCI device drivers or in lspci itself, please include output of "lspci -vvx" or eve
n better "lspci -vvxxx" (however, see below for possible caveats).

       Some  parts  of the output, especially in the highly verbose modes, are probably intelligible only to experienced PCI
hackers. For exact definitions of the fields, please consult either the PCI
       specifications or the header.h and /usr/include/linux/pci.h include files.

       Access to some parts of the PCI configuration space is restricted to root on many operating systems, so the features o
f lspci available to normal users are limited.  However,  lspci  tries  its
       best to display as much as available and mark all other information with <access denied> text.

--

 -b     Bus-centric view. Show all IRQ numbers and addresses as seen by the cards on the PCI bus instead of as seen by the kernel.

       -n     Show PCI vendor and device codes as numbers instead of looking them up in the PCI ID list.

       -nn    Show PCI vendor and device codes as both numbers and names.

--

What is lspci displaying? 

Comments

Popular posts from this blog

How to configure LDAPS, LDAP over SSL, using CA Certificate Service on Domain Controller in Windows Server 2016

This post is to provide an instruction on how to set up LDAPS (LDAP over SSL) on Domain Controller using single-tier CA hierachy. Reasons for Enabling LDAPS By default, LDAP communications between client and server applications are not encrypted. This means that it would be possible to use a network monitoring device or software and view the communications traveling between LDAP client and server computers. This is especially problematic when an LDAP simple bind is used because credentials (username and password) is passed over the network unencrypted. This could quickly lead to the compromise of credentials.  Reasons for enabling Lightweight Directory Access Protocol (LDAP) over Secure Sockets Layer (SSL) / Transport Layer Security (TLS) also known as LDAPS include: Some applications authenticate with Active Directory Domain Services (AD DS) through simple BIND. As simple BIND exposes the users’ credentials in clear text, use of Kerberos is preferred. If simp...

[Tableau] How to install Tableau Server on Centos 7 / Redhat

Step 1: Install Tableau Server package and start Tableau Services Manager 1. Log on as a user with sudo access to the computer where you want to install Tableau Server. 2. Downalod installer from below Tableau download page. https://www.tableau.com/products/server/download/linux // use WINSCP or any preferred utility to move Tableau Server installation file to Centos. 3. Use the package manager to install the Tableau Server package. sudo yum update sudo yum install tableau-server-<version>.x86_64.rpm -- Non-default location—To install to a non-default location, you must use rpm -i. You will also need to install all dependent packages. See the note below. Run the following command: sudo rpm -i --prefix /preferred/install/path tableau-server.rpm Refer to https://onlinehelp.tableau.com/current/server-linux/en-us/setup.htm -- 4. Navigate to the scripts directory: cd /opt/tableau/tableau_server/packages/scripts.'version'/ 5. Ru...

[AD LDAP] How to install LDAP in AD in Windows Server 2019 in VirtualBox