Expand your bash history to 2500

Expand your .bash_history to 2500

I do alot of testing and alot of work on Centos servers. I like to check my .bash_history for previous commands and to check what others have done on my server., The default .bash_history is set to 500 commands. So I wanted to expand this to include the last 2500 commands.

You can do this two ways:

Per User: Local .bashrc

If you are a single user on the system without sudo or root, you can adjust this value in your .bashrc file.

cd 
vim .bashrc

Add the following lines, remember you can make this any value, I just used 2500

HISTFILESIZE=2500

Per Server: Server wide bashrc

If you are the root user or have sudo you can edit the system wide bash file

vim /etc/bashrc

Now add the same line as above to the top of the file

HISTFILESIZE=2500

Now everyone will have a history of 2500 commands, unless they set it to something else

 
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

How To Add Date and Time To Bash History

As Linux users and engineers, we often have to look back in our bash history to figure out...

How to find user memory usage in linux

How to find user memory usage in linux Finding out who/what is using the most memory is...

MySQL - Check Which Query is Consuming Resources

MySQL - Checking Which Query is Consuming Resources Have you ever wondered which mysql query...

CentOS One Liner Commands

Centos Oneliners kill all pts for x in $(ps aux | grep pts| awk '{print $2}'); do kill...

Setup Nginx PHP FPM Percona Mysql

Setup Nginx + php-fpm + Percona Mysql LEMP stack is a group of open source software to get...