[go: up one dir, main page]

Open Source Linux Communications Software - Page 17

Communications Software for Linux

View 420 business solutions
  • Gen AI apps are built with MongoDB Atlas Icon
    Gen AI apps are built with MongoDB Atlas

    Build gen AI apps with an all-in-one modern database: MongoDB Atlas

    MongoDB Atlas provides built-in vector search and a flexible document model so developers can build, scale, and run gen AI apps without stitching together multiple databases. From LLM integration to semantic search, Atlas simplifies your AI architecture—and it’s free to get started.
    Start Free
  • Simple, Secure Domain Registration Icon
    Simple, Secure Domain Registration

    Get your domain at wholesale price. Cloudflare offers simple, secure registration with no markups, plus free DNS, CDN, and SSL integration.

    Register or renew your domain and pay only what we pay. No markups, hidden fees, or surprise add-ons. Choose from over 400 TLDs (.com, .ai, .dev). Every domain is integrated with Cloudflare's industry-leading DNS, CDN, and free SSL to make your site faster and more secure. Simple, secure, at-cost domain registration.
    Sign up for free
  • 1
    Hybrid Browser

    Hybrid Browser

    A p2p browser, browse the p2p networks along with the regular net

    Browse the p2p networks, and create and view p2p websites. It means you will be able to interact with p2p networks and view the p2p data on the browser. You will be able to create and upload p2p websites. This makes it possible to create fully peer-to-peer websites, no middlemen and no servers.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 2

    KA9Q Mirror

    An impressive early implementation of TCP/IP

    Mirror directly approved by Phil Karn, KA9Q. The KA9Q NOS TCP/IP package began life way back in 1985 on a surplus Xerox 820 computer board running CP/M with a 4 MHz Zilog Z-80 CPU, 64KB of RAM and a 8" floppy drive holding all of 243KB. Later, it moved to the IBM PC with the 8088 and 80286 CPUs running MS-DOS. KA9Q NOS was only the second known implementation of the Internet protocols for low-end computers. Unlike PC/IP, KA9Q NOS could simultaneously act as an Internet client, a server and an IP packet router, and handle multiple client and server sessions. KA9Q NOS attracted many contributors and became widely used throughout the 1980s and 1990s in amateur packet radio and various educational projects. In a way, it was the Linux of its day. KA9Q NOS became the basis for several low-end commercial dialup terminal servers and routers. It influenced the development of the Internet protocols and implementations, including the Linux kernel.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 3
    Kestrel

    Kestrel

    Simple, distributed message queue system (inactive)

    Kestrel is a simple, distributed message queue system built originally by Twitter. Its design is relatively lightweight and is engineered for speed and simplicity. Kestrel supports queuing patterns such as enqueue, dequeue, and delayed re-enqueue (for example, when a consumer fails to process a message). It stores messages persistently on disk with a memory-backed cache, allowing recovery in case of failures. Because it is intended for relatively simple use cases, it does not provide the full feature set of some enterprise messaging systems, but is often sufficient for many asynchronous or buffered workloads. Over time, the project became inactive and is now archived. Its minimalism and ease of integration made it appealing for smaller or more controlled message-queueing needs.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 4
    Laravel Mail Preview

    Laravel Mail Preview

    A mail driver to quickly preview mail

    This package can display a small overlay whenever a mail is sent. The overlay contains a link to the mail that was just sent.
    Downloads: 1 This Week
    Last Update:
    See Project
  • The All-in-One Commerce Platform for Businesses - Shopify Icon
    The All-in-One Commerce Platform for Businesses - Shopify

    Shopify offers plans for anyone that wants to sell products online and build an ecommerce store, small to mid-sized businesses as well as enterprise

    Shopify is a leading all-in-one commerce platform that enables businesses to start, build, and grow their online and physical stores. It offers tools to create customized websites, manage inventory, process payments, and sell across multiple channels including online, in-person, wholesale, and global markets. The platform includes integrated marketing tools, analytics, and customer engagement features to help merchants reach and retain customers. Shopify supports thousands of third-party apps and offers developer-friendly APIs for custom solutions. With world-class checkout technology, Shopify powers over 150 million high-intent shoppers worldwide. Its reliable, scalable infrastructure ensures fast performance and seamless operations at any business size.
    Learn More
  • 5
    Laravel Telegraph

    Laravel Telegraph

    Telegraph is a Laravel package for fluently interacting with Telegram

    Telegraph is a Laravel package for fluently interacting with Telegram Bots made by def:studio.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 6
    Legcord

    Legcord

    Legcord is a custom client designed to enhance your Discord experience

    A reverse-engineered Discord API library that allows users to interact with Discord in a non-traditional way, often used for automation or research purposes.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 7
    LibreWeb Browser

    LibreWeb Browser

    Decentralized Web Browser

    LibreWeb is an open-source decentralized web browser, leveraging IPFS. What would you do differently; if you could reinvent The Internet in the 21st century? With all the knowledge and new technologies available today. I was inspired by Douglas Engelbart, Tim Berners-Lee, and Ted Nelson as well as projects like IPFS, Jekyll, ARPANET, and more. Everyone should be able to easily read and create a site/blog/news page and publish the content online (without minimal technical knowledge). Built-in easy-to-use editor (whenever you want to publish some content without programming language knowledge). Decentralized (no single-point of failure or censorship), like P2P, DHT, and IPFS. Versioning/revisions of content and documents (automatically solves broken 'links', that can't be happy anymore). Publisher users should be able to add additional information about the document/page, eg. title or path (similar in how Jekyll is using the YML format for meta data).
    Downloads: 1 This Week
    Last Update:
    See Project
  • 8
    Librevault

    Librevault

    Peer-to-peer, decentralized and open-source file sync

    Librevault is a peer-to-peer file synchronization tool that offers a decentralized alternative to services like Dropbox or Resilio Sync. It automatically syncs files across devices without relying on cloud servers, ensuring full user control and privacy. Librevault uses local discovery and encryption to keep data secure and accessible only to trusted peers. Its cross-platform support and real-time synchronization capabilities make it suitable for both personal and collaborative use. Though still in early development stages, Librevault represents a privacy-focused vision for file sharing and synchronization.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 9
    MFS JavaScript Implementation

    MFS JavaScript Implementation

    JavaScript implementation of the IPFS Mutable File System

    JavaScript implementation of the IPFS Mutable File System. The code published to npm that gets loaded on requires is an ES5 transpiled version with the right shims added. This means that you can require it and use with your favorite bundler without having to adjust the asset management process. The mfs works by storing a reference to the root node's CID in LevelDB. LevelDB does not support concurrent access so there are read/write locks around bits of the code that modify the the root node's CID. A lock is kept on the main thread and any requests to read/write from workers or the main thread itself are queued pending release of the lock by the existing holder. Reads are executed together, writes are executed sequentially, and prevent any reads from starting. If you are using IPFS in a single process or with the node cluster module this should be completely transparent. If you are using Web Workers there is no way to globally listen to messages sent between workers and the main thread.
    Downloads: 1 This Week
    Last Update:
    See Project
  • Boon: The Agile Referral Hiring Platform Icon
    Boon: The Agile Referral Hiring Platform

    Tap your entire community to hire better talent, faster

    Boon's agile referral platform expands your recruiting power 
through AI, automation, integrations, and gamification.
    Learn More
  • 10
    MIMO OFDM

    MIMO OFDM

    MATLAB implementation source code accompanying the book MIMO-OFDM

    This repository contains the MATLAB implementation source code accompanying the book “MIMO-OFDM 无线通信技术及 MATLAB 实现” (MIMO-OFDM Wireless Communication Technology and MATLAB Implementation). The repository is structured to match chapters in the book, providing code for topics such as OFDM basics, MIMO channel models, channel estimation, PAPR, spatial multiplexing, diversity techniques, etc. It helps readers replicate examples in the textbook and test MATLAB simulations of wireless communication schemes. Spatial multiplexing and diversity schemes. MIMO channel modeling and simulation. Spatial multiplexing and diversity schemes.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 11
    Mackup

    Mackup

    Keep your application settings in sync

    Back ups your application settings in a safe directory (e.g. Dropbox). Syncs your application settings among all your workstations. Restores your configuration on any fresh install in one command line. If you have Dropbox installed and want to use it to save your config files, that's super easy. On macOS, if you want an easy install, you can install Homebrew and initialize it with it. If not running macOS, or you don't like Homebrew, you can use pip. On Ubuntu, pip will install to the current user's home directory rather than system-wide. Because of this, when installing pip on Ubuntu you will need to run pip install with the --system flag as well (on other platforms this is not needed). By only tracking pure configuration files, it keeps the crap out of your freshly new installed workstation (no cache, temporary and locally specific files are transfered). Mackup makes setting up the environment easy and simple, saving time for your family, great ideas, and all the cool stuff you like.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 12
    Magnetissimo

    Magnetissimo

    Web application that indexes all popular torrent sites

    Magnetissimo is a self-hosted Elixir-based web application that crawls and indexes multiple popular torrent sites and stores magnet links in a local database—designed to run without JavaScript and optimized for high performance using Elixir’s GenServer and the BEAM VM. No JavaScript frontend—relies entirely on server-rendered content. High performance via Elixir’s GenServer and BEAM concurrency model. Easy integration with tools like Sonarr and Radarr. Readable, maintainable, and lean codebase.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 13
    Minicord

    Minicord

    A minimalist Discord Client

    A minimalist version of Discord based on the web version.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 14
    Miniflux 2

    Miniflux 2

    Minimalist and opinionated feed reader

    Miniflux is a minimalist and opinionated feed reader. The page layout, fonts, and colors are chosen to be readable on a screen. The most important thing is the content. Do you have feeds that display only a summary? Fetch the original article automatically. I suppose you don't like bloated software? Miniflux focuses on simplicity. Less is more! Be productive, use the keyboard shortcuts to navigate through the application. Scan quickly your unread items with the lightweight user interface. Miniflux is compiled statically without external dependencies, drop the binary on your server and you are done. You also have the choice to use the RPM/Debian package or the Docker image. Miniflux is a free and open-source project distributed under the permissive Apache 2.0 License. Nobody resells your private data or tracks your usage. Miniflux removes automatically pixel trackers.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 15
    Nebula libp2p DHT

    Nebula libp2p DHT

    A libp2p DHT crawler, monitor, and measurement tool

    A libp2p DHT crawler and monitor that tracks the liveness of peers. The crawler connects to DHT bootstrap peers and then recursively follows all entries in their k-buckets until all peers have been visited. The crawler supports the IPFS, Filecoin, Polkadot, Kusama, Rococo, Westend networks and more. The crawler can store its results as JSON documents or in a postgres database - the --dry-run flag prevents it from doing either. Nebula will print a summary of the crawl at the end instead. A crawl takes ~5-10 min depending on your internet connection. You can also specify the network you want to crawl by appending, e.g., --network FILECOIN and limit the number of peers to crawl by providing the --limit flag.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 16
    Nextcloud News App

    Nextcloud News App

    RSS/Atom feed reader

    The News app is an RSS/Atom feed aggregator. It offers a RESTful API for app developers. The source code is available on GitHub.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 17
    NodeBB

    NodeBB

    Node.js based forum software built for the modern web

    A better community platform for the modern web. NodeBB is next generation forum software. It's powerful, mobile-ready and easy to use. NodeBB Forum Software is powered by Node.js and supports either Redis, MongoDB, or a PostgreSQL database. It utilizes web sockets for instant interactions and real-time notifications. NodeBB has many modern features out of the box such as social network integration and streaming discussions, while still making sure to be compatible with older browsers. From brand communities to product support boards, forums are a great way to engage and provide value to your audience. At NodeBB, our mission is to provide forum software with all the modern features and performance you’ve come to expect from the social and mobile web. For the tech savvy DIY pro, install and maintain NodeBB on your own server. Want to get your forum going right away without any set-up hassles? Our monthly hosting plans are for you.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 18
    Noise

    Noise

    A decentralized P2P networking stack written in Go

    Noise is a lightweight and high-performance framework for building distributed peer-to-peer (P2P) systems in Go. Designed to be modular and easy to use, Noise abstracts away the complexity of building scalable networked applications, enabling developers to focus on protocol logic rather than low-level networking. It offers an actor-model inspired concurrency design and supports peer discovery, messaging, and transport encryption out of the box. Suitable for applications like decentralized ledgers, chat apps, and distributed services, Noise brings a solid foundation for experimenting with or deploying P2P systems with minimal overhead.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 19
    Ovmeet

    Ovmeet

    Video conferencing and collaboration platform

    OvMeet is a video conferencing and collaboration platform developed in China that supports video meetings and H5 web/video live streaming. WebRTC, RTMP, SIP, RTSP, whiteboards, document presentation, file sharing, desktop sharing, recording, and more. The older version was built using Adobe/Flash, but that is no longer maintained. The newer version uses modern web technologies to deliver video conferencing services across Web, H5, Android, iOS, PC, etc. It also supports server configurations, live streaming, multiple protocols, and integration with hardware and AR components for extended use cases. Supports WebRTC, RTMP, RTSP, SIP protocols, enabling interoperability with streaming devices, hardware endpoints, and different media sources.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 20
    PLEX

    PLEX

    Plex Lab Exchange. Client for running scientific workflows

    Build highly reproducible container workflows on top of a decentralized computing network. PLEX is using distributed computing and storage to run containers on a public network. Need GPUs? We got you covered. Every tool in PLEX has declared inputs and outputs. Plugging together tools by other authors should be easy. Every file processed by PLEX has a deterministic address based on its content. Keep track of your files and always share the right results with other scientists. PLEX is a simple client for distributed computation.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 21
    Parabol

    Parabol

    Free online agile retrospective meeting tool

    Parabol gives structure to your meetings to get your team talking and moving forward faster. Add anonymous suggestions, create tasks as you go, and document your conversation in real-time with discussion threads – with your remote or hybrid team. Bring Planning Poker to life remotely. Sync issues from your backlog management tool and estimate with a fun digital card deck. Save your team time while staying up-to-date. Connect with team-mates – no matter where you all are, share updates on your own time, review updates when you’re ready. Celebrate your progress without note-taking or duplicating work, connect with your team with [optional] icebreakers, and create takeaway tasks together. Run efficient meetings, get your team talking, and save time. Parabol is free for up to 2 teams. Run fun, engaging meetings with our ready-to-use templates, or create your own.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 22
    Pget

    Pget

    The fastest, resumable file download client

    Multi-Connection Download using parallel requests. This program comes with no warranty. You must use this program at your own risk.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 23
    Rain

    Rain

    BitTorrent client and library in Go

    Rain is a fast, lightweight, and feature-rich BitTorrent client written in Go, designed to be used from the command line. It focuses on performance and simplicity, supporting both seeding and downloading operations with minimal system resource usage. Rain is ideal for automation, headless servers, and users who prefer terminal-based tools. It offers a clean API, making it easy to integrate into scripts and backend services that require torrent functionality. With its statically compiled binary and low dependency footprint, Rain can be easily deployed across different environments.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 24
    SimpleXMQ

    SimpleXMQ

    A reference implementation of the SimpleX Messaging Protocol

    A reference implementation of the SimpleX Messaging Protocol for simplex queues over public networks. SimpleXMQ is a message broker for managing message queues and sending messages over a public network. It consists of an SMP server, SMP client library, and SMP agent that implements SMP protocol for client-server communication and SMP agent protocol to manage duplex connections via simplex queues on multiple SMP servers. SMP protocol is inspired by Redis serialization protocol, but it is much simpler - it currently has only 10 client commands and 8 server responses.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 25
    SparkleShare

    SparkleShare

    Share and collaborate by syncing with any Git repository

    SparkleShare creates a special folder on your computer. You can add remotely hosted folders (or "projects") to this folder. These projects will be automatically kept in sync with both the host and all of your peers when someone adds, removes or edits a file. SparkleShare was made to cover certain use cases, but doesn't handle every scenario well. SparkleShare uses the version control system Git under the hood, so setting up a host yourself is relatively easy. Using your own host gives you more privacy and control, as well as lots of cheap storage space and higher transfer speeds. The idea of SparkleShare sprouted at the GNOME Usability Hackfest in London, where a couple of designers came to the conclusion that they didn't have a good (Open Source) collaboration tool to share their work.
    Downloads: 1 This Week
    Last Update:
    See Project