Nameless OS Lite v1.2.2

This forums is for OS project announcements including project openings, new releases, update notices, test requests, and job openings (both paying and volunteer).
Post Reply
pdurlej
Member
Member
Posts: 46
Joined: Sun Sep 18, 2011 10:18 am
Contact:

Nameless OS Lite v1.2.2

Post by pdurlej »

Nameless OS Lite v1.2.2 was released: https://github.com/p-durlej/newsys/releases.

This is the final version of Nameless OS Lite.
User avatar
TheCool1Kevin
Posts: 24
Joined: Fri Oct 14, 2016 7:37 pm
Location: Canada
Contact:

Re: Nameless OS Lite v1.2.2

Post by TheCool1Kevin »

How do you add a file to the OS? I installed the OS on Virtualbox, and now I want to transfer a file onto the disk. How can that be done?
LiquiDOS, my weird hobbyist OS.
"Strive for progress, not perfection" - Anonymous
pdurlej
Member
Member
Posts: 46
Joined: Sun Sep 18, 2011 10:18 am
Contact:

Re: Nameless OS Lite v1.2.2

Post by pdurlej »

If you want to transfer files between a Nameless OS virtual machine and a different OS, use the tar command.

Nameless OS tar is simplistic but pretty standard. For example, you can use a tarball as a floppy or a hard disk image. Nameless OS tar operates on /dev/rdsk/fd0,0 (first floppy disk drive) by default.

Tarballs may need to be extended to the correct size before you can use them as disk images.

If you want to add a file to the OS itself, put the file somewhere in the "tree" subdirectory of the source code. If you want the file to be installed as a part of the OS, add an entry in "tree/etc/sysinstall.copy". If the file is a program, you may want to put the source code in "cmd/bin" or "cmd/sbin" and modify a makefile so that the program is compiled when the OS is built.

Finally, if you happen to want to transfer files between Nameless OS virtual or physical machines, you can use floppies and the file manager GUI. To create a Nameless OS file system on a floppy use the following command:

Code: Select all

mkfs /dev/fd0,0 2880
User avatar
Ycep
Member
Member
Posts: 401
Joined: Mon Dec 28, 2015 11:11 am

Re: Nameless OS Lite v1.2.2

Post by Ycep »

Interesting.
At least for GUI a good idea could be to add double-click and keyboard preferences menu. Through, this is operating system overall is made with high-quality Unix design and by looking in source code it follows that design in most code.

What is changed? Maybe you should make a changelog.
User avatar
Roman
Member
Member
Posts: 568
Joined: Thu Mar 27, 2014 3:57 am
Location: Moscow, Russia
Contact:

Re: Nameless OS Lite v1.2.2

Post by Roman »

Lukand wrote:What is changed? Maybe you should make a changelog.
https://github.com/p-durlej/newsys/comp ... 1...master
"If you don't fail at least 90 percent of the time, you're not aiming high enough."
- Alan Kay
pdurlej
Member
Member
Posts: 46
Joined: Sun Sep 18, 2011 10:18 am
Contact:

Re: Nameless OS Lite v1.2.2

Post by pdurlej »

Lukand wrote:Interesting.
At least for GUI a good idea could be to add double-click (...).
Nameless OS supports double click from the very beginning, see the DOUBLE_CLICK #define in lib/wingui/icbox.c.

It's not the default though, and it's currently a compile-time option.
Post Reply