An old laptop collecting dust on a shelf is not trash, but a potential household assistant, a learning tool, or even a source of passive income. Even if the device slows down on modern tasks, it can be adapted for highly specialized functions where high performance is not required. The main thing is to correctly assess his technical capabilities and choose a suitable role.

In this article we will look at 10 practical ways repurpose an outdated laptop, from creating a home media center to organizing a mini-server for backups. You will find out what OS it is better to install on weak hardware, how to optimize power consumption and what hidden risks are fraught with some use cases (for example, mining on old video cards can lead to overheating and failure after 2-3 months of intensive work).

1. Media center for TV or home theater

One of the most popular ways to use an old laptop is to convert it into media center. Connect your device to your TV via HDMI or VGA, install specialized software - and you will get a full-fledged replacement for set-top boxes like Apple TV or NVIDIA Shield. Main advantages: no monthly subscription fee and the ability to play files of any format, including MKV with multi-channel sound.

Lightweight distributions are ideal for this task. Linux with preinstalled Kodi or Plex Media Server. For example, LibreELEC or OSMC occupy less than 500 MB of disk space and work even on laptops with 1 GB RAM and single-core processors. If you prefer Windows, install Kodi on top of a lightweight version of the system, for example, Windows 10 LTSC (no unnecessary background processes).

  • 🎬 Kodi — universal media player with support for streaming plugins (including Netflix, YouTube And Twitch).
  • 📺 Plex — a server for organizing a personal media library with network access (mobile applications are available).
  • 🎵 Volumio - audiophile system for listening to music in high definition (FLAC, DSD).
  • 🖥️ Steam Link — streaming games from the main PC to the TV (requires a good local network).
⚠️ Attention: When using a laptop as a media center, turn off sleep mode in power settings. Many laptops automatically go to sleep when the lid is closed, interrupting playback.
📊 What software would you choose for a media center?
  • Kodi
  • Plex
  • Volumio
  • Steam Link
  • Other

2. File server or NAS for your home network

If you have a lot of photos, documents or backups, you can turn your old laptop into network attached storage (NAS). This will allow you to access files from any device on your home network - a smartphone, tablet or other computer. Even a laptop with a damaged matrix is suitable for organizing a NAS (the main thing is that the network adapter works).

The most reliable solutions:

  • 📁 Nextcloud - an open platform for storing files with support for synchronization, calendars and contacts (similar to Google Drive).
  • 🔗 Samba - protocol for folders on the local network (built into Windows And Linux).
  • 🛡️ TrueNAS Core — professional system for NAS with support RAID and backup.

To install Nextcloud on Linux (For example, Ubuntu Server) run the commands:

sudo apt update

sudo apt install apache2 mariadb-server php libapache2-mod-php

sudo wget https://download.nextcloud.com/server/releases/latest.zip

sudo unzip latest.zip -d /var/www/html/

software Minimum Requirements Pros Cons
Nextcloud 1 GB RAM, 2-core CPU Wide range of features and plugins Requires configuration PHP And MySQL
Samba 512 MB RAM, any hardware Easy to set up, built into Windows No web interface
TrueNAS 4 GB RAM, 64-bit CPU RAID, backup Difficult to set up for a beginner
⚠️ Attention: If the laptop will work 24/7, replace the thermal paste and clean the cooling system. Overheating is the main cause of failure of old devices under prolonged load.

Install a lightweight OS (Ubuntu Server, Debian)

Set up a static IP address in the router

Disable sleep and hibernation

Connect an external HDD (if there is not enough space on the built-in one)

Back up important data before setup -->

3. Server for backups or cloud storage

Data backup is a critical task that many people put off until later. An old laptop can become your own backup server, automatically saving copies of files from other devices. Unlike cloud services (Google Drive, Yandex Disk), you have full control over your data and don't pay a subscription fee.

The following are suitable for automating backups:

  • 🔄 UrBackup — cross-platform solution with incremental backups (saves only changes).
  • 📦 Duplicati - supports encryption and uploading to clouds (Backblaze B2, Amazon S3).
  • 🖥️ Rsync — console utility for synchronizing folders (ideal for Linux).

Example command for Rsync (copy folder /home/user/documents to server with IP 192.168.1.100):

rsync -avz --delete /home/user/documents/ user@192.168.1.100:/backup/documents/

