Posted on Leave a comment

Function Keys & Screen Brightness on Linux Laptops

Screen brightness on Linux laptops - brightness icon and function keys

Screen brightness on Linux laptops – and those function keys

If screen brightness on Linux won’t adjust, or your function keys for volume and brightness do nothing, it’s almost always a small configuration gap rather than broken hardware. This guide covers the brightness keys, the wider Fn row, and the reliable fallbacks when a shortcut misbehaves.

Step 1 – Adjust brightness from settings first

Before touching the keyboard, confirm brightness works at all. Open Settings → Power or click the system tray and use the brightness slider. If the slider moves the brightness but your keys don’t, the issue is just key mapping — covered below. If even the slider does nothing, read on to Step 3.

Step 2 – The function key lock

Many laptops have an Fn Lock (often Fn+Esc, or a padlock symbol on a key). When it’s set the “wrong” way, the media and brightness keys need Fn held down, or stop working as expected. Toggling Fn Lock is the single most common fix for function keys on Linux laptops — try it first.

Step 3 – When brightness keys do nothing

On some graphics hardware the brightness keys need a kernel hint to work. This is a known quirk with certain laptops, and it’s exactly the kind of thing that should be configured before a machine ships. Adjusting a boot parameter resolves it, but it’s worth having someone who knows the specific fix apply it rather than experimenting.

Step 4 – Volume, media and other Fn keys

Volume and media keys usually work out of the box. If a particular key doesn’t, you can map it manually in Settings → Keyboard → Keyboard Shortcuts, assigning the action you want to that key. This is a handy way to get a stubborn key doing something useful.

Step 5 – Keyboard backlight

If your laptop has a backlit keyboard, its key (often Fn plus a backlight symbol) cycles through brightness levels. Some models also expose it in the power settings. If it isn’t responding, it’s typically the same key-mapping situation as the screen brightness keys.

Sorted before it reaches you

Brightness and function-key quirks are exactly what we iron out on the bench. Every ArkPC Linux laptop is tested so screen brightness and the function keys work on your chosen distro before it ships across Australia. Fighting these on your own machine? Our support team knows the model-specific fixes.

Posted on Leave a comment

How to Change Your Password on Linux – Safely

Change your password on Linux - padlock icon, do it safely

How to change your password on Linux – safely

Knowing how to change your password on Linux is one of the first things to do with a new machine, and it takes under a minute. This guide shows the simple way to change it, plus one vital warning about Linux passwords that every owner should understand before they start.

The easy way – through Settings

Open Settings → Users, select your account, and click Password. Enter your current password once, then your new password twice, and confirm. That’s it — the change takes effect immediately, and you’ll use the new password the next time you log in or unlock the screen.

The terminal way

You can also change your password on Linux from a terminal with a single command:

passwd

It asks for your current password, then the new one twice. Nothing appears as you type — that’s normal, Linux hides password characters for security. Press Enter after each.

Choose a strong but memorable password

Aim for something long rather than complicated — a passphrase of a few unrelated words is both stronger and easier to remember than a short string of symbols. Avoid reusing a password from another account, and if you juggle many logins, a password manager is well worth setting up.

The one warning that really matters

On Linux, your password genuinely protects your data — which means if you forget it, it cannot simply be reset or recovered. There is no back door. Unlike some systems, a lost Linux password generally means the machine has to be wiped and set up again to regain access, losing anything not backed up. Write your new password down and keep it somewhere safe, or store it in a password manager.

Back up before you rely on memory

Because a forgotten password can mean a full reinstall, keep a current backup of your files (see our guide to backing up your home folder). That way your documents and photos are safe no matter what.

Set up right, supported locally

Every ArkPC Linux laptop and desktop arrives ready to use on your chosen distro, and we’ll explain password care when it reaches you here in Australia. Locked out or unsure about your setup? Our support team can advise on your options before anything drastic.

Posted on Leave a comment

No Internet on Linux – Step-by-Step Network Debugging

No internet on Linux - globe with a slash representing a broken network connection

No internet on Linux – step-by-step network debugging

No internet on Linux is frustrating, but it’s almost always fixable in a few minutes once you know where to look. This guide works through the problem in order — from “is it just this website?” down to the network card itself — so you can find the cause without guessing. It applies to Ubuntu, Mint, Debian and most other distros.

Step 1 – Find out how far the connection gets

Open a terminal and test three things in turn:

ping -c3 192.168.1.1
ping -c3 1.1.1.1
ping -c3 google.com

