Friday, May 3, 2024
 Popular · Latest · Hot · Upcoming
1
rated 0 times [  1] [ 0]  / answers: 1 / hits: 1528  / 1 Year ago, tue, may 2, 2023, 6:19:29

I recently installed Tonido in Ubuntu ,but It is not starting How to uninstall it?I followed these steps to install



sudo mkdir /usr/local/tonido  
cd /usr/local/tonido
sudo wget http://www.tonido.com/download.php?tonido64.tar.gz
mv download.php?tonido64.tar.gz tonido64.tar.gz
sudo tar -zxvf tonido64.tar.gz
./tonido.sh start


from this website


More From » 14.04

 Answers
3

You haven't installed the application, only downloaded via wgetand extracted via tar and the script ./tonido.sh start installs nothing.



Therefore there is nothing to uninstall.



You could remove the misplaced archive in /usr/local/tonido.



sudo rm /usr/local/tonido/tonido64.tar.gz


and the extracted content. The archive doesn't contains a parent folder for tonido, therefore we can't delete a folder.



Remove the extracted files via



sudo tar tf tonido64.tar.gz | sudo xargs rm -r 2>/dev/null





Ok, I see now, you have created a folder /usr/local/tonido. You could also simply remove the folder /usr/local/tonido



sudo rm -r /usr/local/tonido

[#18631] Wednesday, May 3, 2023, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
irtuallyefu

Total Points: 429
Total Questions: 97
Total Answers: 119

Location: Hong Kong
Member since Tue, Oct 19, 2021
3 Years ago
irtuallyefu questions
;