No output screen when run from file manager


 
Thread Tools Search this Thread
Top Forums Programming No output screen when run from file manager
# 1  
Old 11-25-2016
No output screen when run from file manager

So I have ported a C++ program from windows to linux
and when I run it from terminal all is well. However
when executed from file manager there is no screen output.
The program runs and does what it should, just the problem
of not knowing if there are errors or if its even complete. Is there a way to have it open in terminal automatically?
Thanks.
# 2  
Old 11-25-2016
Well, without knowing what you code is supposed to do, how it talks to the screen etc., it's a bit difficult.

Are you saying that this is written for a text screen session, but you want to fire it from the GUI? You might need to associate the file type with a program in the GUI (I've only done this on Windows) in such a way that it opens a console session to run the command. Of course this might affect all files with that suffix.

You could also write a wrapper that opens the console and forces the command in too.



I hope that this helps,
Robin
# 3  
Old 11-25-2016
Basic C++ code uses stdout, and does not "know" about Windows at all. Windowing requires a fair amount of code - when you run something like it has to call whatever windowing libraries your system has.

Visual Studio handles that in Windows. Since we know zero about your system, we are giving you "zero" kinds of answers. If you want actual help:
1. what UNIX/Linux system
2. what gui do you have? KDE, Gnome, etc.
3. do you use an IDE on the UNIX/Linux side?


If the program is smallish, posting the code will also help.
This User Gave Thanks to jim mcnamara For This Post:
# 4  
Old 11-25-2016
Here are my system details:
EDITION="Cinnamon 64-bit"
DESCRIPTION="Linux Mint 18 Sarah"
DESKTOP=Gnome
TOOLKIT=GTK


Quote:
Originally Posted by rbatte1
Are you saying that this is written for a text screen session, but you want to fire it from the GUI?
Correct!

Quote:
Originally Posted by jim mcnamara
3. do you use an IDE on the UNIX/Linux side?
No, compile from the command line.

Funny thing is just about anything with a file extension I double click in file manager will give me the option to run
in terminal but not this. Mint doesn't show an option to add gnome terminal under "open with other application"
# 5  
Old 11-26-2016
You may want to check the configuration files for links between your program's extension and the terminal to open. Or, for a test, you could give it an extension that opens a window.
# 6  
Old 11-26-2016
Specifically your file associations are broken or do not exist:

Run the file manager (Caja), right-click on the file, select Properties and the Open With tab. Now, click on one of the radio buttons for the listed applications. If none shows, the file you create from compiling has to have recognized extension, as RudiC said. Try .exe as the extension:

from the command line:

Code:
mv output_file output_file.exe
# or if it already has an extension:
mv output_file.[whatever is here] output_file.exe

Re-run Caja.
This User Gave Thanks to jim mcnamara For This Post:
# 7  
Old 11-26-2016
Quote:
Originally Posted by jim mcnamara
Run the file manager (Caja), right-click on the file, select Properties and the Open With tab. Now, click on one of the radio buttons for the listed applications. If none shows, the file you create from compiling has to have recognized extension, as RudiC said. Try .exe as the extension:
I have done this and there is no terminal listed, I have manually added terminal but all that will do is open terminal and not run the program.


I have renamed extension exe,bin,run and they all behave the same as the current no extension.

Quote:
Originally Posted by RudiC
Or, for a test, you could give it an extension that opens a window.
If I rename to .txt extension, double clicking program
will open dialog with option to run in terminal and it will execute without problem with visible screen output.
But at some point I'm going to forget that .txt file is executable.
Even renaming the extension something like .runme won't work
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Screen output to a file

Hi All, I am trying to out of shell script when i run it like sh /mypath/abc.sh ....a screen log should be generated whenever i input the values, when above the script prompt for values Regards Amarendra (3 Replies)
Discussion started by: amar1208
3 Replies

2. Shell Programming and Scripting

Run a program-print parameters to output file-replace op file contents with max 4th col

Hi Friends, This is the only solution to my task. So, any help is highly appreciated. I have a file cat input1.bed chr1 100 200 abc chr1 120 300 def chr1 145 226 ghi chr2 567 600 unix Now, I have another file by name input2.bed (This file is a binary file not readable by the... (7 Replies)
Discussion started by: jacobs.smith
7 Replies

3. Shell Programming and Scripting

Awk script to run a sql and print the output to an output file

Hi All, I have around 900 Select Sql's which I would like to run in an awk script and print the output of those sql's in an txt file. Can you anyone pls let me know how do I do it and execute the awk script? Thanks. (4 Replies)
Discussion started by: adept
4 Replies

4. Shell Programming and Scripting

Redirect the output in a file and on screen

I am trying to get following result from the scipt I have. First time it generates the o/p in correct format. However if I run it again it appends to the existing file. I would like to see o/p on screen as well as save it in file. Everytime it should create new file. ## I/P file 0174 0175... (3 Replies)
Discussion started by: dynamax
3 Replies

5. Shell Programming and Scripting

Run a bash script, display on the screen and save all information in a file including error info

Hi all, How to: Run a bash script, display on the screen and save all information in a file including error information. For example: I have a bash script called test.sh now I want to run the test.sh and display the output on the screen and save the output including error info to a file. ... (1 Reply)
Discussion started by: Damon sine
1 Replies

6. Shell Programming and Scripting

Complete Screen Output to Log File

Hi, I would need to log the whole screen ouput to a log file. All Inputs from the Agent, all echo´s and DBMS Outputs from the PL/SQL. Basicly everything what I can see during the run on the screen. I tried it already with #exec 2>$BASELOG/RUN.log #exec 1>$BASELOG/RUN.log #exec >... (1 Reply)
Discussion started by: enjoy
1 Replies

7. UNIX for Dummies Questions & Answers

how to print script output to screen and file

Hi all, I have a script that bulk loads thousands of lines of data. I need to log the output during the execution of the script. I know I can redirect (">") the output to a file; however, I want the output going to both the screen and the log file. I thought I could use pipe to pipe the... (10 Replies)
Discussion started by: orahi001
10 Replies

8. UNIX Desktop Questions & Answers

Output terminal sessions to screen and log file

I would like to use a terminal session to ssh to switches and routers. I need to capture data while logged into switches to a file I can email for troubleshooting. I use termial to log into Cisco switch, run the sh tech command, and then sent the output to cisco. Is there a way to run a... (4 Replies)
Discussion started by: tdelliott
4 Replies

9. UNIX for Dummies Questions & Answers

Seeing the screen output beyond the scroll capability for the last run command

HI , I forgot to redirect my op to a file.The op which is quite huge , thus printed on the screen.However bcoz of the limited viewing in the screenI can not see the whole of the output.. Is there anyway I can see the full op.My run takes half a day for finnishing ..So I am refraining... (1 Reply)
Discussion started by: bimukt
1 Replies

10. Shell Programming and Scripting

Putting screen output in a log file

I want to output screen messages to a logfile when executing an automated script. I have tried the script and command to do this but with no luck. Thanks, Nicole (5 Replies)
Discussion started by: nsutti
5 Replies
Login or Register to Ask a Question