LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 04-03-2021, 08:50 AM   #1
PussEKatt
Member
 
Registered: Jan 2021
Posts: 53

Rep: Reputation: Disabled
Install questions 3


Yesterday I tried to download the ZX Spectrum emulator "fuse" I typed in the following in the terminal.
sudo apt-get install fuse-emulator-gtk
The terminal screen expanded and a whole lot of writing scrolled down.The cursor just stopped so after about 20 seconds I closed the terminal but I could not find fuse ?
So my questions are.
When the terminal stops does it say stopped or fuse successfully downloaded or something similar ? ( how do I know when the terminal has finished ?)
Where is my software ( in this case fuse ?
And 3 ( for future reference ) How will I run this software ? will it be downloaded as an exec file or something else ?
Anything else that is relevent to downloading software that I should know ?
 
Old 04-03-2021, 09:17 AM   #2
shruggy
Senior Member
 
Registered: Mar 2020
Posts: 3,670

Rep: Reputation: Disabled
1) Your thread name isn't meaningful. Please rename it.

2) You'll see if it's installed successfully by typing in the terminal:
Code:
dpkg -l fuse-emulator\*
If the first two characters for each package shown are ii then everything is OK.

3) fuse-emulator-gtk installs a .desktop file:
Code:
$ apt-file list fuse-emulator-gtk
fuse-emulator-gtk: /usr/bin/fuse-gtk
fuse-emulator-gtk: /usr/share/applications/fuse-gtk.desktop
fuse-emulator-gtk: /usr/share/doc/fuse-emulator-gtk/changelog.Debian.gz
fuse-emulator-gtk: /usr/share/doc/fuse-emulator-gtk/copyright
fuse-emulator-gtk: /usr/share/lintian/overrides/fuse-emulator-gtk
fuse-emulator-gtk: /usr/share/man/man1/fuse-gtk.1.gz
So, if you search for fuse in your desktop environment, it'll show up.
 
1 members found this post helpful.
Old 04-03-2021, 09:23 AM   #3
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,661

Rep: Reputation: Disabled
Quote:
how do I know when the terminal has finished ?
The command prompt will return, you will see blinking cursor. If there was an error it will be shown. And if you close the terminal prematurely the process running in terminal may not be finished.
 
Old 04-03-2021, 11:32 AM   #4
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,700

Rep: Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895
In addition,

What version of lubuntu are you running?

I just tried installing the emulator running Lubuntu 20 and it installed fine. Per the install instructions you would install fuse-emulator-common package which would automatically select the gtk package.

To elaborate on the other posts if installed properly fuse is automatically added to the games menu. Just click it and it will run.
 
Old 04-04-2021, 07:35 AM   #5
PussEKatt
Member
 
Registered: Jan 2021
Posts: 53

Original Poster
Rep: Reputation: Disabled
I typed what you said and I get "dpkg: error: unknown option -1"
Then it goes on about using apt and dpkg
 
Old 04-04-2021, 08:13 AM   #6
shruggy
Senior Member
 
Registered: Mar 2020
Posts: 3,670

Rep: Reputation: Disabled
It's not one (-1), but ell (-l).

Last edited by shruggy; 04-04-2021 at 08:16 AM.
 
Old 04-04-2021, 09:55 AM   #7
hazel
LQ Guru
 
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 7,573
Blog Entries: 19

Rep: Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452
The Linux command line observes the Napoleon principle. Napoleon used to say, "Only wake me if it's bad news." So you only get a message on the command line if something has gone wrong. It never says, "Job completed OK" or anything like that. If you get no message, just a prompt for the next command, then you can assume the earlier one has executed correctly.
 
1 members found this post helpful.
Old 04-04-2021, 10:35 AM   #8
shruggy
Senior Member
 
Registered: Mar 2020
Posts: 3,670

Rep: Reputation: Disabled
^Remindes me of this comment in the as7 source from pdp7-unix project. The joke was also quoted in the UNIX-HATERS Handbook.
 
Old 04-05-2021, 07:10 AM   #9
PussEKatt
Member
 
Registered: Jan 2021
Posts: 53

Original Poster
Rep: Reputation: Disabled
Ok, so I am embassised to say this...... but........ You see I come from Windows and on a Windows PC when you install software it shows up as a shortcut on your desktop.I was on my Linux PC ( I have 2 A Linux PC and a Windows desktop )I clicked on the Bluebird ( lower left ) and I noticed " Games" so I selected that, and there it is...Fuse.
So, obviously I installed it the first time.
I will keep this thread open till this time tomorrow in case anyone wants to add something.Then I will mark this thread closed.
Thanks guys for your quick response to my thread and your advice.
Im still learning Linux and enjoying the experiance.
 
Old 04-05-2021, 07:22 AM   #10
hazel
LQ Guru
 
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 7,573
Blog Entries: 19

Rep: Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452
Quote:
Originally Posted by PussEKatt View Post
Ok, so I am embassised to say this...... but........ You see I come from Windows and on a Windows PC when you install software it shows up as a shortcut on your desktop.
Most Linux desktops have those too. However they are never put up automatically when you install software as they are in Windows. That would be considered pushy and rude. It's your desktop after all, so you alone control what goes on it. If you right-click on the desktop and look at the menu you get, you will usually find an option to create short cuts to programs. Exactly how it is done depends on what desktop you are using.
 
1 members found this post helpful.
Old 04-05-2021, 07:37 AM   #11
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,700

Rep: Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895
Wrong thread...
 
Old 04-05-2021, 04:21 PM   #12
kareempharmacist
Member
 
Registered: Jan 2012
Location: Cairo, Egypt
Distribution: MX Linux, Ubuntu 18.04
Posts: 336

Rep: Reputation: 42
Please rename the thread before marking it as solved.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Solaris - Questions! Questions! Questions! qs_tahmeed Solaris / OpenSolaris 2 07-16-2005 05:27 AM
Questions, questions, and more questions NinjaBaby Linux - Networking 3 12-14-2004 11:25 AM
Questions Questions Questions extremebfn Linux - Networking 6 09-03-2004 12:15 AM
Questions, Questions, Questions Nappa Slackware 6 11-18-2003 02:56 PM
questions,questions,questions harddrive37 Linux - Networking 1 07-21-2003 10:21 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 03:39 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration