diff --git a/Become a Fullstack Developer from Scratch – Full Beginner’s Tutorial.url b/Become a Fullstack Developer from Scratch – Full Beginner’s Tutorial.url new file mode 100644 index 0000000..2d06b38 --- /dev/null +++ b/Become a Fullstack Developer from Scratch – Full Beginner’s Tutorial.url @@ -0,0 +1,2 @@ +[InternetShortcut] +URL=https://www.youtube.com/watch?v=LzMnsfqjzkA diff --git a/Development and coding/AI related/LLMs from Scratch – Practical Engineering from Base Model to PPO RLHF.url b/Development and coding/AI related/LLMs from Scratch – Practical Engineering from Base Model to PPO RLHF.url new file mode 100644 index 0000000..f3a105a --- /dev/null +++ b/Development and coding/AI related/LLMs from Scratch – Practical Engineering from Base Model to PPO RLHF.url @@ -0,0 +1,2 @@ +[InternetShortcut] +URL=https://www.youtube.com/watch?v=p3sij8QzONQ diff --git a/Development and coding/AI related/Production-Grade AI Project Tutorial – Build & Deploy - YouTube.url b/Development and coding/AI related/Production-Grade AI Project Tutorial – Build & Deploy - YouTube.url new file mode 100644 index 0000000..109a621 --- /dev/null +++ b/Development and coding/AI related/Production-Grade AI Project Tutorial – Build & Deploy - YouTube.url @@ -0,0 +1,2 @@ +[InternetShortcut] +URL=https://www.youtube.com/watch?v=mvleESOUTRw diff --git a/Docker/Traefik 3 and FREE Wildcard Certificates with Docker - YouTube.url b/Docker/Traefik 3 and FREE Wildcard Certificates with Docker - YouTube.url new file mode 100644 index 0000000..24e5456 --- /dev/null +++ b/Docker/Traefik 3 and FREE Wildcard Certificates with Docker - YouTube.url @@ -0,0 +1,2 @@ +[InternetShortcut] +URL=https://www.youtube.com/watch?v=n1vOfdz5Nm8 diff --git a/Linux/How to increase Swap Space in Ubuntu 24.04 or 22.04 LTS - LinuxShout.url b/Linux/How to increase Swap Space in Ubuntu 24.04 or 22.04 LTS - LinuxShout.url new file mode 100644 index 0000000..f6ccdd9 --- /dev/null +++ b/Linux/How to increase Swap Space in Ubuntu 24.04 or 22.04 LTS - LinuxShout.url @@ -0,0 +1,2 @@ +[InternetShortcut] +URL=https://linux.how2shout.com/how-to-increase-swap-space-in-ubuntu-22-04-lts-jammy/ diff --git a/Linux/Linux commands.md b/Linux/Linux commands.md new file mode 100644 index 0000000..d9d32fa --- /dev/null +++ b/Linux/Linux commands.md @@ -0,0 +1,4 @@ +# Linux commands + +## Keyboard +sudo dpkg-reconfigure keyboard-configuration diff --git a/Linux/MySQL.md b/Linux/MySQL.md new file mode 100644 index 0000000..165176f --- /dev/null +++ b/Linux/MySQL.md @@ -0,0 +1,65 @@ +Linux connab +# MySQL + +## How To Install MySQL on Ubuntu 24.04 +[Install MySQL](https://linuxgenie.net/install-mysql-ubuntu-24-04/) + +## MySQL Commands Cheat Sheet +[MySQL Cheat Sheet](https://phoenixnap.com/kb/mysql-commands-cheat-sheet) + +## Install with apt + +- sudo apt update +- sudo apt install mysql-server +- sudo systemctl start mysql.service +- secure your installation by running sudo mysql_secure_installation + + +## Start, stop, restart server + +- sudo systemctl start mysql +- sudo systemctl stop mysql +- sudo systemctl restart mysql + +[Start, Stop, Restart MySQL](https://www.mysqltutorial.org/mysql-administration/stop-mysql/) + +## How to Change MySQL Password Policy Level +[MySQL Password Policy](https://tecadmin.net/change-mysql-password-policy-level/) + +### Show password settings +SHOW VARIABLES LIKE 'validate_password%'; + +### Set password policy +SET GLOBAL validate_password.policy=LOW; + + +## How to Find the MYSQL Configuration File "my.cnf". +[my.cnf](https://www.geeksforgeeks.org/linux-unix/how-to-find-the-mysql-configuration-file-my-cnf/) + +## How to Allow MySQL Remote Access Securely (2025 Guide) +[How to Allow MySQL Remote Access Securely (2025 Guide)](https://www.digitalocean.com/community/tutorials/how-to-allow-remote-access-to-mysql) + +## Grant permissions + + +### Not Allowed to Create User with GRANT +[Not allowed to GRANT](https://askubuntu.com/questions/1322175/not-allowed-to-create-user-with-grant) + + +## How to create MySQL admin user (superuser) account +[Create MySQL admin user](https://www.cyberciti.biz/faq/how-to-create-mysql-admin-user-superuser-account/) + + +### List users +Use the following command to list users with their plugins: + +SELECT USER,plugin FROM mysql.user; +SELECT USER,plugin,host,ssl_type FROM mysql.user; +SELECT USER,plugin,host FROM mysql.user; + + +### How do I turn off the mysql password validation? +[Disable MySQL password validation](https://stackoverflow.com/questions/36301100/how-do-i-turn-off-the-mysql-password-validation) + +### MySQL Show User Privileges +[MySQL Show User Privileges](https://phoenixnap.com/kb/mysql-show-user-privileges) diff --git a/Linux/expand_lvm_partition.md b/Linux/expand_lvm_partition.md new file mode 100644 index 0000000..1babdb6 --- /dev/null +++ b/Linux/expand_lvm_partition.md @@ -0,0 +1,14 @@ + +# Ubuntu Server +## Expand partition using LVM + +To expand a partition using LVM on Ubuntu Server, first check for free space in your volume group with + +`` sudo vgdisplay `` + +Then, extend the logical volume with +`` sudo lvextend -l +100%FREE /dev/ubuntu-vg/ubuntu-lv `` + +and resize the filesystem using +`` sudo resize2fs /dev/mapper/ubuntu--vg-ubuntu--lv `` +to apply the changes. diff --git a/Linux/sup.sh b/Linux/sup.sh new file mode 100644 index 0000000..7eb68f8 --- /dev/null +++ b/Linux/sup.sh @@ -0,0 +1,11 @@ +# Update system + +sudo apt update +sudo apt upgrade -y + +# sudo apt full-upgrade -y + +# sudo apt autoremove -y +sudo apt autoremove --purge -y + +# sudo apt-get dist-upgrade -y diff --git a/MySQL/MySQL-Cheat-Sheet-websitesetup.org_.pdf b/MySQL/MySQL-Cheat-Sheet-websitesetup.org_.pdf new file mode 100644 index 0000000..caf57cb Binary files /dev/null and b/MySQL/MySQL-Cheat-Sheet-websitesetup.org_.pdf differ diff --git a/Proxmox/PBS - Mounting Windows SMB Share as Datastore - Proxmox Support Forum.url b/Proxmox/PBS - Mounting Windows SMB Share as Datastore - Proxmox Support Forum.url new file mode 100644 index 0000000..d912c0a --- /dev/null +++ b/Proxmox/PBS - Mounting Windows SMB Share as Datastore - Proxmox Support Forum.url @@ -0,0 +1,2 @@ +[InternetShortcut] +URL=https://forum.proxmox.com/threads/pbs-mounting-windows-smb-share-as-datastore.113164/ diff --git a/ZFS/ZFS RAID Expansion- How to Expand RAIDZ and ZFS Pools Safely - DiskInternals.url b/ZFS/ZFS RAID Expansion- How to Expand RAIDZ and ZFS Pools Safely - DiskInternals.url new file mode 100644 index 0000000..645d4ce --- /dev/null +++ b/ZFS/ZFS RAID Expansion- How to Expand RAIDZ and ZFS Pools Safely - DiskInternals.url @@ -0,0 +1,2 @@ +[InternetShortcut] +URL=https://www.diskinternals.com/raid-recovery/zfs-raid-expansion/ diff --git a/torrent and related sites.md b/torrent and related sites.md index f8e4a30..23f1a42 100644 --- a/torrent and related sites.md +++ b/torrent and related sites.md @@ -24,3 +24,7 @@ https://torrentgalaxy.to/profile/rondobym ## The Pirate Bay https://thepiratebay.org/ + +# Torrent Tracker Lists + +https://github.com/ngosang/trackerslist