If you are using Windows, you can configure backups through the built-in utility wbadmin or third party programs like Veeam Agent. Main rule: keep at least 3 copies of data (original + 2 backups on different media).

💡

For reliability, connect an external hard drive to your laptop and set up automatic copying of backups to it once a week. This will protect your data even if the primary drive fails.

4. Wi-Fi hotspot or router with additional features

An old laptop can be turned into router, repeating the Wi-Fi signal or distributing the Internet via cable. This is relevant if you have a weak router from your provider or need to create a separate network for guests. The advantage of this solution is the flexibility of configuration: you can limit the speed for certain devices, block advertising at the DNS level, or even organize VPN server.

To implement you will need:

  1. Install Linux-distribution with support for network functions (for example, pfSense or OpenWRT for x86).
  2. Connect the laptop to the main router via Ethernet (for stability).
  3. Customize hostapd (for Wi-Fi distribution) or dhcpd (for distributing IP addresses).

Example command to start the access point in Ubuntu:

sudo nmcli dev wifi hotspot ifname wlan0 ssid MyHotspot password "12345678"
  • 📡 Signal Boost: If the laptop is equipped with a powerful Wi-Fi card (for example, Intel AX200), it can distribute the Internet over a greater distance than a standard router.
  • 🔒 Traffic filtering: using pfSense you can block sites by keywords or limit access to social networks at certain times.
  • 🌍 VPN server: install OpenVPN or WireGuardto securely connect to your home network from anywhere in the world.
⚠️ Attention: Distributing Wi-Fi through a laptop consumes a lot of energy. If the device will work constantly, turn off Turbo Boost in the BIOS and set a limit on the maximum processor frequency (for example, through ThrottleStop for Windows).

5. Learning platform for programming or cybersecurity

An old laptop is the perfect sandbox for learning. programming, testing vulnerabilities or experimenting with operating systems. There is no fear of breaking the system or catching a virus, and low performance will force you to optimize your code and look for effective solutions.

Usage options:

  • 🐧 Linux for development: install Ubuntu or Debian and set up the environment for Python, C++ or web development (VS Code, Docker).
  • 🛡️ Cyber Security Lab: expand Kali Linux and test networks for vulnerabilities (for example, using Metasploit or Wireshark).
  • 🤖 AI and machine learning: even on weak hardware you can run simple models (TensorFlow Lite) or train on datasets with Kaggle.
  • 🖥️ Virtual machines: using VirtualBox or QEMU test different operating systems without risking your main PC.

For novice programmers it is useful to install Linux Mint - it is easier to learn than Arch or Gentoo, but at the same time provides access to all the necessary tools. For example, to run a simple HTTP server on Python, one command is enough:

python3 -m http.server 8000
How to protect your school laptop from viruses?

1. Use a separate non-admin user for everyday tasks.

2. Take regular system snapshots (Timeshift for Linux, System Restore for Windows).

3. To test suspicious software, use sandboxes (Firejail, Sandboxie).

4. Disable autorun of removable media in the OS settings.

6. Home dashboard for smart home

If you have devices smart home (Xiaomi, Philips Hue, Sonoff), an old laptop can become central control panel. On it you can deploy a dashboard with weather widgets, electricity consumption graphs, CCTV cameras and lighting control. This is more convenient than using a smartphone, especially if the laptop screen is always on.

Popular solutions for dashboards:

  • 📊 Home Assistant - open platform with support for 1000+ devices (requires Docker or Python 3.9+).
  • 🌡️ OpenHAB - alternative Home Assistant with more flexible configuration of automation rules.
  • 📱 Gladys Assistant — a simple dashboard with voice control (supports Russian language).

Example configuration for Home Assistant (file configuration.yaml):

sensor:

- platform: yr

name: "Погода"

monitored_conditions:

- temperature

- symbol

- precipitation

To display the dashboard on a laptop screen in kiosk mode, use a browser Chrome with extension Kiosk Mode or specialized distributions like Portainer (for Docker-containers).

💡

Home Assistant allows you to integrate devices from different brands (for example, control lamps Yeelight and sockets TP-Link from one interface), which is impossible in proprietary applications.

7. Cryptocurrency mining (with reservations)

The topic of mining on old laptops is surrounded by myths. Yes, earn bitcoins on a 2010 laptop is not possible, but some altcoins (for example, Monero or Ravencoin) you can still mine on CPU. However, this only makes sense in three cases:

  1. You have free electricity (eg solar panels).
  2. You mine “in the background” along with other tasks (for example, at night).
  3. You view this as a learning experiment, not a source of income.

For mining Monero on Linux do:

sudo apt install git cmake libuv1-dev libssl-dev libhwloc-dev

git clone https://github.com/xmrig/xmrig.git

cd xmrig && mkdir build && cd build

cmake .. && make -j$(nproc)

Cryptocurrency Algorithm Minimum Requirements Profitability (2026)
Monero (XMR) RandomX 2-core CPU, 2 GB RAM $0.1–$0.5/month
Ravencoin (RVN) KawPow Video card NVIDIA/AMD $0.3–$1.2/month
Vertcoin (VTC) Verthash CPU with support AES-NI $0.05–$0.2/month
⚠️ Attention: Mining on laptops with integrated graphics (Intel HD Graphics) or weak CPU (For example, Intel Atom) will lead to losses due to the cost of electricity. Before you start, check the hashrate of your processor on the website MoneroBenchmarks.

8. Retro gaming console

If you love classic games, an old laptop can be turned into retro console for emulating consoles from NES to PlayStation 2. Modern emulators (for example, RetroArch or Dolphin) support improved graphics, saving to the cloud and even online multiplayer mode.

Recommended software:

  • 🎮 RetroArch — universal frontend for 50+ emulators (from Game Boy to Dreamcast).
  • 🐬 Dolphin - emulator Nintendo GameCube And Wii (requires a video card that supports OpenGL 4.0+).
  • 🖥️ PCSX2 - emulator PlayStation 2 (works on most laptops with 2 GB RAM).
  • 🕹️ MAME — arcade machine emulator (ideal for games like Street Fighter II or Pac-Man).

For control it is convenient to connect a gamepad via USB or Bluetooth. For example, Xbox 360 Controller or 8BitDo Pro 2 are recognized automatically by most emulators. To improve performance in RetroArch, disable antialiasing (Shaders) and reduce the render resolution to 2x.

💡

To store games, use an external hard drive - ROMs for PS2 or Wii They take up 4–8 GB each, and the laptop's built-in storage can quickly fill up.

FAQ: Frequently asked questions about using an old laptop

Question 1: Is it possible to use a laptop without a battery, only from the mains?

Answer: Yes, but make sure the power supply is working properly. Some laptops (eg. Lenovo ThinkPad) allow you to remove the battery in the BIOS to avoid swelling. For continuous operation from the network, it is recommended to disconnect Power management option “Action when closing the lid” → “Do nothing”.

Question 2: Which Linux is better to install on a laptop with 1 GB of RAM?

Answer: Optimal options: AntiX (based on Debian, works for 256 MB RAM), Puppy Linux (loaded into RAM) or Lubuntu (light shell LXQt). Avoid Ubuntu or Fedora - they require a minimum 2 GB RAM.

Question 3: Can I use an old laptop as a monitor for another PC?

Answer: No, it’s not possible directly. Laptops do not have video input, only output (HDMI/VGA). However, you can use remote desktop software (for example, SpaceDesk or Duet Display) if both devices are connected to the same network. An alternative is to remove the laptop matrix and connect it to another PC via LVDS controller (requires soldering).

Question 4: How to reduce power consumption of a laptop running 24/7?

Answer:

  1. Disable in BIOS Turbo Boost and set the processor frequency to a fixed frequency.
  2. Use Linux with a core optimized for power saving (e.g. linux-tlp in Arch Linux).
  3. Replace the hard drive with SSD — it consumes 2–3 times less energy.
  4. Disable all unnecessary devices in lsusb (webcam, card reader).

Question 5: Is it possible to sell an old laptop if it works slowly?

Answer: Yes, but prices are for outdated models (Core 2 Duo, Pentium) rarely exceed 3–5 thousand rubles. It is better to sell as a “donor of spare parts” (for example, a matrix, keyboard or battery may cost more than the entire laptop). Before selling, be sure to:

  • Delete all data using DBAN or dd if=/dev/zero of=/dev/sda.
  • Install a clean OS (for example, Linux Mint) to demonstrate performance.
  • Specify in the ad specific faults (for example, “the touchpad does not work, but the mouse is connected via USB”).