![]() |
I can't install Tor Web Browser - Printable Version +- Linux Lite Forums (https://www.linuxliteos.com/forums) +-- Forum: Software - Support (https://www.linuxliteos.com/forums/forumdisplay.php?fid=5) +--- Forum: Installing Software (https://www.linuxliteos.com/forums/forumdisplay.php?fid=18) +--- Thread: I can't install Tor Web Browser (/showthread.php?tid=3292) Pages:
1
2
|
I can't install Tor Web Browser - Humble - 09-07-2016 hello everyone i just installed linux lite i am new i dont know anything except using firefox i tried to install tor browser and found this topic LINK i entered the code that guy gave in terminal then entered my password but i got this : Code: E: Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily unavailable) what i should do? correct me if i am doing something wrong thanks Re: I can't install Tor Web Browser - firenice03 - 09-08-2016 Welcome aboard!!!... You have another application open; synaptic or lite software, updates or similar (you would of had to enter credentials)... Close those open applications ... Then rerun command.. Re: I can't install Tor Web Browser - Humble - 09-08-2016 (09-08-2016, 12:37 AM)firenice03 link Wrote: Welcome aboard!!!... closing and reopening terminal works or should i enter a command to close the applications? as i said i am new so Edit: so i restarted my computer and then run the command this time got this error: Code: comp@lighter-lin:~$ sudo apt-get update && sudo apt-get install tor-web-browser Re: I can't install Tor Web Browser - firenice03 - 09-08-2016 Looks like it was interrupted/stopped during update process.. Try Code: sudo apt-get update If updates process try to rerun Code: sudo apt-get update && sudo apt-get install tor-web-browser Re: I can't install Tor Web Browser - Humble - 09-08-2016 (09-08-2016, 01:40 AM)firenice03 link Wrote: Looks like update was interrupted.. It may have stopped on one of the same error: Code: comp@lighter-lin:~$ sudo apt-get update Edit: tried to open lite software this is what i get: ![]() i dont know should i reinstall they system? Re: I can't install Tor Web Browser - firenice03 - 09-08-2016 Try Code: sudo dpkg --configure -a It may not appear it did much then Code: sudo apt-get update Re: I can't install Tor Web Browser - Humble - 09-08-2016 (09-08-2016, 02:06 AM)firenice03 link Wrote: Try it worked thank you but do i have to do the same method everytime i install something or its only one time an can you please explain to me these commands do Re: I can't install Tor Web Browser - firenice03 - 09-08-2016 Quote:it worked thank you but do i have to do the same method everytime i install somethingYou shouldn't have to. You can rerun updates when ever you like.. Quote:can you please explain to me these commands doSure... I'll do my best ;D Code: sudo apt-get update Code: sudo apt-get update && sudo apt-get install APP_NAME_HERE apt-get install is the install command of apt-get essentially what Synaptic does in the background. There are other variables remove purge, update and others. Code: sudo dpkg --configure -a Re: I can't install Tor Web Browser - Humble - 09-08-2016 thank you really helped me i got my answer this topic can be locked now ![]() Re: I can't install Tor Web Browser - LL-user - 09-08-2016 I hope firenice03 doesn't mind me adding some additional information for clarification. Code: sudo apt-get update The above command is not updating the system itself, i.e. is not downloading and installing any software packages. For this to happen you need to run: Code: sudo apt-get upgrade Hope that helps ![]() |