Nameless OS Lite v1.2.2 was released: https://github.com/p-durlej/newsys/releases.
This is the final version of Nameless OS Lite.
Nameless OS Lite v1.2.2
- TheCool1Kevin
- Posts: 24
- Joined: Fri Oct 14, 2016 7:37 pm
- Location: Canada
- Contact:
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?
LiquiDOS, my weird hobbyist OS.
"Strive for progress, not perfection" - Anonymous
"Strive for progress, not perfection" - Anonymous
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:
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
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.
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
https://github.com/p-durlej/newsys/comp ... 1...masterLukand wrote:What is changed? Maybe you should make a changelog.
"If you don't fail at least 90 percent of the time, you're not aiming high enough."
- Alan Kay
- Alan Kay
Re: Nameless OS Lite v1.2.2
Nameless OS supports double click from the very beginning, see the DOUBLE_CLICK #define in lib/wingui/icbox.c.Lukand wrote:Interesting.
At least for GUI a good idea could be to add double-click (...).
It's not the default though, and it's currently a compile-time option.