0

How to manually change the length of the .bash_history On Ubuntu 19.04

Hello,I have logged-in as a root user,i just want to increase the length of the .bash_history on mu ubuntu 19.04 machine .Is it possible to increase ?

Ubuntu .bashrc Add a comment
AadrikaAnshu
asked Jun 18 2019

Answer

0

open the .bashrc file as follows:

root@linuxhelp:~# vim .bashrc

Edit the following changes inside the bashrc file,search for HISTSIZE and change the number that you would want to list in the history.Here I have set 100 as my count so that it prints out the last 100 executed commands.

HISTSIZE=100
HISTFILESIZE=5000

Then Reload the .bashrc file through the below command.MAke sure you run this.
root@linuxhelp:~# source ./.bashrc

Add a comment
linuxhelp
asked Jun 18 2019
Post your Answer