techahold / rustdeskinstall

Easy install Script for Rustdesk
MIT License
330 stars 105 forks source link

Update linuxclientinstall.sh #62

Closed meferspb closed 4 months ago

meferspb commented 7 months ago

curl not install default Installing curl in system

meferspb commented 7 months ago

In kubuntu 23.10 fresh install

meferspb commented 7 months ago

In kubuntu 23.10 fresh install not installing default curl

dinger1986 commented 7 months ago

can you do a check first something like

Check if curl is installed

if command -v curl >/dev/null 2>&1; then echo "curl is already installed." else echo "curl is not installed. Installing now..." sudo apt-get install curl -y fi