Skip to content

Instantly share code, notes, and snippets.

@brettjrea
Last active March 24, 2023 20:55
Show Gist options
  • Save brettjrea/920436ed0bed2e7887b1a61f5c1e358f to your computer and use it in GitHub Desktop.
Save brettjrea/920436ed0bed2e7887b1a61f5c1e358f to your computer and use it in GitHub Desktop.
This is a bash script that installs common languages, utilities, fetchers, compilers, and a JSON processor on an Ubuntu-based system using the package manager. It also installs the libsecret library for secure password storage and specifies the directories where the library files and header files are typically located. #!/bin/bash #Ubuntu #packa…
#!/bin/bash
# Install common languages
sudo apt install python3 -y
# Install Common Utilities
sudo apt install nano net-tools zip -y
# Install Common Fetchers
sudo apt install curl git wget -y
# Install Common Compilers
sudo apt install g++ gcc make -y
# Install Common JSON Processor
sudo apt install jq -y
# Install the libsecret library for secure password storage
sudo apt-get install libsecret-1-0 -y
# The libsecret library files are typically installed in the /usr/lib/ directory
# and header files are located in the /usr/include/libsecret-1/ directory.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment