Featured

Accessing OneDrive like a local drive on Linux with onedriver

If you’ve ever wished your OneDrive files just appeared in your Linux filesystem, no clunky sync clients, no waiting while 100 GB of data crawl in the background, then meet onedriver . It’s a clever little tool that mounts OneDrive as a native filesystem on Linux, making your cloud files act like local files without actually syncing them all. onedriver mounts your OneDrive account to a directory (for example, ~/OneDrive ) so you can use your files through your file browser or CLI as if they were on your machine.  It does on-demand download : a file is only fetched from OneDrive the moment you try to open it — you don’t have to wait for everything to sync.  Bidirectional behavior: changes on OneDrive show up locally; write operations locally are reflected remotely. (Though “sync” here is more subtle than full-sync clients.)  Works offline for previously opened files. If you lose connectivity, the filesystem becomes read-only until you’re back online.  Installat...

NVTOP



NVTOP is a powerful, real-time GPU monitoring tool for Linux that provides a dynamic, interactive terminal user interface (TUI) to monitor NVIDIA GPUs and other vendors’ accelerators. It functions similarly to the Linux process monitor htop but is focused on graphics cards, giving users live stats such as GPU utilization, memory usage, temperature, power draw, and active processes in a visually rich ASCII format within the terminal.

Unlike the static output of tools like nvidia-smi, NVTOP offers a constantly updating and interactive display, allowing users to sort, filter, and zoom without leaving the terminal. It supports multi-GPU setups by displaying all GPUs side-by-side, making it especially useful for data scientists, AI researchers, gamers, and administrators managing high-performance or multi-user GPU environments.

NVTOP is built in C and uses the ncurses library for its terminal-based UI. It queries the NVIDIA Management Library (NVML) to collect GPU statistics and presents the data with minimal performance overhead, suitable for use during remote sessions via SSH or in terminal multiplexers like tmux or screen.

The main benefits and use cases of NVTOP include:

  • Debugging performance bottlenecks by instantly revealing GPU utilization and memory consumption.

  • Managing multi-user GPU resources in shared environments.

  • Optimizing cloud GPU fleet costs by identifying idle GPUs.

  • Monitoring GPU inside Docker or Kubernetes containers (if device access is enabled).

  • Real-time visibility for home users or server admins who want detailed GPU status without leaving the terminal.

  • Integration with scripts or automated alerts based on GPU state changes.

Installation on Ubuntu and many Linux systems is straightforward with package managers or building from source, requiring dependencies such as cmake and ncurses development libraries. Running nvtop launches the interactive UI showing up-to-date graphs and process lists.

In summary, NVTOP is a lightweight, terminal-based, real-time GPU monitor tool that offers a user-friendly and highly interactive experience for tracking NVIDIA GPU and accelerator performance on Linux. It enhances system observability for professionals and enthusiasts working with GPU-intensive applications.

Comments