If the first (your router) fails, the problem is local — cable, WiFi or adapter. If the router replies but the second (a public IP) fails, the issue is between you and your provider. If only the third (a name) fails, your connection works and the problem is DNS — jump to Step 4.

Step 2 – Check NetworkManager sees your connection

nmcli device status

Your adapter should read connected. If it says unavailable or disconnected, the network service may have stalled. Restart it with:

sudo systemctl restart NetworkManager

Wait ten seconds and check again — this alone clears a surprising number of “no internet on Linux” cases.

Step 3 – Wired vs wireless

If WiFi is the problem, plug in an Ethernet cable to confirm the rest of the system is fine. A working wired connection but dead WiFi points to a wireless driver issue — our separate WiFi troubleshooting guide covers that in detail. No wired option? Tethering a phone over USB is a quick way to get online temporarily so you can install any fix you need.

Step 4 – Fixing DNS

If you can reach IP addresses but not website names, DNS is failing. Test with a public resolver:

ping -c3 1.1.1.1
nslookup google.com 1.1.1.1

If that works, set your connection to use a reliable public DNS server in Settings → Network → your connection → IPv4, then turn off automatic DNS and enter the server manually. Reconnect and names should resolve again.

Step 5 – Rule out the router

Before assuming it’s the computer, check whether other devices are online. If nothing in the house has internet, restart the router and contact your provider. If only the Linux machine is affected, the cause is local — and the steps above will have narrowed it down.

Hardware that connects out of the box

Network adapters with poor Linux support are a common root cause of these headaches. Every ArkPC Linux laptop and desktop is tested with wired and wireless networking working on your chosen distro before it ships anywhere in Australia. If your current machine keeps dropping offline, talk to our support team — we’ll tell you honestly whether it’s a setting, a driver, or hardware worth replacing.

Posted on Leave a comment

How to Install Software on Linux – Ubuntu & Mint Guide

How to install software on Linux using the Ubuntu and Mint app store, apt and Flatpak

How to install software on Linux – Ubuntu and Mint made easy

Learning how to install software on Linux takes about five minutes, and most of the time you won’t touch a command line at all. Ubuntu and Mint give you several ways to add apps, from a friendly app store to a single typed command. Here’s each method, when to use it, and how they fit together.

The easiest way – the Software centre

The simplest way to install software on Linux is the built-in app store: App Center on Ubuntu, Software Manager on Mint. Open it, search for what you want — a browser, a photo editor, a game — and click Install. It works just like an app store on a phone, with categories, ratings and one-click updates. For most people, this covers everything they’ll ever need.

The fast way – apt in the terminal

If you know the name of the package, the terminal is quicker. The apt tool installs from your distribution’s official, security-checked repositories:

sudo apt update
sudo apt install vlc

Replace vlc with whatever you need. The update line refreshes the list of available packages first; the install line does the work. This is the method you’ll see in most online guides.

The widest selection – Flatpak and Flathub

Some apps — especially the very latest versions — are distributed as Flatpaks from a store called Flathub. Linux Mint includes Flatpak support out of the box, so these appear right alongside everything else in Software Manager. Flatpaks are self-contained, which means an app gets the exact libraries it expects regardless of your distro — handy for newer or less common software.

Installing a downloaded .deb file

Occasionally a vendor offers a direct download as a .deb package. Double-click the downloaded file and your software centre will offer to install it. Only do this with software from a source you trust, since .deb files install with full system access — the app store and apt are safer because their contents are vetted.

Keeping everything updated

However you install an app, updates arrive through the same update manager, so your whole system and all its software stay current from one place. Run updates regularly — it’s the single best habit for a healthy, secure Linux machine.

Set up and ready to go

Every ArkPC Linux laptop and desktop arrives with the software centre configured and common applications already installed and tested on your chosen distro, so you can start adding what you need from day one. Stuck on a particular program? Our Australian support team is happy to help you get it running.

Posted on Leave a comment

Which Linux Distro Should I Choose? A Beginner’s Guide

Which Linux distro should I choose - branching paths to Ubuntu, Mint, Debian, Zorin, Pop!_OS, Fedora

Which Linux distro should I choose? A simple guide

“Which Linux distro should I choose?” is the first question most people ask, and the good news is you don’t need to know the technical differences to pick well. The right distribution mostly comes down to what your machine is for and how familiar you want it to feel. Here’s a plain-English guide to the distros we install and test.

