Based on this article
ALL INSTALLATIONS ASSUME YES WHEN PROMPTED, that's what -y does
This script can be copy paste to ssh as is. No hands installation. :-)
yum install zsh -y
| function debugLog(message) { | |
| console.log(`[${new Date().toISOString()}] ${message}`); | |
| } | |
| function addCreateFileButton(container) { | |
| if (container.querySelector('#update-vscode-btn')) { | |
| debugLog('Create File button already exists in this container'); | |
| return; | |
| } |
ALL INSTALLATIONS ASSUME YES WHEN PROMPTED, that's what -y does
This script can be copy paste to ssh as is. No hands installation. :-)
yum install zsh -y
| # How to Set or Change the Time Zone in Linux( Centos) | |
| # example : change to UTC time. | |
| $ sudo rm -f /etc/localtime | |
| $ sudo ln -s /usr/share/zoneinfo/UTC /etc/localtime |
| #Bash history without line numbers | |
| $ history | cut -c 8- |
| # extract tarball.src.rpm to current folder. | |
| $ rpm2cpio ../tarball.src.rpm | cpio -i |