OSDev.org
https://forum.osdev.org/

Nameless OS Lite v1.2.2
https://forum.osdev.org/viewtopic.php?f=2&t=31049
Page 1 of 1

Author:  pdurlej [ Sat Dec 03, 2016 9:08 am ]
Post subject:  Nameless OS Lite v1.2.2

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

This is the final version of Nameless OS Lite.

Author:  TheCool1Kevin [ Wed Dec 28, 2016 8:29 pm ]
Post subject:  Re: Nameless OS Lite v1.2.2

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?

Author:  pdurlej [ Fri Dec 30, 2016 11:04 am ]
Post subject:  Re: Nameless OS Lite v1.2.2

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:
mkfs /dev/fd0,0 2880

Author:  Ycep [ Sat Dec 31, 2016 10:38 am ]
Post subject:  Re: Nameless OS Lite v1.2.2

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.

Author:  Roman [ Sat Dec 31, 2016 10:52 am ]
Post subject:  Re: Nameless OS Lite v1.2.2

Lukand wrote:
What is changed? Maybe you should make a changelog.
https://github.com/p-durlej/newsys/compare/v1.1...master

Author:  pdurlej [ Sat Jan 28, 2017 12:41 pm ]
Post subject:  Re: Nameless OS Lite v1.2.2

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.

Page 1 of 1 All times are UTC - 6 hours
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
http://www.phpbb.com/