Skip to content

Instantly share code, notes, and snippets.

@quadeare
Last active November 25, 2019 09:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save quadeare/8f93d72a97b079b38f34bd0f0297d72c to your computer and use it in GitHub Desktop.
Save quadeare/8f93d72a97b079b38f34bd0f0297d72c to your computer and use it in GitHub Desktop.
Create public folder on linux
#!/bin/bash
sudo mkdir /home/public
sudo groupadd share
sudo chown -R root:share /home/public
sudo chmod ug+rwx -R /home/public
sudo chmod g+s /home/public
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment