Skip to content

Latest commit

 

History

History
61 lines (39 loc) · 899 Bytes

File metadata and controls

61 lines (39 loc) · 899 Bytes

PRoot Debian Setup

Initial System Configuration

Update System Packages

apt update && apt upgrade -y

Install Essential Utilities

apt install sudo adduser -y

Create User Account

Create a user named gouranga:

adduser gouranga

Configure Sudo Permissions

Edit the sudoers file:

nano /etc/sudoers

Add the following line to grant gouranga full sudo access:

gouranga ALL=(ALL:ALL) ALL

User Setup

Switch to Regular User

You can now use the system as the regular gouranga user.

Install Development Tools

sudo apt install git curl wget -y

System Customization

Configure Timezone

Set the timezone to Asia/Dhaka:

sudo ln -sf /usr/share/zoneinfo/Asia/Dhaka /etc/localtime
echo "Asia/Dhaka" | sudo tee /etc/timezone
sudo dpkg-reconfigure -f noninteractive tzdata