Teamviewr alts

  • AnyDesk — Fast, low-latency, lightweight; strong free/personal tier and good for both personal & business use.
  • Splashtop — Excellent performance, high security, often cheaper than TeamViewer; frequently ranked as a top overall replacement.
  • Zoho Assist — Affordable, feature-rich for support & unattended access; great cross-platform support.
  • Chrome Remote Desktop — Completely free, simple browser-based; ideal for basic/personal use (Google account required).
  • RustDesk — Open-source, self-hostable, privacy-focused; excellent free alternative with no commercial restrictions.
  • RemotePC — Reliable unattended access, good value; strong for individuals and small businesses.
  • HelpWire — Simple, fast, no-signup option; rising in popularity for quick support sessions.

Other notable mentions: BeyondTrust Remote Support, LogMeIn Rescue / GoTo Resolve, and Microsoft Remote Desktop (built-in for Windows).

Android 13-16

Here are the major Android versions starting from Android 13 up to the current latest stable release as of March 2026. Android follows an annual release cycle, with versions typically launching in the second half of the year (though Android 16 shifted earlier).

The current latest stable version is Android 16 (released in 2025), while Android 17 is in beta/preview stages (Beta 2 recently released or upcoming in early 2026, with stable expected later in 2026).

I’ve presented this in a table format for clarity:

Android VersionCodenameRelease YearKey New Features / Major Changes
Android 13Tiramisu2022Notification runtime permission required; Photo Picker for privacy; Themed app icons (Material You expansion); Per-app language preferences; Clipboard preview and auto-clear; Improved large-screen/tablet experience (enhanced multitasking, taskbar); Bluetooth LE Audio and LC3 codec support; Performance boosts via updated ART garbage collector.
Android 14Upside Down Cake2023Blocked installation of very old apps (pre-Android 6.0) for security; Expanded lock screen customization; Ultra HDR photo support; Phone-as-webcam feature; Improved battery efficiency and system process optimizations; Enhanced accessibility and regional preferences; Better foldable/large-screen taskbar.
Android 15Vanilla Ice Cream2024Reintroduced lock screen widgets (especially on tablets/large screens); Advanced Factory Reset Protection against theft; Improved satellite connectivity support; Better app archiving/hibernation for storage; Enhanced privacy in health data (Health Connect expansions); Multitasking and foldable optimizations.
Android 16Baklava2025Major Material Design overhaul (“Material 3 Expressive”) with more animations, colors, and blur effects; AI-powered notification summaries and organizer; Embedded/advanced photo picker; Health records integration; Stronger parental controls and privacy sandbox features; Desktop mode improvements (when connected to external displays); Battery icon redesign; More personalization (custom icons, dark mode enhancements); Smoother performance and security updates.

These are the main highlights based on official releases. Features can vary slightly by device manufacturer (e.g., Samsung’s One UI adds extra layers). Newer versions build on privacy, large-screen/foldable support, AI integrations, and performance.

If you’d like more details on a specific version or visuals of their logos/interfaces, let me know!

How to Back Up an NTFS Partition with Partclone on Fedora Linux

When it comes to disk cloning and partition backups, Clonezilla is often the go-to tool. But under the hood, Clonezilla relies on several open-source utilities — one of the most important being Partclone. You can use Partclone directly on Linux to back up and restore partitions, which is especially handy if you want a simple command-line approach without booting into Clonezilla.


Installing Partclone on Fedora

First, make sure Partclone is installed. Fedora includes it in its repositories, so you just need:

sudo dnf install partclone

You can verify the installation with:

partclone.ntfs -v

Backing Up an NTFS Partition

Suppose you want to back up an NTFS partition (for example, /dev/nvme0n1p3) to an external drive. The syntax looks like this:

sudo partclone.ntfs -c \
    -s /dev/nvme0n1p3 \
    -o /path/to/backup/nvme0n1p3.img

Breakdown of the command:

  • -c → copy mode (create a backup)
  • -s → source partition
  • -o → output image file location

This creates an image file containing the used blocks of your NTFS partition.


Restoring the Partition

If you ever need to restore the partition, reverse the process:

sudo partclone.ntfs -r \
    -s /path/to/backup/nvme0n1p3.img \
    -o /dev/nvme0n1p3

⚠️ Warning: The restore command will overwrite the target partition, so double-check the device path before running it.


Optional: Save Space with Compression

You can combine Partclone with gzip or xz to compress your backup on the fly:

sudo partclone.ntfs -c -s /dev/nvme0n1p3 | gzip -c > /path/to/backup/nvme0n1p3.img.gz

And to restore:

gzip -dc /path/to/backup/nvme0n1p3.img.gz | sudo partclone.ntfs -r -o /dev/nvme0n1p3

Final Thoughts

Partclone is a powerful tool on its own, not just something tucked inside Clonezilla. If you’re looking for a straightforward way to clone or back up NTFS partitions on Fedora Linux, the commands above will get you started.

dd if of

On Fedora Linux, you can easily write an ISO file to a USB drive using the dd command. Here’s a simple and reliable example:

sudo dd if=/path/to.iso of=/dev/sdX bs=4M status=progress oflag=sync

Replace /path/to.iso with the ISO file location and /dev/sdX with your USB device (not a partition like /dev/sdX1).

🔧 Disable IPv6 in Rocky Linux 8 (NetworkManager)

If nmcli refuses to change ipv6.method because of leftover settings, the fastest fix is to recreate the connection with IPv6 disabled.

# Show current connections
nmcli con show

# Delete old connection
nmcli con delete "System eth0"

# Recreate with IPv4 only (replace IP/GW with yours)
nmcli con add con-name "eth0" ifname eth0 type ethernet \
ipv4.addresses 192.168.1.100/24 ipv4.gateway 192.168.1.1 \
ipv4.method manual ipv6.method disable

# Bring it up
nmcli con up "eth0"

# Verify
nmcli con show "eth0" | grep ipv6.method
ip a | grep inet6

✅ Result: ipv6.method: disable and no IPv6 addresses.

Download a WordPress Site with wget

WordPress URLs often create messy files like index.html?p=1759. Use this command for a clean offline copy:

wget -m -p -k -np -l 2 --adjust-extension --restrict-file-names=windows https://example.com

Flags explained:

  • -m mirror mode
  • -p requisites (images, CSS, JS)
  • -k convert links
  • -np no parent
  • -l 2 limit depth
  • --adjust-extension add .html
  • --restrict-file-names=windows clean filenames

✅ Result: a browsable offline WordPress site without messy filenames.

Disable Standby

Step 1: Edit logind.conf
Open a terminal.

Edit the logind configuration file with a text editor, e.g.:

bash
Copy
Edit
sudo nano /etc/systemd/logind.conf
Find (or add) the following lines, and set them like this:

ini
Copy
Edit
HandleLidSwitch=ignore
HandleLidSwitchDocked=ignore
HandleLidSwitchExternalPower=ignore
This tells systemd-logind not to suspend or power down the system when the lid is closed, including when docked or on external power.

Save and exit the file (in nano, press Ctrl+O, then Enter, then Ctrl+X).

Step 2: Restart systemd-logind
Apply the changes without rebooting:

bash
Copy
Edit
sudo systemctl restart systemd-logind
⚠️ This might log you out or restart your session. Save your work beforehand.