Download: Difference between revisions

From OnixOS
No edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:


<htmltag tagname="a" href="https://sourceforge.net/projects/onixos/files/latest/download"><htmltag tagname="img" alt="Download OnixOS" src="https://a.fsdn.com/con/app/sf-download-button" width="276" height="48" srcset="https://a.fsdn.com/con/app/sf-download-button?button_size=2x 2x" /></htmltag>
<htmltag tagname="a" href="https://sourceforge.net/projects/onixos/files/latest/download"><htmltag tagname="img" alt="Download OnixOS" src="https://a.fsdn.com/con/app/sf-download-button" width="276" height="48" srcset="https://a.fsdn.com/con/app/sf-download-button?button_size=2x 2x" /></htmltag>


=== ISO (x86_64) ===
=== ISO (x86_64) ===
Line 15: Line 14:


You can use the following links to develop a project on OnixOS on Docker or to work on a Docker version.
You can use the following links to develop a project on OnixOS on Docker or to work on a Docker version.
docker pull olproject/onixos
docker run -it olproject/onixos /bin/bash


<code>
docker pull olproject/olang
docker pull olproject/onixos
docker run -t olproject/olang olang <olang file>
docker run -it olproject/onixos /bin/bash
 
docker pull olproject/olang
docker run -t olproject/olang olang <olang file>
</code>


You can start working on docker using the command above.
You can start working on docker using the command above.
Line 32: Line 29:
To use it in a new project;
To use it in a new project;


vagrant init onixos/core
vagrant init onixos/core
vagrant up
vagrant up


To use it in the Vagrantfile file;
To use it in the Vagrantfile file;


Vagrant.configure("2") do |config|
Vagrant.configure("2") do |config|
  config.vm.box = "onixos/core"
    config.vm.box = "onixos/core"
end
end
 
 
=== Arch Linux Mirrors ===
=== Arch Linux Mirrors ===


Line 48: Line 43:
The pacman we mentioned at the bottom.you can use the conf and mirrorlist files under /etc/.
The pacman we mentioned at the bottom.you can use the conf and mirrorlist files under /etc/.


* pacman.conf
* [https://gitlab.com/onix-os/onix-build-system/-/blob/main/sources/profiles/core/pacman.conf pacman.conf]
* mirrorlist
* [https://gitlab.com/onix-os/onix-build-system/-/blob/main/sources/profiles/core/airootfs/etc/pacman.d/mirrorlist mirrorlist]
 
[onix-base]
SigLevel = Never
Server = http://repo.onix-project.com/base/


[onix-aur]
[onix-base]
SigLevel = Never
SigLevel = Never
Server = http://repo.onix-project.com/aur/
Server = http://repo.onix-project.com/base/
[onix-aur]
SigLevel = Never
Server = http://repo.onix-project.com/aur/

Latest revision as of 16:39, 11 March 2025

OnixOS is a public and open source operating system. It is an operating system with “O Language” support for developers and users. You have many options to download the latest version.

Download OnixOS

ISO (x86_64)

We will give you a few ISO links for Daily and Stable Updates. You can download anything you want from these links.

Docker

You can use the following links to develop a project on OnixOS on Docker or to work on a Docker version.

docker pull olproject/onixos
docker run -it olproject/onixos /bin/bash
docker pull olproject/olang
docker run -t olproject/olang olang <olang file>

You can start working on docker using the command above.

Vagrant

To use the OnixOS operating system on Vagrant and make improvements, you can use the following commands or links.

To use it in a new project;

vagrant init onixos/core
vagrant up

To use it in the Vagrantfile file;

Vagrant.configure("2") do |config|
   config.vm.box = "onixos/core"
end

Arch Linux Mirrors

You can install packages in repositories on your own Arch Linux-based system using Arch Linux repositories.

The pacman we mentioned at the bottom.you can use the conf and mirrorlist files under /etc/.

[onix-base]
SigLevel = Never
Server = http://repo.onix-project.com/base/
[onix-aur]
SigLevel = Never
Server = http://repo.onix-project.com/aur/