Open Source Unix Shell Internet Software for ChromeOS

Unix Shell Internet Software for ChromeOS

Browse free open source Unix Shell Internet Software for ChromeOS and projects below. Use the toggles on the left to filter open source Unix Shell Internet Software for ChromeOS by OS, license, language, programming language, and project status.

  • 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
  • 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
  • 1
    Network Caller ID
    The NCID (Network Caller ID) project is Caller ID (CID) distributed over a network. The project contains the NCID package and 4 optional client packages. Each package is described at the NCID web site. A non-inclusive list of 3rd party addons is also available at the web site Available Packages: NCID - contains the server, gateways, and a client with output modules LCDncid - a client that uses LCDproc to display Caller ID on a LCD display NCIDandroid - a client and gateway for Android devices NCIDdisplay - a homebrew client that displays on large LED modules NCIDpop - a popup client for Windows, Mac, and Linux
    Leader badge
    Downloads: 24 This Week
    Last Update:
    See Project
  • 2

    OS X Portable Applications

    Portable OS X FOSS applications

    OS X FOSS portable applications are packaged so you can carry around on any portable device, USB thumb drive, iPod, portable hard drive, memory card, other portable device (or also on your internal hard disk), taking your preferences with you.
    Downloads: 23 This Week
    Last Update:
    See Project
  • 3
    Foswiki
    Foswiki is an Enterprise wiki, typically used to run a collaboration platform, knowledge base or document management system. Users can create wiki applications using the Topic Markup Language, and developers can extend its functionality with plugins. Foswiki stands for "Free and Open Source" wiki to emphasize its commitment to Open Source software.
    Downloads: 10 This Week
    Last Update:
    See Project
  • 4
    Jacksum

    Jacksum

    a free cross platform checksum utility, supports 58+ hash algorithms

    Development of this project has been moved to https://github.com/jonelo/jacksum. This site has been left for historical purposes ONLY, you find older Jacksum versions here. Please visit the GitHub site for current development. Jacksum 1.7.0 is a platform independent checksum utility (written entirely in Java) for computing and verifying (integrity check) checksums, CRC and hashes (fingerprints). It supports 58 popular hash algorithms and a lot of unique features.
    Downloads: 6 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
    VoToL is an electronic voting system. VoToL č un sistema di voto elettronico per qualsiasi istituzione. E' un sistema di votazione via computer
    Downloads: 6 This Week
    Last Update:
    See Project
  • 6
    A simple command to convert calendar dates to julian dates. Quite useful in timing situations where you need elapsed time between dates. Also useful for astronomy applications.
    Leader badge
    Downloads: 8 This Week
    Last Update:
    See Project
  • 7

    Podget

    A simple podcast aggregator.

    Podget is a simple podcast aggregator optimized for running as a scheduled background job (i.e. cron), with support for categories & folders, importing servers from OPML lists & iTunes PCAST files, exporting an OPML file, automatic playlist creation and cleanup. Updated in Version 0.8 on June5, 2016 to include support for ATOM feeds in additions to RSS feeds. As of Nov 9, 2015 the CVS hosted by Sourceforge will no longer be updated. The last version to be uploaded into the CVS was version 0.7.9. I've moved the development files to Git and they are accessible at: https://github.com/dvehrs/podget I will continue to post release versions here so feel free to download them!
    Downloads: 2 This Week
    Last Update:
    See Project
  • 8
    openbsd-iso is a set of _ scripts _ to download OpenBSD releases from ftp, and then create the CD/DVD iso images.
    Downloads: 7 This Week
    Last Update:
    See Project
  • 9
    A Free Hosting Control Panel for Linux intended to replace the need for expensive software such as Ensim, CPanel & Plesk. It uses Apache, Postfix, MySQL & other projects like AWStats and phpMyAdmin. The GUI is coded in PHP, and the backend in Perl & Bash
    Leader badge
    Downloads: 2 This Week
    Last Update:
    See Project
  • Build Securely on AWS with Proven Frameworks Icon
    Build Securely on AWS with Proven Frameworks

    Lay a foundation for success with Tested Reference Architectures developed by Fortinet’s experts. Learn more in this white paper.

    Moving to the cloud brings new challenges. How can you manage a larger attack surface while ensuring great network performance? Turn to Fortinet’s Tested Reference Architectures, blueprints for designing and securing cloud environments built by cybersecurity experts. Learn more and explore use cases in this white paper.
    Download Now
  • 10
    CobaltCMS is a powerful, lightweight and easily maintainable content management system written in PHP. It aims to provide basic features as standard, while allowing highly complex addons and extensions to be written easily and quickly.
    Downloads: 3 This Week
    Last Update:
    See Project
  • 11
    command-output-to-html-table

    command-output-to-html-table

    A shell script to convert any file or command output into a html table

    Please watch the video below, to convert any file or a command output into a nice html table, in less than 5 Minutes time. The output html file can then be browsed from any location, using a local webserver or an internet www domain. Usage Examples: (Type them on Terminal) cd ~/Downloads/tabulate # location chmod +x *.sh cat "student_marks.csv" | { cat ; echo ; } | ./tabulate.sh -d "," -t "My School" -h "First Term" > "marks.html" # or > "/var/www/html/marks.html" -d specifies delimiting character, which is in between your input columns -t specifies page title -h specifies a header Browse marks.html with browser now, either by double clicking file, from file manager or inputting location on your browser. Other Examples: df -h | { cat ; echo ; } | ./tabulate.sh -d " " -t "My System" -h "Disk Free" > "diskfree.html" Refer Wiki, Tickets, Discussion for more inputs and new jobs, that can arise, with this script. Please see below for LATEST UPDATES
    Downloads: 3 This Week
    Last Update:
    See Project
  • 12
    Customizable browser based (text/web(WYSIWYG)) file editors environment in PHP (GPL Licensed) with loads of features. (tested only in firefox)
    Downloads: 2 This Week
    Last Update:
    See Project
  • 13
    A magyar Károli-Biblia forrása, néhány eszközzel, kellékkel és megjelenítési felülettel. Repository for the Hungarian Karoli-bible, with some tools, accessories and interfaces. (Rest of the project is in Hungarian.)
    Downloads: 2 This Week
    Last Update:
    See Project
  • 14
    A set of scripts named "svnexport" is intended to update the Web site from the Subversion repository by using "svn export [options]" command. You can work through a Web interface or from the command line.
    Downloads: 2 This Week
    Last Update:
    See Project
  • 15
    The Grid-Cache is a GSI HTTPS data transfer server. The server can share, for read and write, local resources and remote repositories using a cache based optimization.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 16
    Atomic Photo Album (APA) is a PHP/MySQL photo album with the following features : unlimited number of albums and photos, users and comments, automatically add and remove photos, thumbnail support, multilanguage and themes.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 17
    Kojoney is an easy of use, secure, robust and powerfull Honeypot for the SSH Service written in Python. With the kojoney daemon are distributeds other tools such as kip2country (IP to Country) and kojreport, a tool to generate reports from the log fi
    Downloads: 1 This Week
    Last Update:
    See Project
  • 18
    Project B is a platform for various Bible programs using Java. It will support desktop applications like the On-Line Bible and Sword, there is a Servlet interface, some add-in macros for MS Word. Other interfaces are in development.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 19
    inicrond is a education-oriented content management system. It is written in php and supports MySQL. Go on the freshmeat site for more details. Inicrond : Network of Interactive Courses Registred On a Net Domain
    Downloads: 1 This Week
    Last Update:
    See Project
  • 20

    twitch-batch-downloader

    Automate the download of entire Twitch.tv channels

    Automate the download of entire Twitch.tv channels with its metadata. Save each Twitch video into its own folder, with date and time values, video ID, stream metadata, frame screenshot, .ts parts list and sha256 hash. Keep the original ts files and generate mp4 files from them. It requires a shell and some command line utilities. See README.md for details in the Code/git section.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 21
    A Cake 2 PHP
    This project features a basic php/mysql content management and a public customizable interface. (CakePHP features) multi-user access, e-shop profiles, CRUD posting.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 22
    AVD is a continuation of the swim project. The goal is to create a suitable SQL server from swim's not-installed DB, and to maintain the swim client. AVD will be used as a gBootRoot method.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 23
    Atomic OS is a responsive Web 2.0 operating environment & development platform. Based on AJAX techniques, it emulates/provides standard operating system features including a command-line shell, interpreter, filesystem, database access and GUI services.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 24
    Catalog module for creating FTP server support website. Search engine for Files located on FTP sites or in other collections submitted to this catalog. It is oriented for Audio Books in mp3 format collections. Use PHP, Java & database MySQL or Oracle.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 25
    Tiny and fast WikiWiki-Clone written in (n|g|m)awk.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Previous
  • You're on page 1
  • 2
  • 3
  • 4
  • 5
  • Next