Page 1 of 2
Linux Kernel
Posted: Mon Mar 31, 2003 10:20 am
by nuno_silva_pt
This is what's hapening:
1- i'm translating the linux kernel to portuguese
2- how can i change the kernel's filesystem to FAT32?
3- how can i make my c code of wxwindows's gui work?
Re:Linux Kernel
Posted: Mon Mar 31, 2003 2:16 pm
by distantvoices
ad pt.1. This seems to be ok.
ad pt.2. load the proper file system modules to the kernel via modprobe and mount a fat 32 file system, although I'd recommend you stay with reiserFS or Ext2 or something else which contains the proper unix-features.
ad pt.3. I don't know, gosh. I have no experience with windows gui programming nor with gui programming in general.
stay safe
Re:Linux Kernel
Posted: Tue Apr 01, 2003 1:19 am
by Pype.Clicker
i would not recommend to install Linux with only FAT32 support. Despites it looks feasible at the first sight, you'll face the problem that you will not have the ower/group/other permissions (therefore you'll lose a lot in software protection or will be forced to run everything as root :-C ).
By the same time, it will be hard to have hard or symbolic links in a FAT32 partition, and some administrative tools (not mentionning all the application and building scripts) rely on such links to be available)
If what you're trying to do is to install a Linux system on top of your father's Windows partition without damaging it, i suggest you try mu-Linux distribution (or something similar) which have the option of making a whole Windows file used as a EXT2 partition (a kind of virtual disk in a file, if you see what i mean ...)
what exactly is wxwindows ? is it the Win32 GUI or something related to X-window ?
Re:Linux Kernel
Posted: Tue Apr 01, 2003 5:15 am
by nuno_silva_pt
WXwindows is a cross-platform native UI framework
you can find it in:
www.wxwindows.org
Re:Linux Kernel
Posted: Tue Apr 01, 2003 5:30 am
by Pype.Clicker
then, i would say you'll be able to reuse wxwindows apps if you have your Xwindow server running in your linux ...
But this is not related to the kernel at all ... (the X server is some application, in Linux)
Re:Linux Kernel
Posted: Tue Apr 01, 2003 9:17 am
by nuno_silva_pt
I'm going to make my own o.s. from a linux kernel, but i'll change it so i can use both FAT32 and EXT2
Re:Linux Kernel
Posted: Tue Apr 01, 2003 9:48 am
by Pype.Clicker
awk! FAT32 is one of the worst file system ever made :-p ... but well, if you really want to do so ... you're the guy who do the design
Re:Linux Kernel
Posted: Tue Apr 01, 2003 2:05 pm
by distantvoices
Nuno, you old cheater... Making his "own" os out of a linux kernel ... boah ... not that I consider him to be a bragger, of course not. Ups ... I've said it.
aye, Mr. Nuno_Silva, you are the best one, you are the one who will get this working and then we all might see your genious spirit.
thank you for your indeed fantastic audience. You will OF COURSE read what stands written, won't you?
Re:Linux Kernel
Posted: Wed Apr 02, 2003 10:32 am
by nuno_silva_pt
I'm having trouble when i'm trying to boot any kernel by floppy in DOS. it never works, i've tryed Bootf2, vload, etc... everything but GRUB. How can i boot my kernel?
Re:Linux Kernel
Posted: Thu Apr 03, 2003 2:07 am
by nuno_silva_pt
i'm just 14 years old and i didn't have any c++ course, so it is hard to me to understand. if you can send me some source code, please send it
Re:Linux Kernel
Posted: Thu Apr 03, 2003 7:11 am
by distantvoices
Mr. Nuno_silva...
You say, you haven't had some c/c++ course: Go and learn it instead of crawling round and peeking into OS development. This is NOT your playground if you aren't capable of programming techniques and some very basic theory.
You want source code? What would it help? What would you learn? Would you learn pointer arithmetics? Come, tell me, you have a pointer to an intger, say int *p; In which way would it advance if you say: p++;? Do you now about Nassi-shneiderman diagrams? If so, what are they good for?
Thanks for your indeed magnificient audience.
Re:Linux Kernel
Posted: Fri Apr 04, 2003 2:15 am
by nuno_silva_pt
at least, can you tell me how to boot my floppy correctly?
Re:Linux Kernel
Posted: Fri Apr 04, 2003 2:43 am
by Pype.Clicker
you have to install a bootsector correctly on it.
It's not sufficient to format the disk and copy the files on it. You need to access its raw sectors and overwrite the DOS/WINDOWS bootsector telling "this is not a bootable disk, replace and press any key" by the bootsector you want to install.
This is ususally done by a tool like PARTCOPY or RAWWRITE (which you should find easily with a little googling
). Check their manual pages for more info (never used those tools myself ::) )
Now, one link you'll love is probably
http://babelfish.altavista.com/
Re:Linux Kernel
Posted: Fri Apr 04, 2003 3:10 am
by nuno_silva_pt
hehe, verrrrrrrrrry funny.................
Re:Linux Kernel
Posted: Fri Apr 04, 2003 3:18 am
by Pype.Clicker
nuno_silva_pt wrote:
hehe, verrrrrrrrrry funny.................
sorry ... i was just trying to help the best i can do.
I personnally use "cat image.bin >/dev/fd0" ... but this is a Linux command, so ...
As you don't tell us what exactly fails when you try to install the boot system on your floppy, all i can do is guessing what could be wrong ...