how to start terminal in full screen mode

Asked by Peter

By right clicking on the desktop, I created an icon to start a terminal and run a perl script with the command line

 perl menu

but it will not start using the full screen. I read somewhere to use

 perl menu -geometry 600x800

but still no larger. How can I get it to start using the full screen.

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu gnome-terminal Edit question
Assignee:
No assignee Edit question
Solved by:
Ricardo Moreno
Solved:
Last query:
Last reply:
Revision history for this message
Best Ricardo Moreno (ricardinho) said :
#1

Hi Peter,
You need to run the following command (assuming you are in GNOME)

gnome-terminal --geometry 800x600+0+0 -x perl menu

this should work.
Good Luck

Revision history for this message
Vikram Dhillon (dhillon-v10) said :
#2

Open up the Terminal -> View -> Full Screen (i am on karmic)

Regards,
Vikram

On Sat, Nov 28, 2009 at 8:26 AM, Ricardo Moreno
<email address hidden> wrote:
> Question #91995 on gnome-terminal in ubuntu changed:
> https://answers.launchpad.net/ubuntu/+source/gnome-terminal/+question/91995
>
>    Status: Open => Answered
>
> Ricardo Moreno proposed the following answer:
> Hi Peter,
> You need to run the following command (assuming you are in GNOME)
>
> gnome-terminal --geometry 800x600+0+0 -x perl menu
>
> this should work.
> Good Luck
>
> --
> You received this question notification because you are an answer
> contact for Ubuntu.
>

Revision history for this message
Peter (nitep) said :
#3

Thanks Ricardo Moreno, that solved my question.