Tim's Blog
  • Home
  • About
Sign in Subscribe

Tim Tran

How to setup a OpenVPN server
React

How to setup a OpenVPN server

Download install script wget <https://git.io/vpn> -O openvpn-install.shwget <https://git.io/vpn> -O openvpn-install.sh Execute the script sudo chmod +x openvpn-install.sh sudo bash openvpn-install.sh At this point you will be prompted to choose either UDP or TCP in protocol options,
Jan 31, 2023 1 min read
How to check which ports are used by which processes in Linux
Linux

How to check which ports are used by which processes in Linux

Install net-tools sudo apt-get install net-tools Run this command netstat -tulpn | grep LISTEN A list of process IDs will be shown with the ports they listen to.
Jan 31, 2023
How to create new React project with create-react-app
React

How to create new React project with create-react-app

npx create-react-app myApp cd myApp npm start
Jan 31, 2023
How to setup a Samba server in Linux and share SMB shares
Networking

How to setup a Samba server in Linux and share SMB shares

Note that this guide will create a public share with no authentications. First, install the necessary packages sudo apt-get update && \ apt-get upgrade -y && \ apt-get install ntfs-3g exfat-utils exfat-fuse samba samba-common -y Create a folder to share and implement permissions mkdir /mnt/shared sudo chmod 777 /mnt/
Jan 11, 2023 1 min read
← Newer Posts Page 2 of 2
Tim's Blog © 2025
  • Sign up
Powered by Ghost