loader image

Beeper || Linux

Viewing 1 post (of 1 total)
  • Author
    Posts
  • #8433
    thumbtak
    Moderator

    What is Beeper?

    Beeper is a messaging application that allows users to access multiple chat platforms from a single interface. It supports various messaging services like WhatsApp, Signal, Telegram, and more, providing a unified experience for managing conversations across different platforms.

    Note: I only wanted to use the desktop app as the android app is having login issues with a lot of the services and the developer asked me to do it on the desktop app to fix this issue.

    Steps to Download and Run the Beeper AppImage

    1. Verify the Download Link:
    Before proceeding, ensure you have the correct download link. You can do this by:

    • Visiting the Beeper website.
    • Navigating to the download section.
    • Copying the direct download link from your browser’s download history or the website.

    2. Open a Terminal:
    Open your terminal application.

    3. Navigate to Your Desired Directory:
    Change to the directory where you want to download the AppImage. For example, you can use your home directory or create a new directory:

    $ cd ~
    $ mkdir beeper_appimage
    $ cd beeper_appimage

    4. Download the AppImage Using wget:
    Use wget to download the AppImage from the verified URL:
    $ wget https://beeper-desktop.download.beeper.com/builds/Beeper-4.2.605-x86_64.AppImage

    5. Set Correct Permissions and Ownership:
    Ensure the downloaded file has execute permissions and is owned by your user:

    $ chmod +x Beeper-4.2.605-x86_64.AppImage
    $ chown $(whoami):$(whoami) Beeper-4.2.605-x86_64.AppImage

    6. Run the AppImage with –no-sandbox Flag:
    Run the AppImage using the --no-sandbox flag to bypass any sandboxing issues:
    $ ./Beeper-4.2.605-x86_64.AppImage --no-sandbox

    Additional Troubleshooting
    If you still encounter permission issues, try running the AppImage from a different directory to isolate any potential conflicts:

    1. Create a Temporary Directory:

    $ mkdir -p ~/temp_beeper
    $ cd ~/temp_beeper

    2 Copy the AppImage to the Temporary Directory:
    $ cp ~/Downloads/Beeper-4.2.605-x86_64.AppImage

    3. Make the AppImage Executable (again, just to be sure):
    $ chmod +x Beeper-4.2.605-x86_64.AppImage

    4. Run the AppImage with –no-sandbox Flag:
    $ ./Beeper-4.2.605-x86_64.AppImage --no-sandbox

    5. Summary
    By following these steps, you should be able to download and run the Beeper AppImage with the correct permissions for your user. If you continue to encounter issues, please provide any error messages or additional details so that further assistance can be provided.

    • This topic was modified 1 month, 1 week ago by thumbtak. Reason: Added Note section
Viewing 1 post (of 1 total)
  • You must be logged in to reply to this topic.
TAKs Shack