Coming from another operating system? Start with Zorin OS or Linux Mint

If you want a desktop that feels instantly familiar — a taskbar, a start-style menu, everything where you’d expect — Zorin OS and Linux Mint are the easiest landing spots. They’re polished, stable, and designed so that everyday tasks need no terminal at all. This is the answer to “which Linux distro should I choose?” for most first-time switchers.

Want the mainstream standard? Choose Ubuntu

Ubuntu is the most widely used desktop Linux, which means almost every guide, forum answer and piece of software targets it first. If you value having the largest community and the broadest software support, Ubuntu is a safe, well-trodden choice that stays current with long-term support releases.

Reviving older hardware? Linux Mint or a lightweight desktop

On machines with modest memory, a lighter desktop keeps things responsive. Linux Mint (especially its Xfce edition) and similar lightweight options run smoothly where heavier systems would struggle, giving an older laptop a genuine second life.

Developing or tinkering? Debian, Fedora or Pop!_OS

Debian is rock-solid and the foundation many other distros are built on — ideal if you prize stability. Fedora ships newer technology sooner, which developers often prefer. Pop!_OS is tuned for productivity and works particularly well on machines with discrete graphics. Any of these is a strong pick if you’re comfortable getting under the hood.

Still unsure? That’s normal

You don’t have to get this perfect. The desktops differ far less than the marketing suggests, and most software runs on all of them. If you’re torn between two, pick the one that looks most comfortable — you can always tell us your use case and we’ll recommend the best fit.

Choose the distro, we’ll handle the rest

When you order a Linux laptop or desktop from ArkPC, you simply select your distro at checkout and we pre-install, configure and test it on the actual hardware here in Australia — no downloading, no setup, no guesswork. Tell us how you’ll use the machine and we’ll help you choose the distro that fits.

Posted on Leave a comment

Microsoft Office Alternative on Linux – LibreOffice & OnlyOffice

Microsoft Office alternative on Linux shown with LibreOffice and OnlyOffice document

Microsoft Office alternative on Linux – LibreOffice and OnlyOffice

Looking for a Microsoft Office alternative on Linux? You have two excellent free options — LibreOffice and OnlyOffice — and both open, edit and save the Word, Excel and PowerPoint files you already have. This guide explains which one to use, how to keep your documents compatible, and how to get started in minutes.

LibreOffice – the all-round default

LibreOffice is the most popular Microsoft Office alternative on Linux and comes pre-installed on most distributions. It’s a full suite: Writer (documents), Calc (spreadsheets), Impress (presentations), plus Draw and Base. It opens .docx, .xlsx and .pptx files directly, and you can keep saving in those formats so colleagues on other systems can still open your work — just choose Keep Current Format when prompted.

OnlyOffice – best for Microsoft file fidelity

If you exchange complex documents with people using Microsoft Office every day, OnlyOffice is worth installing. Its interface mirrors the modern ribbon layout, and it tends to reproduce tricky .docx and .xlsx formatting — tables, tracked changes, advanced cell formulas — more faithfully than any other free option. Many people run LibreOffice for everyday work and keep OnlyOffice on hand for documents that must look pixel-perfect.

Opening and saving Office files

Both suites handle Microsoft formats natively. To make sure a document always saves as .docx (rather than the open .odt format), set the default in Tools → Options → Load/Save → General in LibreOffice. Spreadsheets and presentations have the same setting. If a layout looks slightly different, it’s almost always a missing font.

The font tip that fixes most layout differences

Microsoft’s Calibri and Cambria fonts aren’t included with Linux for licensing reasons, so a document built around them can reflow. Installing the free, metric-compatible Carlito and Caladea fonts (drop-in replacements that take the same space on the page) resolves the vast majority of these differences. On Ubuntu and Mint they’re usually one click away in the software centre.

What about online editing?

You can also edit Microsoft documents in a web browser using free cloud office suites, which is handy for quick edits or sharing. For serious offline work, though, a desktop suite is faster and keeps your files private on your own machine — which is the whole point of running Linux.

Office that’s ready on day one

Every ArkPC Linux laptop and desktop ships with a working office suite already set up on your chosen distro, tested in Australia before it leaves our bench — so you can open your existing documents the moment you switch it on. Not sure which suite fits how you work? Ask our local support team and we’ll point you to the right one.

Posted on Leave a comment

No Sound on Linux – Fix Audio on Ubuntu and Mint

No sound on Linux - muted speaker icon, fix audio on Ubuntu and Mint

