![]() |
Execute file error - Printable Version +- Linux Lite Forums (https://www.freecinema2022.gq/forums) +-- Forum: Software - Support (https://www.freecinema2022.gq/forums/forumdisplay.php?fid=5) +--- Forum: Installing Software (https://www.freecinema2022.gq/forums/forumdisplay.php?fid=18) +--- Thread: Execute file error (/showthread.php?tid=1665) |
Execute file error - Heebma - 03-22-2015 I have installed a program but ( executable ) it does not start up ? I have unpacked it from a tar.gz file but after that is only the execute file not working... Re: Execute file error - Valtam - 03-22-2015 Heebma, we are going to need a lot more information than 'a program'. What program? Where did you get it from? Thank you. Re: Execute file error - Heebma - 03-23-2015 Dear Jerry, it's the popcorn time fille from the site. Packed in tar.gz and then according the help module unpack........ Re: Execute file error - shengchieh - 03-24-2015 Usually (but not always) tarball needs to be unpack and compile. After you unpack, do you see a README.txt (or something simliar) file. If so, read it. here's some link about compiling softwares. http://www.maximumpc.com/article/howtos/howto_compile_programs_from_source_linux (Compile Programs From Source in Linux) http://www.tuxfiles.org/linuxhelp/softinstall.html (Installing software from source in Linux) http://www.linux.lk/software/compiling.php (Compiling Software Packages; 2003) http://howto.wired.com/wiredhowtos/index.cgi?page_name=compile_software_from_source_code;action=display;category=Work (Compile Software from Source Code) http://liquidweather.net/howto/index.php?id=82 (compiling software) Sheng-Chieh Re: Execute file error - LL-user - 03-24-2015 Hi Heebma, I know the following is not solving the root cause of your problem and I do encourage you to dig deeper to find out what's going on. In regard to that it would be necessary for you to post more details of what you exactly have done and what exactly you encounter, what output/ errors you get. If you just want it to work I would suggest to use the available PPA. It also would make sure you are keeping updated. Run the following commands and you should find a "Popcorn Time" menu entry under Internet: $ sudo apt-add-repository ppa:webupd8team/popcorntime -> confirm that you want to add it $ sudo apt-get update && sudo apt-get install popcorn-time -y Re: Execute file error - Valtam - 03-24-2015 Right click on the file, select 'Make file executable'. Then double click on it. Re: Execute file error - Heebma - 03-26-2015 Thanks for al the reply's . I am a beginner but lurning a lot. It's still not working because with every offered commands i'm getting errors. Thanks a lot Re: Execute file error - LL-user - 03-26-2015 Hi Heebma, If you post which command you've tried and which errors you got then we might be able to help you ![]() Re: Execute file error - N4RPS - 03-29-2015 Hello! Heebma, did you get this error? E: Could not open lock file /var/lib/dpkg/lock - open (13: Permission denied) E: Unable to lock the administration directory (/var/lib/dpkg/), are you root? You probably did, because I did, also. You got this error because of a syntax error: Code: $ sudo apt-get update && apt-get install popcorn-time -y The correct syntax is as follows: Code: $ sudo apt-get update && sudo apt-get install popcorn-time -y Change this, and LL-user's reply SHOULD work for you. Unless you're in a root terminal ('#' instead of' '$'), when concatenating sudo commands, both commands must start with sudo. (The usage of root terminals is discouraged. It makes it much easier to inflict catastrophic ignorance upon your own system.) No offense intended to anyone, but it is what it is... 73 DE N4RPS Rob Re: Execute file error - LL-user - 03-29-2015 Thanks Rob! ![]() And sorry for the syntax error ![]() |