Category: Linux Server

  • How to Install Inkscape AppImage on Ubuntu and Add a Desktop Shortcut

    If you want to install Inkscape on Ubuntu using an AppImage, follow these step-by-step instructions. This guide also shows you how to add a desktop shortcut for easy access.


    Prerequisites

    • Download the latest Inkscape AppImage from the official site.
    • Make sure you have libfuse2 installed on Ubuntu for AppImage compatibility.

    Step 1: Install Required Dependencies

    Open a terminal and run:

    sudo add-apt-repository universe
    sudo apt update
    sudo apt install libfuse2
    

    Step 2: Extract the Inkscape AppImage

    Give permission and extract the AppImage:

    chmod +x Inkscape-xxx.AppImage
    ./Inkscape-xxx.AppImage --appimage-extract
    

    Replace Inkscape-xxx.AppImage with your downloaded filename.


    Step 3: Move Inkscape Files to System Directory

    Move the extracted folder for easier management:

    sudo mv squashfs-root /opt/inkscape
    

    Step 4: Create a Desktop Shortcut for Inkscape

    Create and edit a new desktop entry:

    nano ~/inkscape.desktop
    

    Paste the following into the file:

    [Desktop Entry]
    Name=Inkscape
    Type=Application
    Categories=Graphics;
    MimeType=image/svg+xml;
    Exec=/opt/inkscape/AppRun %F
    Icon=/opt/inkscape/inkscape.svg
    Terminal=false
    StartupNotify=true
    

    Save and close the file.


    Step 5: Install the Desktop File

    Add the shortcut to your system menu:

    sudo desktop-file-install ~/inkscape.desktop
    

    Launch Inkscape from Your Application Menu

    You can now find and launch Inkscape from your applications menu, complete with the official icon and full AppImage support.

  • Cloudron and Nextcloud: Your Quick Path to Secure, Self-Hosted Cloud Storage

    Follow this easy, step-by-step guide to deploy Nextcloud with Cloudron, providing you with secure, self-hosted cloud storage.

    Step 1: Prepare Your Server

    • OS Recommendation: Ubuntu 22.04 LTS
    • Minimum Requirements:
      • 2GB RAM (4GB recommended)
      • 20GB disk space
      • Root SSH access

    Step 2: Set DNS Records

    • Log in to your DNS provider.
    • Add an A record pointing to your server’s IP (e.g., my.example.comyour_server_IP).

    Step 3: Install Cloudron

    • Connect to your server via SSH.
    • Execute these commands:
    wget https://cloudron.io/cloudron-setup
    chmod +x ./cloudron-setup
    ./cloudron-setup
    
    • Follow the prompts; you’ll get an admin URL when finished.

    Step 4: Configure Cloudron

    • Open your Cloudron admin URL.
    • Set up your admin account.
    • Configure email settings (SMTP).

    Step 5: Install Nextcloud via Cloudron

    • Log into Cloudron.
    • Go to App Store, search “Nextcloud”.
    • Choose the app, specify your domain, click Install.

    Step 6: Access & Customize Nextcloud

    • Go to your Nextcloud URL (e.g., nextcloud.example.com).
    • Log in with admin credentials.
    • Configure storage, add users, set sharing options, and install useful Nextcloud apps.

    Step 7: Maintenance & Backups

    • Cloudron handles automated backups (configure via the Backups tab).
    • Regularly update Nextcloud through the Cloudron dashboard to maintain optimal security and reliability.

    Done! Your Nextcloud instance is now securely hosted, easy to manage, and ready for collaboration.

  • How to Easily Install Cloudron & WordPress Developer (Step-by-Step)

    Step 1: Prepare Your Server

    • Install Ubuntu 22.04 LTS.
    • Ensure 2 GB RAM (4 GB recommended).
    • Have at least 20 GB disk space.
    • Gain root or sudo SSH access.

    Step 2: Domain & DNS Setup

    • Log into your DNS provider.
    • Create an A record pointing your domain/subdomain to your server IP.

    Step 3: Install Cloudron

    Run these SSH commands:

    wget https://cloudron.io/cloudron-setup
    chmod +x ./cloudron-setup
    ./cloudron-setup
    
    • Follow the on-screen instructions (~10–15 mins).
    • You’ll get your Cloudron admin URL after installation.

    Step 4: Initial Cloudron Setup

    • Visit your Cloudron URL (e.g., https://my.yourdomain.com).
    • Create an admin account.
    • Configure SMTP email (automatic setup available).
    • Complete initial setup.

    Step 5: Install WordPress Developer

    • Log into Cloudron’s dashboard.
    • Click App Store, search “WordPress Developer”.
    • Select the app, choose your domain, then click Install.

    Step 6: Customize Your WordPress Site

    • Visit your WordPress URL.
    • Log in with your admin details.
    • Customize themes, plugins, and site settings.

    Step 7: Maintenance & Backups

    • Cloudron manages automatic backups—review settings regularly.
    • Keep WordPress updated via Cloudron’s dashboard.
    • Monitor resources (CPU, RAM, storage) using Cloudron tools.

    Your WordPress Developer environment is now ready for secure and effective use!

Secret Link