No sound on Linux – fix audio on Ubuntu and Mint

No sound on Linux after a fresh install is almost always a settings or driver issue rather than broken hardware, and it’s usually fixed in minutes. Work through these steps in order — they go from the most common cause to the rarest.

Step 1 – Check the obvious first

Click the speaker icon in the system tray: is the output muted, or is the volume at zero? Then open Settings → Sound and look at the Output Device dropdown. The most frequent cause of no sound on Linux is the wrong output being selected — for example HDMI audio while your speakers are on the headphone jack, or vice versa. Try each device in the list while playing music.

Step 2 – Test with a different application

Play a video in Firefox and a local file in your music player. If one works and the other doesn’t, the problem is that application’s own volume — open the sound settings’ Applications tab and check per-app levels.

Step 3 – Restart the audio system

Modern Ubuntu and Mint use PipeWire; older releases use PulseAudio. Restart whichever is present:

systemctl --user restart pipewire pipewire-pulse
pulseaudio -k

Log out and back in if sound doesn’t return immediately.

Step 4 – Check the hardware level with ALSA

alsamixer

Use the arrow keys and check that Master, PCM and Speaker channels aren’t muted (an MM label means muted — press M to unmute). Laptops sometimes ship with Auto-Mute Mode enabled, which silences speakers permanently; set it to Disabled here.

Step 5 – Still silent?

Run aplay -l to confirm Linux sees your sound card at all. If no card is listed, the codec may need a newer kernel — updating the system often resolves this on recent hardware.

HDMI, USB and Bluetooth audio quirks

External audio has its own pitfalls. HDMI sound only flows while the monitor or TV is the selected output device, and some displays must be on before the PC boots to be detected. USB headsets register as a separate sound card – select them explicitly in Settings, then check their volume independently. Bluetooth headphones that connect but stay silent are usually in the wrong profile: switch from the low-quality HSP/HFP profile to A2DP in the sound settings.

Sound that just works

Audio quirks are exactly the kind of thing we iron out before a machine leaves our bench. Every ArkPC Linux desktop and laptop is tested with working sound on your chosen distro before shipping anywhere in Australia. Stuck on your own hardware? ArkPC support is local and happy to help.

Posted on Leave a comment

Linux WiFi Not Working – Fixes for Laptop and Desktop

Linux WiFi not working – troubleshooting guide for Linux laptops and desktops

Linux WiFi not working – how to diagnose and fix it

Linux WiFi not working is the single most common issue people hit after installing Linux on a laptop, and in most cases it comes down to one thing: the wireless chip needs a driver (firmware) that didn’t load out of the box. This guide takes you from diagnosis to fix, step by step, on Ubuntu, Mint, Debian and most other distros.

Step 1 – Confirm the hardware is detected

Open a terminal and run:

lspci | grep -i network
lsusb | grep -i wireless

If a wireless adapter is listed, the hardware is visible and the problem is software. If nothing appears at all, check that WiFi isn’t disabled by a hardware switch or function key (often Fn+F2 or similar on laptops).

Step 2 – Check whether a driver is loaded

nmcli device
sudo lshw -C network

A device shown as unavailable or a line reading network UNCLAIMED means no driver is attached — the classic cause of Linux WiFi not working.

Step 3 – Install the missing driver

On Ubuntu and Mint, open Software & Updates → Additional Drivers; proprietary wireless drivers (Broadcom is the usual suspect) are offered there with one click. Plug in Ethernet or tether your phone over USB first, since downloading the driver needs a temporary connection. On Debian, enable the non-free-firmware repository and install the package for your chip.

Step 4 – When WiFi connects but keeps dropping

Intermittent drops are usually power management being too aggressive. Test with:

sudo iwconfig wlan0 power off

If the connection becomes stable, make the change permanent in a NetworkManager configuration file — or ask us and we’ll walk you through it.

Step 5 – Check rfkill and airplane mode

Linux keeps a software kill-switch for radios. Run:

rfkill list

If your wireless adapter shows Soft blocked: yes, run rfkill unblock wifi and reconnect. Hard blocked means a physical switch or BIOS setting is turning the radio off – check both. Airplane mode toggled by a stray function key press is a surprisingly common cause of WiFi vanishing overnight.

The honest fix: hardware that’s known to work

