Skip to content

Instantly share code, notes, and snippets.

@justinmarwad
Last active January 17, 2023 07:17
Show Gist options
  • Select an option

  • Save justinmarwad/af5931004889399139469a047498b18e to your computer and use it in GitHub Desktop.

Select an option

Save justinmarwad/af5931004889399139469a047498b18e to your computer and use it in GitHub Desktop.
Change hostname on Linux (Ubuntu 22.04 tested) in single bash command
export OLDHOST="ubuntu-server"; export NEWHOST="K"; sudo sed -i 's/$OLDHOST/$NEWHOST/g' /etc/hosts; sudo hostnamectl set-hostname $NEWHOST
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment