Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/noam-alum/lpi_010_160_exam
lpi linux essentials 010-160 practice exam
https://github.com/noam-alum/lpi_010_160_exam
Last synced: 8 days ago
JSON representation
lpi linux essentials 010-160 practice exam
- Host: GitHub
- URL: https://github.com/noam-alum/lpi_010_160_exam
- Owner: Noam-Alum
- Created: 2024-02-03T12:20:22.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-02-14T17:51:29.000Z (9 months ago)
- Last Synced: 2024-02-14T18:46:35.203Z (9 months ago)
- Language: Python
- Size: 7.58 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LPI 010-160 practice exam
The Linux Essentials certificate validates a demonstrated understanding of the following: FOSS, the various communities, and licenses. Knowledge of open source applications in the workplace as they relate to closed source equivalents.
This code lets you practice for LPI 010-160 (Linux Essentials) with real questions from the exam.
# Installation
## OS X & Linux:
### wget
```sh
# Install via wget
wget -O lpi_010_160_exam.zip https://codeload.github.com/Noam-Alum/lpi_010_160_exam/zip/refs/heads/main
unzip lpi_010_160_exam.zip
mv lpi_010_160_exam-main/lpi_linux.py .
rm -rf lpi_010_160_exam-main/ lpi_010_160_exam.zip
```
### git clone
```sh
# Install via git clone
git clone --single-branch --branch main --depth 1 https://github.com/Noam-Alum/lpi_010_160_exam.git && mv lpi_010_160_exam/lpi_linux.py . && rm -rf lpi_010_160_exam
```
## Windows:
### wget
```sh
# Install via wget
wget -O lpi_010_160_exam.zip https://codeload.github.com/Noam-Alum/lpi_010_160_exam/zip/refs/heads/main
Expand-Archive -Path 'lpi_010_160_exam.zip' -DestinationPath '.'
Move-Item -Path 'lpi_010_160_exam-main\lpi.py' -Destination '.'
Remove-Item -Path 'lpi_010_160_exam-main' -Recurse -Force
Remove-Item -Path 'lpi_010_160_exam.zip' -Force```
### git clone
```sh
# Install via git clone
git clone --single-branch --branch main --depth 1 https://github.com/Noam-Alum/lpi_010_160_exam.git
move lpi_010_160_exam\lpi.py .
rmdir /s /q lpi_010_160_exam```
# Usage example
## This section is reffering to linux users.
### set privileges
Firstly you need to fix the scripts permission
```sh
chmod +x lpi_linux.py
```### Run the script
After fixing the permissions of the file we can run the script with the following commands:
```sh
./lpi_linux.py
# or
/usr/bin/python3 lpi_linux.py
```
> You must have python3 installed!
Then you should get the first question of the bunch, e.g. :
```sh
1| What are the differences between hard disk drives and solid state disks? (Choose two.)Options:
1) Hard disks can fail due to physical damage, while solid state disks cannot fail.
2) Solid state disks can store many times as much data as hard disk drives.
3) /dev/sda is a hard disk device while /dev/ssda is a solid state disk.
4) Solid state disks provide faster access to stored data than hard disks.
5) Hard disks have a motor and moving parts, solid state disks do not.
>
```
## Contact
Noam Alum – [Website](https://alum.sh) – [email protected]