Page 1 of 1
Nameless OS Lite v1.2.2
Posted: Sat Dec 03, 2016 9:08 am
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.
Re: Nameless OS Lite v1.2.2
Posted: Wed Dec 28, 2016 8:29 pm
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?
Re: Nameless OS Lite v1.2.2
Posted: Fri Dec 30, 2016 11:04 am
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:
Re: Nameless OS Lite v1.2.2
Posted: Sat Dec 31, 2016 10:38 am
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.
Re: Nameless OS Lite v1.2.2
Posted: Sat Dec 31, 2016 10:52 am
by Roman
Lukand wrote:What is changed? Maybe you should make a changelog.
https://github.com/p-durlej/newsys/comp ... 1...master
Re: Nameless OS Lite v1.2.2
Posted: Sat Jan 28, 2017 12:41 pm
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.