change aria2 to wget
This commit is contained in:
parent
e03b59409a
commit
2177830173
|
@ -26,13 +26,12 @@ This bash script helps you to install `Adobe Illustrator CC` on your Linux distr
|
||||||
|
|
||||||
2-make sure the following packages are already installed on your Linux distro
|
2-make sure the following packages are already installed on your Linux distro
|
||||||
* `wine`
|
* `wine`
|
||||||
* `aria2c`
|
|
||||||
* `md5sum`
|
* `md5sum`
|
||||||
|
|
||||||
|
|
||||||
if they are not already installed you can install them using your package manager for example in arch Linux
|
if they are not already installed you can install them using your package manager for example in arch Linux
|
||||||
```bash
|
```bash
|
||||||
sudo pacman -S wine aria2
|
sudo pacman -S wine
|
||||||
```
|
```
|
||||||
3- make sure you have enough storage in your `/home` partition about `2 GiB`
|
3- make sure you have enough storage in your `/home` partition about `2 GiB`
|
||||||
> 400 MiB will be free after installation
|
> 400 MiB will be free after installation
|
||||||
|
@ -87,6 +86,8 @@ chmod +x uninstaller.sh
|
||||||
```
|
```
|
||||||
---
|
---
|
||||||
<a href="https://poshtiban.com">
|
<a href="https://poshtiban.com">
|
||||||
<img src="https://raw.githubusercontent.com/Gictorbit/photoshopCClinux/master/images/poshtibancom.png" width="25%"></a> <a href="https://github.com/Gictorbit/photoshopCClinux">
|
<img src="https://raw.githubusercontent.com/Gictorbit/photoshopCClinux/master/images/poshtibancom.png" width="25%"></a>
|
||||||
|
|
||||||
|
<a href="https://github.com/Gictorbit/photoshopCClinux">
|
||||||
<img src="https://github.com/Gictorbit/photoshopCClinux/raw/master/images/AdobePhotoshop-icon.png" width="9%">
|
<img src="https://github.com/Gictorbit/photoshopCClinux/raw/master/images/AdobePhotoshop-icon.png" width="9%">
|
||||||
</a>
|
</a>
|
|
@ -9,7 +9,7 @@ function main() {
|
||||||
setup_log "================| script executed |================"
|
setup_log "================| script executed |================"
|
||||||
|
|
||||||
#make sure aria2c and wine package is already installed
|
#make sure aria2c and wine package is already installed
|
||||||
package_installed aria2c
|
# package_installed aria2c
|
||||||
package_installed wine
|
package_installed wine
|
||||||
package_installed md5sum
|
package_installed md5sum
|
||||||
|
|
||||||
|
|
|
@ -183,7 +183,8 @@ function download_component() {
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
show_message "downloading $4 ..."
|
show_message "downloading $4 ..."
|
||||||
aria2c -c -x 8 -d $CACHE_PATH -o $4 $3
|
# aria2c -c -x 8 -d $CACHE_PATH -o $4 $3
|
||||||
|
wget $3 -P $CACHE_PATH
|
||||||
if [ $? -eq 0 ];then
|
if [ $? -eq 0 ];then
|
||||||
notify-send "$4 download completed" -i "download"
|
notify-send "$4 download completed" -i "download"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue