![]() |
Ubuntu Software - Printable Version +- Linux Lite Forums (https://www.linuxliteos.com/forums) +-- Forum: Software - Support (https://www.linuxliteos.com/forums/forumdisplay.php?fid=5) +--- Forum: Other (https://www.linuxliteos.com/forums/forumdisplay.php?fid=20) +--- Thread: Ubuntu Software (/showthread.php?tid=5599) |
Ubuntu Software - jimalexander - 09-18-2018 Good afternoon! I apologize if this has been asked already, i searched and came up with nothing. I migrated to Lite because Ubuntu LTS was slowing down on my laptop. HP, 8 gig RAM and 2.2gHz core i3. I need to install software that was in the Ubuntu software center (QUCS circuit simulator to be specific) but I can't find it through the synaptic manager or apt-get. Is there any way to install this software, since Lite is based on Ubuntu? Thanks all! Re: Ubuntu Software - Moltke - 09-18-2018 Hi [member=8096]jimalexander[/member] and welcome to the LL forum ![]() Quote:I need to install software that was in the Ubuntu software center (QUCS circuit simulator to be specific) but I can't find it through the synaptic manager or apt-get. First, you need to add the repository: Code: $ sudo add-apt-repository ppa:fransschreuder1/qucs Then, update apt-get database Code: $ sudo apt-get update and finally install QUCS Code: $ sudo apt-get install qucs Hope this helps! ![]() Re: Ubuntu Software - jimalexander - 09-18-2018 Thanks for the help. Everything works fine until i get to the installation, which throws: E: Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily unavailable) E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it? Thanks,J Re: Ubuntu Software - bitsnpcs - 09-18-2018 Hello jimalexander, can you try rebooting then installation. After the reboot if it still will not install there are other ways to try for this error, to remove the lock. Re: Ubuntu Software - Moltke - 09-18-2018 (09-18-2018, 09:39 PM)jimalexander link Wrote: Thanks for the help. This often happens when there's a still running instance of apt being stopped before, i.e you stopped it with Ctrl + C. I've also faced this problem and this is the way I know how to fix it, and if you google for it that would be the first result you'll get. In a terminal type Code: $ sudo rm /var/lib/dpkg/lock Code: $ sudo dpkg --configure -a Code: $ sudo apt-get update Code: $ sudo apt-get install qucs Hope this helps! ![]() |