Merge pull request #14 from supdrewin/#14

Add descriptions for ArchLinux dependencies
This commit is contained in:
abbodi1406 2021-08-31 10:46:02 +03:00 committed by GitHub
commit 0fe85aa08a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View File

@ -308,6 +308,9 @@ if ! which cabextract >/dev/null 2>&1 \
# Linux # Linux
echo "If you use Debian or Ubuntu you can install these using:" echo "If you use Debian or Ubuntu you can install these using:"
echo "sudo apt-get install cabextract wimtools chntpw genisoimage" echo "sudo apt-get install cabextract wimtools chntpw genisoimage"
echo ""
echo "If you use Arch Linux you can install these using:"
echo "sudo pacman -S cabextract wimlib chntpw cdrtools"
elif [ `uname` == "Darwin" ]; then elif [ `uname` == "Darwin" ]; then
# macOS # macOS
echo "macOS requires Homebrew (https://brew.sh) to install the prerequisite software." echo "macOS requires Homebrew (https://brew.sh) to install the prerequisite software."

View File

@ -76,6 +76,11 @@ using the following command:
sudo apt-get install cabextract wimtools chntpw genisoimage sudo apt-get install cabextract wimtools chntpw genisoimage
``` ```
If you use Arch Linux you can also install these using the following command:
```bash
sudo pacman -S cabextract wimlib chntpw cdrtools
```
If you use any other distribution, then you will need to check its repository If you use any other distribution, then you will need to check its repository
for packages needed to run this script. for packages needed to run this script.