LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


View Poll Results: Do you prefer to work in a terminal or in a GUI desktop?
terminal 44 61.11%
GUI 28 38.89%
Voters: 72. You may not vote on this poll

Reply
  Search this Thread
Old 08-14-2015, 08:00 PM   #16
replica9000
Senior Member
 
Registered: Jul 2006
Distribution: Debian Unstable
Posts: 1,126
Blog Entries: 2

Rep: Reputation: 260Reputation: 260Reputation: 260

I would use the terminal for a simple video conversion such as
Code:
ffmpeg -i video.264 -i audio.aac -vcodec copy -acodec copy newvideo.mp4
But I would probably use a GUI for a more complex conversion such as
Code:
x264 --ref 9 --deblock 1:0 --me umh --subme 10 --psy-rd 1.0:0.0 --no-mixed-refs --merange 64 --trellis 2 --cqm 0 --deadzone-inter 21 --deadzone-intra 11 --no-fast-pskip --chroma-qp-offset -2 --threads 12 --nr 0 --constrained-intra 0 --bframes 9 --b-pyramid 2 --b-adapt 2 --b-bias 0 --direct auto --weightp 2 --keyint 240 --min-keyint 23 --scenecut 40 --rc-lookahead 40 --pass 2 --bitrate 1244 --ratetol 1.0 --qcomp 0.60 --qpmin 10 --qpmax 51 --qpstep 4 --cplxblur 20.0 --qblur 0.5 --ipratio 1.40 --aq-strength 1.0 --fps 24000/1001 --input-res 720x496 -o video.264 video.mp2
 
Old 08-15-2015, 05:07 AM   #17
fatmac
LQ Guru
 
Registered: Sep 2011
Location: Upper Hale, Surrey/Hants Border, UK
Distribution: Mainly Devuan, antiX, & Void, with Tiny Core, Fatdog, & BSD thrown in.
Posts: 5,490

Rep: Reputation: Disabled
I use both, but tend to work in terminals, probably because I started computers using DOS, & Linux at the command line, at a time when getting a GUI working was a job in itself.
 
Old 08-18-2015, 09:07 AM   #18
onebuck
Moderator
 
Registered: Jan 2005
Location: Central Florida 20 minutes from Disney World
Distribution: SlackwareŽ
Posts: 13,925
Blog Entries: 44

Rep: Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159
Member response

Hi,

I rely mostly on the tty and use a GUI/DE when working online. Most of my work has been mostly using the best tool for the job. 'cli' does what I tell it it to do while a 'GUI' tends to complete as the author has composed it to do.

Have fun & enjoy!
 
Old 08-18-2015, 10:53 AM   #19
jamison20000e
Senior Member
 
Registered: Nov 2005
Location: ...uncanny valley... infinity\1975; (randomly born:) Milwaukee, WI, US( + travel,) Earth&Mars (I wish,) END BORDER$!◣◢┌∩┐ Fe26-E,e...
Distribution: any GPL that work on freest-HW; has been KDE, CLI, Novena-SBC but open.. http://goo.gl/NqgqJx &c ;-)
Posts: 4,888
Blog Entries: 2

Rep: Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567
Both.
 
Old 08-18-2015, 10:53 AM   #20
DavidMcCann
LQ Veteran
 
Registered: Jul 2006
Location: London
Distribution: PCLinuxOS, Debian
Posts: 6,140

Rep: Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314
I used computers for years without a GUI: CP/M, DOS, QDOS, even a bit of OS9. When GUIs came in, I heaved a sigh of relief. I've used the terminal just once this week, to turn off SEL while printing (Samsungs don't like it).
 
Old 08-20-2015, 11:13 AM   #21
CustomDesigned
LQ Newbie
 
Registered: Sep 2011
Posts: 12

Rep: Reputation: Disabled
Like astrogeek, except:

Quote:
Originally Posted by astrogeek View Post
I spend my days, every day, in a hierarchy of terminals managed by Tmux.

I do almost literally everything that is not inherently graphical through a terminal. Some things that come to mind...

...
Email - 99% GUI (Thunderbird)
...
I use alpine for email, and most HTML mail goes to quarantine. If you do, in fact, have some photo or video to send me - send a link, don't embed it in the email...
 
Old 08-20-2015, 11:34 AM   #22
ugjka
Member
 
Registered: May 2015
Location: Latvia
Distribution: Arch, Centos
Posts: 368
Blog Entries: 5

Rep: Reputation: 264Reputation: 264Reputation: 264
A lot of stuff is easier and more fun in a terminal. I always prefer text mode over cludgy gui's
 
