Skip to content
CompKu CompKu

IT

  • Cybersecurity
    • Red Team
    • Blue Team
  • Networking
    • MikroTik
    • Ubiquiti
    • HPE
    • TP-Link
    • D-Link
    • OPNsense
    • Sophos
    • Cisco
    • Fortinet
    • Palo Alto
    • Huawei
  • OS
    • Windows
    • Linux
  • Server
  • More
    • Project
    • Security Reports
    • Reference
    • Write Up
    • Mobile
      • Android
      • iOS
    • Programming
      • Python
      • JavaScript
      • SQL
      • PHP
      • PowerShell
      • Bash
      • C#
      • Java
      • Perl
      • Ruby
    • Web3
      • Solidity
      • Ethereum
      • Cryptography
      • Blockchain
      • Digital assets and tokens
      • Smart contracts
    • AI
      • ML
      • NN
      • DL

Programming

Posted inOS Programming Server

Cara Membuat Session Script Python memakai Tmux di Ubuntu Server

Install Tmux sudo apt update sudo apt install tmux Buat Session baru tmux new -s nama_session Jalankan Skrip Python python3 path/to/script.py Detach atau keluar dari Session: Tekan CTRL+B, lalu tekan…
Posted by compku.site December 10, 2024
Posted inOS Programming Server

Cara Membuat Virtual Environment (venv) di Ubuntu Server

Install Python dan venv python3 --version sudo apt update sudo apt install python3 python3-venv python3-pip Buat Virtual Environment cd /path/to/your/project python3 -m venv venvbaru Aktifkan Virtual Environment source venvbaru/bin/activate akan…
Posted by compku.site December 10, 2024
Scroll to Top