Some wireless chips simply have poor Linux support, and no amount of configuration makes them reliable. Every ArkPC Linux laptop is tested in Australia with WiFi working out of the box on your chosen distro, and our desktops offer a tested WiFi card option at checkout. If your current machine’s WiFi is beyond saving, talk to our support team — sometimes a $20 USB adapter with a well-supported chip is all you need, and we’ll tell you honestly which one.

Posted on

Solved: Live Linux USB freeze the laptop on boot

Problem Live Linux USB freeze:

Are you encountering a frustrating issue where your Live Linux USB freeze during the boot process when attempting to use a Live Linux USB? This often occurs due to graphics driver conflicts, particularly with Intel integrated graphics. Don’t worry, this guide provides a step-by-step solution.

Introduction:
Booting a Live Linux USB is a common way to test or install a Linux distribution. However, some users experience a complete system freeze during the boot process, hindering their progress. This issue is frequently related to Power Saving Register (PSR) functionality within Intel’s i915 graphics driver, which can cause conflicts on certain hardware configurations. This tutorial will guide you through a proven method to bypass this Live Linux USB freeze and successfully boot and install your desired Linux distribution.

Step-by-Step Solution:

Boot in Safe Graphics Mode:
Insert your Live Linux USB into your laptop.
Power on the laptop and access the boot menu (usually by pressing F12, ESC, or another key during startup).
Select your Live Linux USB.
Choose the “Safe Graphics Mode” or “Compatibility Mode” option from the GRUB menu. This mode loads basic graphics drivers, often bypassing the problematic PSR functionality.
Your laptop should now boot into the Live Linux environment without freezing. Proceed with your Linux installation.

Initial Boot Configuration (Temporary Fix):
After installation, remove the USB and restart your laptop.
As the laptop boots, press the ESC key repeatedly to access the GRUB menu.
Select the Linux boot entry and press “e” to edit the boot parameters.
Locate the line containing “quiet splash.”
Add i915.enable_psr=0 to the end of this line. The line should now resemble: quiet splash i915.enable_psr=0
Press CTRL + X to save the changes and continue booting. This temporarily disables PSR for this boot session.

Permanent GRUB Configuration:
Once logged into your installed Linux system, open a terminal.
Edit the GRUB configuration file: sudo nano /etc/default/grub
Find the line containing GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash”.
Add i915.enable_psr=0 within the quotes, so the line looks like: GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash i915.enable_psr=0″
Save the file (CTRL + X, then Y, then Enter).
Update GRUB to apply the changes: sudo update-grub
Restart the computer.

Verification:
After the reboot your computer should boot normally.
You can verify that the change has been applied by running the command cat /proc/cmdline in the terminal. The output should include i915.enable_psr=0.

Explanation:
i915.enable_psr=0 disables the Power Saving Register (PSR) feature of Intel integrated graphics. PSR, while intended to save power, can cause conflicts with some hardware, leading to system freezes.

Conclusion:
By following these steps, you can effectively resolve the “Live Linux USB freeze” issue and successfully install your chosen Linux distribution. Remember that this solution primarily addresses conflicts related to Intel i915 graphics. If you encounter persistent issues, consider researching hardware-specific compatibility or consulting your Linux distribution’s support resources.


Or skip all of this entirely

This guide exists because doing it yourself is fiddly. Every ArkPC Linux desktop and laptop arrives with the distro of your choice pre-installed, configured and tested in Australia on hardware we verify works with Debian-based and the other Linux systems we sell – no USB sticks, no boot menus, no driver hunting. Turn it on and it just works, backed by local support and a 1-year warranty.

Browse Linux laptops | Linux desktops | brand-new Linux laptops

Posted on

Solved – How to boot from Bootable USB

How to boot from Bootable USB?

Insert the USB boot media into USB slot (Preferable One of the Back USB ports).
Power On your PC and press repeatedly F12 until boot manager appears on the screen.

ArkPC hardware is based on Gigabyte motherboards and boot manager option key is F12.

Booting from a bootable USB depends on motherboard manufacturer. Some manufacturers have different Key combinations for Boot Manager Option, you can try: TAB, ESC, F10, F12


Or skip all of this entirely

This guide exists because doing it yourself is fiddly. Every ArkPC Linux desktop and laptop arrives with the distro of your choice pre-installed, configured and tested in Australia on hardware we verify works with Debian-based and the other Linux systems we sell – no USB sticks, no boot menus, no driver hunting. Turn it on and it just works, backed by local support and a 1-year warranty.

Browse Linux laptops | Linux desktops | brand-new Linux laptops