Old 08-20-2015, 12:08 PM   #23
ericson007
Member
 
Registered: Sep 2004
Location: Japan
Distribution: CentOS 7.1
Posts: 735

Rep: Reputation: 154Reputation: 154
Second this. I am terrible at bash scripts and making terminal do magic for me and honestly my server is just to save hosting expenses where I am located and at the moment does not provide a real income stream.

I like using the gui to spin up kvm and to just get into the vm. But once we are in the vm, they are all just minimal installs.

So horses for courses. I get pretty annoyed at clickety click to find some silly file. For me the best thing about terminal is tab completion and the fact that it is easy to do something recursively. I would probably be a gui junky if I can just get those two things to work perfectly for me in gui.

Oh that and when not at the server I am stuck with vpn and ssh on my phone. Not pretty for gui type stuff.

I vote give me a gui, but I am not gonna complain about terminal, and don't think about taking it away. I got too many itches to scratch with it still. But first gotta get my head around that hell hound of a systemd that rattled my cage beyond comfort.

Last edited by ericson007; 08-20-2015 at 12:12 PM.
 
Old 08-20-2015, 11:19 PM   #24
Oz Col
LQ Newbie
 
Registered: Dec 2011
Posts: 4

Rep: Reputation: Disabled
GUI or Terminal.

I use both depending on the task. GUI is convenient sometimes, but terminal is often quicker and easier.
 
Old 08-24-2015, 01:16 PM   #25
wjaguar
LQ Newbie
 
Registered: Oct 2007
Distribution: Slackware
Posts: 22

Rep: Reputation: 24
Midnight Commander works in a terminal. Therefore, I work in a terminal.
 
Old 08-24-2015, 01:31 PM   #26
Ihatewindows522
Member
 
Registered: Oct 2014
Location: Fort Wayne
Distribution: Ubuntu 16.04 LTS
Posts: 616
Blog Entries: 2

Rep: Reputation: 166Reputation: 166
Really depends on the task or if something is broken. For example, right now I can't make any new filesystems via GNOME Disks (just crashes). cfdisk and mkfs.ext4 it is.

Also, for some reason launching Minecraft is a little tricky via the GUI, so I normally run that from the CLI.
 
Old 08-28-2015, 02:25 PM   #27
taupist
Member
 
Registered: Aug 2005
Location: Idaho
Distribution: Mandriva
Posts: 32
Blog Entries: 6

Rep: Reputation: 15
As has been said so many times, Both. I may not be the penultimate hacker, but I have to use what seems to be best for the task at hand.
 
Old 08-28-2015, 07:44 PM   #28
ardvark71
LQ Veteran
 
Registered: Feb 2015
Location: USA
Distribution: Lubuntu 14.04, 22.04, Windows 8.1 and 10
Posts: 6,282
Blog Entries: 4

Rep: Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842
GUI, definitely.
 
Old 08-29-2015, 07:25 AM   #29
Head_on_a_Stick
Senior Member
 
Registered: Dec 2014
Location: London, England
Distribution: Debian stable (and OpenBSD-current)
Posts: 1,187

Rep: Reputation: 285Reputation: 285Reputation: 285
Commando line all the way baby!

I don't trust GUIs...

EDIT: Apart from Firefox; I tried edbrowse for a while but I drifted back to FF eventually.

Last edited by Head_on_a_Stick; 08-29-2015 at 07:26 AM.
 
Old 08-29-2015, 09:13 AM   #30
catkin
LQ 5k Club
 
Registered: Dec 2008
Location: Tamil Nadu, India
Distribution: Debian
Posts: 8,578
Blog Entries: 31

Rep: Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208
A factor in favour of the terminal is ease of semi-automation and efficiency of documentation.

Procedures can be documented in a WIKI and copy+pasted to the terminal.

Actions (including illustrative diffs) can be copy+pasted from terminal to issue tracker (screen shots are slower and use more storage),
 
  


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 On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
how do i uninstall things using the terminal jilloper Linux - Software 13 03-18-2016 07:17 PM
[SOLVED] How to open a graphical program from a terminal? gregorian Linux - General 3 11-07-2011 08:53 PM
Graphical terminal clane Linux - Newbie 5 05-19-2008 01:13 AM
How to get a Graphical remote terminal? MRMadhav Fedora 7 06-27-2006 02:27 AM
Core3 in a graphical terminal Dimega Fedora 1 01-13-2005 04:05 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 10:52 AM.

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