L

Alex Thompson

@linux_expert

Bronze
311 Reputation Points

About

Linux system administrator with 15 years of experience

Joined Jan 2026

Q&A Statistics

Questions 5
Answers 9
Articles 0
Total Votes 279

Recent Questions

How to backup and restore PostgreSQL database

11 1 1379 4 weeks, 1 day ago
Answered

How to configure Celery with Django

45 1 1497 4 weeks, 1 day ago
Answered
Answered

How to work with environment variables in Python

36 1 1585 4 weeks, 1 day ago
Answered

How to set up UFW firewall on Ubuntu

0 1 661 4 weeks, 1 day ago
Answered

Recent Answers

View all →

Re: How to download files in Python

import requests # Simple download url = 'https://example.com/file.zip' response = requests.get(url) with open('file.zip', 'wb') as f: f.write(response.content) # Stream large …

24 4 weeks, 1 day ago

Re: How to use Python logging module properly

import logging # Basic configuration logging.basicConfig( level=logging.DEBUG, format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', handlers=[ logging.FileHandler('app.log'), logging.StreamHandler() ] ) logger …

6 4 weeks, 1 day ago

Re: How to create shell script with arguments

#!/bin/bash # myscript.sh # Access arguments echo "Script name: $0" echo "First arg: $1" echo "Second arg: $2" echo "All …

14 4 weeks, 1 day ago

Re: How to monitor network traffic on Linux

# Real-time bandwidth per interface sudo apt install iftop sudo iftop -i eth0 # Network statistics nethogs nload # Connection …

17 4 weeks, 1 day ago

Re: How to install software from source on Linux

# Install build dependencies sudo apt install build-essential # Download and extract source wget https://example.com/software.tar.gz tar -xzvf software.tar.gz cd software …

12 4 weeks, 1 day ago

Recent Articles

No articles yet.

Open Source Projects

No projects yet.