Tuesday, 5 May 2026

Linux Operating System FEDORA Workstation 43 _ WhatsApp software installation HOW-TO

 

1.   Hi Copilot, i have WhatsApp on my 5G Android smartphone to keep in touch with friends and families but as you will probably know , a 5G Android smartphone only have a 6 inches or 7 inches screen size . Copilot , I want to have WhatsApp on my "Linux Operating System FEDORA Workstation 43" Laptop which have a 15.6 inches screen size which can give me a good 15.6 inches REAL ESTATE DISPLAY . Copilot , do you think you could teach me or give me a step-by-step procedure how can i have WhatsApp on my "Linux Operating System FEDORA Workstation 43" 15.6 inches Laptop so that I can use WhatsApp on a much bigger screen ? THANKS Copilot for your answer.

 

MICROSOFT Copilot Answer 

 

 

You can absolutely use WhatsApp on your Fedora Workstation 43 laptop — the easiest way is through WhatsApp Web or the official WhatsApp Desktop app for Linux. Here’s a step-by-step guide for both approaches:


📌 Option 1: WhatsApp Web (Quick & Easy)

  1. Open your browser (Firefox, Chrome, or GNOME Web).
  2. Go to https://web.whatsapp.com.
  3. On your phone, open WhatsApp → tap the three dots menuLinked devicesLink a device.
  4. Scan the QR code shown on your laptop screen.
  5. Done! WhatsApp will now run in your browser with full access to your chats on your 15.6-inch display.

📌 Option 2: Install WhatsApp Desktop (Linux Client)

Fedora doesn’t have an official WhatsApp package, but you can install a community-maintained desktop client:

  1. Install Flatpak (if not already installed):
    sudo dnf install flatpak
    
  2. Enable Flathub repository:
    sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
    
  3. Install WhatsApp Desktop (Unofficial client):
    flatpak install flathub io.github.mimbrero.WhatsAppDesktop
    
  4. Launch it from your applications menu. It works just like WhatsApp Web but runs as a standalone app.

⚡ Notes

  • WhatsApp Web and Desktop both mirror your phone — your phone must stay connected to the internet.
  • The Flatpak client is essentially a wrapper around WhatsApp Web, but it integrates better with your desktop (notifications, tray icon).
  • If you prefer, you can also use Franz or Rambox (multi-messenger apps available via Flatpak) to run WhatsApp alongside other messaging services.

Would you like me to also show you how to make WhatsApp Desktop auto-start at login so it’s always ready when you power on your Fedora laptop?

 

 

2.    Copilot, i would be deeply appreciated if you could also show me how to make WhatsApp Desktop auto-start at login so it’s always ready when I power on my Fedora laptop? THANKS Copilot for your answer.

 

MICROSOFT Copilot Answer

 

Perfect — let’s set up WhatsApp Desktop to auto-start at login on your Fedora Workstation 43 laptop. This way, it’ll launch automatically every time you power on.


🛠 Step-by-Step: Auto-start WhatsApp Desktop

  1. Locate the WhatsApp Desktop Flatpak file

    • If you installed via Flatpak, the executable is usually:
      /var/lib/flatpak/exports/bin/io.github.mimbrero.WhatsAppDesktop
      
    • You can confirm by running:
      which flatpak
      
      and then:
      flatpak run io.github.mimbrero.WhatsAppDesktop
      
  2. Create an autostart entry

    • Autostart apps in Fedora GNOME are controlled by .desktop files in:
      ~/.config/autostart/
      
    • If the folder doesn’t exist, create it:
      mkdir -p ~/.config/autostart
      
  3. Make a WhatsApp autostart file

    • Create a new file:
      nano ~/.config/autostart/whatsapp.desktop
      
    • Paste this content:
      [Desktop Entry]
      Type=Application
      Exec=flatpak run io.github.mimbrero.WhatsAppDesktop
      Hidden=false
      NoDisplay=false
      X-GNOME-Autostart-enabled=true
      Name=WhatsApp Desktop
      Comment=Start WhatsApp Desktop at login
      
  4. Save and exit

    • Press CTRL+O to save, then CTRL+X to exit Nano.
  5. Test it

    • Log out and back in, or reboot your laptop.
    • WhatsApp Desktop should launch automatically.

⚡ Extra Tip

If you prefer a graphical way:

  • Open GNOME TweaksStartup Applications → click + → add WhatsApp Desktop.
    This does the same thing but without editing files manually.

Would you like me to also show you how to remove or disable autostart later in case you change your mind?

No comments:

Post a Comment