Here’s how to restore or set the Bash prompt on RHEL systems.
echo "PS1='\u@\h \w]\$'" >> ~/.bashrc source ~/.bashrc |
cloud engineer
Here’s how to restore or set the Bash prompt on RHEL systems.
echo "PS1='\u@\h \w]\$'" >> ~/.bashrc source ~/.bashrc |
echo "PS1='\u@\h \w]\$'" >> ~/.bashrc source ~/.bashrc
Here’s how to install a RPM locally. Download the RPM first.
wget https://domain.com/path/to/file/rpmfile1.rpm wget https://domain.com/path/to/file/rpmfile2.rpm |
wget https://domain.com/path/to/file/rpmfile1.rpm wget https://domain.com/path/to/file/rpmfile2.rpm
Then install RPM from a local file.
yum localinstall /path/to/rpmfile1.rpm yum localinstall /path/to/rpmfile2.rpm |
yum localinstall /path/to/rpmfile1.rpm yum localinstall /path/to/rpmfile2.rpm