When you come from GUI to text-based terminal, you might miss the cut and past mouse functionality.
You can use your mouse to copy and paste at a terminal. Install gpm which is a cut and paste utility and mouse server for virtual consoles.
What is gpm?
'gpm' provides mouse support to text-based Linux applications like the Emacs editor and the Midnight Commander file management system. Gpm also provides console cut-and-paste operations using the mouse and includes a program to allow pop-up menus to appear at the click of a mouse button.
From the man page, "This package tries to be a useful mouse server for applications running on the Linux console. It is based on the "selection" package, and some of its code comes from selection itself. This package is intended as a replacement for "selection" as a cut-and-paste mechanism; it also provides additional facilities. The "selection" package offered the first cut-and-paste implementation for Linux using two mouse buttons, and the cut buffer is still called "selection buffer" or just "selection" throughout this document. The information below is extracted from the texinfo file, which is the preferred source of information."
Install gpm
If you are using Debian Linux, type the command:
# apt-get install gpm
If you are using Ubuntu Linux, type the command:
$ sudo apt-get install gpm
If you are using Red Hat Enterprise Linux, type the command:
# up2date gpm
If you are using Fedora Core Linux, type the command:
# yum install gpm
Task: Select text (copy text)
To select text press the left mouse button and drag the mouse.
Task: Paste text
To paste text in the same or another console, press the middle button. The right button is used to extend the selection, like in 'xterm'.
Task: Start/stop mouse service
# /etc/init.d/gpm stop | start
OR
$ sudo /etc/init.d/gpm stop | start
Please note that two-button mice use the right button to paste text.
Read man page of gpm for more information. See how to configure mouse under FreeBSD for same purpose.
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop












{ 2 comments… read them below or add one }
Usually users know how to install software in their environment.
Thanks. I hadn’t got in touch with gpm packet yet!