Page 1 of 2 12 LastLast
Results 1 to 10 of 13

Thread: man page for starting terminal

  1. #1
    Join Date
    Sep 2010
    Beans
    37

    man page for starting terminal

    I am using Ubuntu 18.04.2 and would like to learn more about terminal and different options for it when starting.

    I am trying to open terminal with more columns / rows.

    Is it gnome-terminal? or just terminal?

    Thanks for your help in advance...

  2. #2
    GhX6GZMB is offline Iced Almond Soy Ubuntu, No Foam
    Join Date
    Jun 2019
    Beans
    1,093

    Re: man page for starting terminal

    I'm not certain about what you mean.
    The terminal is normally started with Ctrl-Alt-T.

  3. #3
    Join Date
    Apr 2011
    Location
    Mystletainn Kick!
    Beans
    13,616
    Distro
    Ubuntu

    Re: man page for starting terminal

    It's man gnome-terminal.
    But to set a custom size open preferences in gnome terminal and set in the Text section in Profile sub section.

    Preferences should be a menu option. (Should show with a right click)
    Splat Double Splat Triple Splat
    Earn Your Keep
    Don't mind me, I'm only passing through.
    Once in a blue moon, I'm actually helpful
    .

  4. #4
    Join Date
    Sep 2010
    Beans
    37

    Re: man page for starting terminal

    Oh yeah... Thanks... I found what you were talking about: In Edit Profile | Checking on: Use custom default terminal size...

    Thanks a Lot..

    BTW... These do not work....
    Tried:
    prompt:~$ man gnome-terminal
    No manual entry for gnome-terminal

    prompt:~$ man Gnome-Terminal
    No manual entry for Gnome-Terminal

    prompt:~$ man GNOME-TERMINAL
    No manual entry for GNOME-TERMINAL

  5. #5
    Join Date
    Feb 2015
    Beans
    Hidden!
    Distro
    Xubuntu 22.04 Jammy Jellyfish

    Re: man page for starting terminal

    Is it gnome-terminal? or just terminal?
    "gnome-terminal" is correct.

    Quote Originally Posted by DanPerecky View Post
    ...
    BTW... These do not work....
    Tried:
    prompt:~$ man gnome-terminal
    No manual entry for gnome-terminal
    ...
    On ubuntu mate 18.04 with gnome terminal installed here that command works.

    Check that gnome terminal is actually installed on your system with ...
    Code:
    apt-cache policy gnome-terminal
    My installation...
    Code:
    yetiman:~ $  apt-cache policy gnome-terminal
    gnome-terminal:
      Installed: 3.28.2-1ubuntu1~18.04.1
      Candidate: 3.28.2-1ubuntu1~18.04.1 ...
    Last edited by yetimon_64; January 27th, 2020 at 12:27 AM.

  6. #6
    Join Date
    Mar 2010
    Location
    Squidbilly-Land
    Beans
    Hidden!
    Distro
    Ubuntu

    Re: man page for starting terminal

    "terminal" is like saying "car"

    I want to learn more about car.
    There are many different cars. There are many different terminals. Each has slightly different features, but they all have 4 wheels and usually have a steering wheel, and engine.

    I'd guess there are at least 10 popular terminal programs. I'm not a fan of the Gnome variant, which seems bloated to me. lxterm or aterm seem reasonable for capabilities and bloat. Most of the time, I use a pure xterm, but it doesn't support utf8, which could be an issue for some sites/people. xterm's don't have a menubar, so you'd need to use the different mouse click methods and modifier keys to see the different menus. OTOH, xterm's honor all the expect .Xresource settings like font choices, sizes, using a font-server, secure terminal to prevent copy/paste by other X11 clients, etc.

    Regardless, find the terminal program that works for your needs. It is a personal decision, but don't feel like you HAVE to use gnome-terminal. You don't.

    If you want to learn more about the CLI/shell interface, here's a free, no-hassle book: http://linuxcommand.org/tlcl.php
    If you want to learn more about bash shell, the shell you are most likely using, besides a quick review of the bash manpage, check out https://github.com/jlevy/the-art-of-command-line

    People new to Unix systems often have little idea how powerful their shell is.

    If you want to automate stuff, learning a tiny bit of bash programming is highly useful. Search for
    "Beginning Bash Scripting Guide" && "Advanced Bash Scripting Guide"
    A 5 line script is probably my average length in bash. Little, simple, needs.

  7. #7
    Join Date
    Sep 2010
    Beans
    37

    Re: man page for starting terminal

    Quote Originally Posted by yetimon_64 View Post
    "gnome-terminal" is correct.


    On ubuntu mate 18.04 with gnome terminal installed here that command works.

    Check that gnome terminal is actually installed on your system with ...
    Code:
    apt-cache policy gnome-terminal
    My installation...
    Code:
    yetiman:~ $  apt-cache policy gnome-terminal
    gnome-terminal:
      Installed: 3.28.2-1ubuntu1~18.04.1
      Candidate: 3.28.2-1ubuntu1~18.04.1 ...
    I go to the menu bar at the top, and click on MATE Terminal.

    When I issue the command, this is the results:
    s855-ubuntu@s855ubuntu-VB:~$ apt-cache policy gnome-terminal
    gnome-terminal:
    Installed: (none)
    Candidate: 3.28.2-1ubuntu1~18.04.1
    Version table:
    3.28.2-1ubuntu1~18.04.1 500
    500 http://us.archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages
    3.28.1-1ubuntu1 500
    500 http://us.archive.ubuntu.com/ubuntu bionic/main amd64 Packages
    So how do I know what version terminal I'm even running?

  8. #8
    Join Date
    Sep 2010
    Beans
    37

    Re: man page for starting terminal

    TheFu

    Thank you for the links....

  9. #9
    Join Date
    May 2013
    Location
    Galiza
    Beans
    4,009
    Distro
    Ubuntu

    Re: man page for starting terminal

    Quote Originally Posted by DanPerecky View Post
    So how do I know what version terminal I'm even running?
    You're actually running 'mate-terminal', the default in Ubuntu-MATE. Replace all the commands above for the proper name to confirm version.

  10. #10
    Join Date
    Mar 2010
    Location
    Squidbilly-Land
    Beans
    Hidden!
    Distro
    Ubuntu

    Re: man page for starting terminal

    Quote Originally Posted by DanPerecky View Post
    I go to the menu bar at the top, and click on MATE Terminal.

    When I issue the command, this is the results:


    So how do I know what version terminal I'm even running?
    Check the process table. That's the table maintained by the OS of all running processes.
    You can do that anyway you like. I'm old and have an alias - psg - which stands for ps-grep.
    Code:
    alias psg='ps -eaf | grep $*'
    Use it like this:
    Code:
    $ psg term
    tf        3755  3593  0 Jan26 ?        00:00:00 xterm -class UXTerm -title uxterm -u8 -sb -geometry 80x25+770+340 -u8 -fs 16 -fa Monospace -sb -fg green -bg black
    tf       23020     1  0 08:29 pts/1    00:00:00 xterm -class UXTerm -title uxterm -u8 -sb -geometry 80x25+0+0 -u8 -fs 16 -fa Monospace -sb -fg green -bg black -e ssh -X hadar
    tf       23021     1  0 08:29 pts/1    00:00:00 xterm -class UXTerm -title uxterm -u8 -sb -geometry 80x25+760+355 -u8 -fs 16 -fa Monospace -sb -fg green -bg black -e ssh -X romulus
    tf       23022     1  0 08:29 pts/1    00:00:00 xterm -class UXTerm -title uxterm -u8 -sb -geometry 80x25+760+0 -u8 -fs 16 -fa Monospace -sb -fg green -bg black -e ssh -X lubuntu
    tf       23023     1  0 08:29 pts/1    00:00:00 xterm -class UXTerm -title uxterm -u8 -sb -geometry 80x25+830+60 -u8 -fs 16 -fa Monospace -sb -fg green -bg black -e ssh -X istar
    tf       23936  3956  0 08:31 pts/1    00:00:00 grep term
    There are newer (relatively) tools for searching the process table. pgrep is one. There are others. I have a few other "terms" running, but the process name doesn't have 'term' in it. They are rxvt-unicode processes. Sometimes I need utf8 support too.

    I suspect that PDF book will have a chapter on this stuff.
    Last edited by TheFu; January 27th, 2020 at 02:35 PM. Reason: part of alias was missing.

Page 1 of 2 12 LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •