Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gigsforlinux/0f010119a4f177b51b9627de718fa52c to your computer and use it in GitHub Desktop.
Save gigsforlinux/0f010119a4f177b51b9627de718fa52c to your computer and use it in GitHub Desktop.
I'll Do Anything Goes With Projectsend- A Free File Sharing System
I'll Do Anything Goes With Projectsend- A Free File Sharing System
sudo -i
apt update -y && apt-get upgrade -y
apt update -y
apt install build-essential checkinstall
apt install ubuntu-restricted-extras
apt install software-properties-common
apt install apt-show-versions
apt upgrade -o APT::Get::Show-Upgraded=true
apt-show-versions | grep upgradeable
apt install git
git config --global user.name "name"
git config --global user.email mail@domain.com
ssh-keygen -t rsa -b 4096 -C "email@gmail.com"
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_rsa
# Add SSH Key the GitHub
cat /root/.ssh/id_rsa.pub
apt upgrade -y && apt update
apt -f install && apt autoremove
apt -y autoclean && apt -y clean
apt upgrade -y && apt update
reboot
sudo service apache2 start
sudo systemctl enable apache2
sudo service apache2 restart
sudo service apache2 reload
sudo service apache2 status
mysql -u root
create database projectsend;
CREATE USER 'psend'@'%' IDENTIFIED BY 'GigsforLinux@12345';
GRANT ALL PRIVILEGES ON projectsend.* TO 'psend'@'%';
FLUSH PRIVILEGES;
go to
http://localhost
@gigsforlinux
Copy link
Author

Screenshot from 2022-07-17 22-45-58

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment