Archives For November 30, 1999

This tutorial shows how to share your USB device, e.g., USB mouse/keyboard, USB drive, webcam, and speaker, in Ubuntu so you can access remotely from other computers/laptops.

Linux Kernel includes a command line tool called USB/IP, allowing to share USB devices between computers with their full functionality. So, a computer can use remote USB devices as if they were directly attached.

If you just want to share USB mouse & keyboard between computers, then Barrier is a good choice. But for webcam, usb drive, printer (through it usually has option to do the job), and other general USB devices, this tutorial will show you how.

Continue Reading…

This is a step by step guide shows how to enable Wake-on-LAN feature in Ubuntu, so you can wake it up from suspend, hibernation, or shutdown state remotely using another computer or mobile phone.

Wake on LAN, WoL in short, is a protocol allows computer to be turned on or waked up from sleep using network message. It’s based on AMD’s Magic Packet Technology, and also known as wake on WAN, remote wake-up, power on by LAN, and resume by LAN.

WoL uses wired network on target computer for the communication. Though, there’s also Wake on Wireless LAN (WoWLAN) allowing to wake up wirelessly.

Continue Reading…

How to Disable IPv6 in Ubuntu 24.04

Last updated: August 18, 2024 — Leave a comment

This is a step by step beginner’s guide shows how to disable IPv6 in Ubuntu 24.04 LTS with or without system restart.

IPv6 is the future of internet protocols. But for some reasons, such as compatibility with certain networks, testing purpose, or security concerns, or just because don’t use that thing, users may want to disable IPv6 in their machines.

Disabling IPv6 is generally safe. There may be small performance loss on some websites and services that are optimized for IPv6, though you can re-enable it at any time as you want.


Continue Reading…

OBS Studio, the popular free open-source live streaming software, announced new major 30.2.0 release a day ago.

The new release has some improvements for Linux support. They include native NVENC encoder interface for NVIDIA GPU hardware accelerated encoding, and NVENC AV1 support. And, Linux shared texture support to the NVENC encoder, QuickSync encoder, as well as VA-API encoder.

OBS Studio 30.2.0 also added multi-track video streaming support, aka Enhanced Broadcasting on Twitch.

To improve the experience for viewers with poor network conditions or those watching on older devices, the streaming service usually creates multiple video qualities of original high-quality source content.

Now, OBS Studio itself can produce multiple video qualities, though, it so far supports only Windows and requires NVIDIA GTX 900, GTX 10, or RTX 20 series GPU or newer or an AMD RX 6000 series GPU or newer. And, it will collect info, such as OBS version and audio/video settings, CPU, GPU, Memory, and OS info and set to the streaming service.

Continue Reading…

This simple tutorial shows how to easily turn your Ubuntu or Debian into home media server, so that you can listen to the music, watch photos and videos that are stored in Linux PC remotely using your mobile phones and/or smart TVs.

GNOME, the default desktop in Ubuntu and Fedora Workstation, has built-in option to enable this feature. It uses Rygel home media solution as backend.

It automatically transcode media to a format compatible with the client device. And, client machines that supports DLNA/UPnP, such as Sony PlayStation, Microsoft Xbox, smart TV, Android, iOS, can access them through the local network.
Continue Reading…

Looking for an app to transfer files and send messages over local network? LocalSend is good choice that works for most devices.

LocalSend is a free and open source application which promotes itself as alternative to Apple’s AirDrop. It’s a cross-platform app that allows to securely send files and messages over local network without an internet connection.

It works in Linux, Windows, macOS, Android, iOS, and Fire OS. Meaning you can use the file transfer app in most PC and mobile devices. And, the app doesn’t require an internet connection or external servers. It uses REST API for secure communication. All data is sent securely over HTTPS, and the TLS/SSL certificate is generated on the fly on each device.

Continue Reading…

This is a step by step beginner’s guide shows how to install and set up a lightweight Socks5 proxy server in Ubuntu or Debian.

Due to poor network connection, I decided to set up a proxy server on my remote VPS for playing an online game. However, the tutorials on the web are mostly using Dante, which consumes too much RAM, and makes my cheap VPS server frequently run out of memory.

After digging around, I found a lightweight socks5 proxy server called Microsocks. And, here’s how to install & use it in Debian & Ubuntu.

Continue Reading…

This tutorial shows how to change the MAC Address, aka hardware address, for your network interface in Ubuntu 24.04. Though the title said for Ubuntu 24.04, it should work in all current Ubuntu releases, including Ubuntu 20.04 and Ubuntu 22.04.

MAC address, stands for Media Access Control address, is a unique identifier primarily assigned by device manufacturers. Therefore, it’s often referred to hardware address or physical address. However, many network interfaces support changing their MAC addresses. And, here’s how to do the trick in Ubuntu.
Continue Reading…

This simple tutorial shows how to get rid of the “Mobile Broadband” menu option from the upper right system status menu in GNOME Desktop.

GNOME, the default desktop in Ubuntu and Fedora Workstation, has built-in support for mobile broadband. If your computer (usually laptop) has a built-in SIM card slot, then it will show you the “Mobile Network” page in Settings and “Mobile Broadband” option in upper right menu.

For those who rarely use this feature, the option is useless but makes the menu longer. So, it’s a good choice to completely disable it!


Continue Reading…

Network diagnostic is useful when you getting internet connection issue. And, here’s a brand new graphical tool for Linux beginners.

It’s PingPath, a free open-source tool written mostly in C, and use GTK4 toolkit for its user interface.

PingPath uses the popular command line tool ping to send ICMP ECHO_REQUEST to networks hosts. Simply type the host-name or IP address in header input box, hit Enter, then press Ctrl+S to get started.

It will then show you all the host IPs (if you start with host-name), as well as their autonomous system numbers and country code. For each, it shows the real time information about

  • numbers of pings set.
  • loss in percentage.
  • best, worst, last, and average delay in milliseconds.
  • as well as ping jitter (variation in delay).

Besides digital information, it also has a Graph tab to show all the info in graph lines with or without legend. This makes it easier to identify connectivity problems, measure network latency between your machine and the destination host.

The app by default sends 100 packets with 1 seconds time interval. You can change the numbers and other settings using the header-bar button menus.

How to Install PingPath in Ubuntu

The tool has an official PPA which so far supports for Ubuntu 22.04, Ubuntu 23.10, and Ubuntu 24.04.

1. First, press Ctrl+Alt+T on keyboard to open terminal. When it opens, run command to add the PPA:

sudo add-apt-repository ppa:lrou2014/pingpath

Type user password for sudo authentication, and hit Enter to continue.

2. If you’re following this tutorial on Linux Mint, then you may either use Software Manager or manually refresh package cache by running command:

sudo apt update

3. Finally, install the network diagnostic tool by command:

sudo apt install pingpath

Once installed, search for and launch it from either start menu or Gnome overview screen depends on your desktop environment, and enjoy!

Uninstall:

To uninstall the tool, open terminal (Ctrl+Alt+T) and run command:

sudo apt remove --autoremove pingpath

And, remove the PPA, either by running the command below in terminal:

sudo add-apt-repository --remove ppa:lrou2014/pingpath

Or, use the Software & Updates tool to remove the source line under Other Software tab.