On early Mon, 3 Sep 2001 morning, Rajen Parekh <rajen@sof wrote:
Can anybody suggest a good Console based Word Processor (Not Text Editor)? Some thing similar to WordStar on DOS.
jstar is joe that emulates WordStar! Quite good. Used it a couple of times.
Fart
Hi Linuxers,
I freshly installed RH Linux 7.1 on an AM K6-2n with 20 GB HDD. Now I made a prrimaryr parrtition of 4 GB and installed win on it. Then booted using a linux CD and made the follwing parttitions - /dev/hda2 20 M /boot /dev/hda5 5000M /secy of type Dos >=32M
and the /usr /home swap and / in the follwing partitions. However now I when I boot in Win I am not able to view the 5 GB dos partition. I rebooted in Linux and it shows me there. I formatted the /secy partition using mkosfs -F 32. An erbooted in Win, still no luck.
Any idea on how i can view it in windows as D: drive?
Goldwyn :o)
Sometime on Sep 2, Goldwyn Rodrigues assembled some asciibets to say:
I freshly installed RH Linux 7.1 on an AM K6-2n with 20 GB HDD. Now I made a prrimaryr parrtition of 4 GB and installed win on it. Then booted using a linux CD and made the follwing parttitions - /dev/hda2 20 M /boot /dev/hda5 5000M /secy of type Dos >=32M
and the /usr /home swap and / in the follwing partitions. However now I when I boot in Win I am not able to view the 5 GB dos partition. I rebooted in Linux and it shows me there. I formatted the /secy partition using mkosfs -F 32. An erbooted in Win, still no
Ok, the problem really is that windows does not look at the partition table to determine the type of partition, but at the first 512 bytes on the partition. For DOS/Windows partitions, these bytes need to be zeroed out or something. fdisk or whatever linux utils you use only set the partition id, and don't do this zeroing out. mkosfs creates the fat and sectors, but again does not zero out the first few bytes. Your best bet is to use windows fdisk, delete the partition (which should show up as non-dos), and re create it, or try dd if=/dev/zero of=/dev/hda5 bs=512, but this is risky.
Philip
Hi All,
I have a little bit of C in my currriculum. Now we have done quite a lot including data structures. I need to know of a good resource or book to develop projects under linux including the make utility etc. besides the man pages ...
Goldwyn :o)
On Sun, 2 Sep 2001, Goldwyn Rodrigues wrote:
Hi All,
I have a little bit of C in my currriculum. Now we have done quite a lot including data structures. I need to know of a good resource or book to develop projects under linux including the make utility etc. besides the man pages ...
For make utility you can refer http://www.gnu.org
regards
--------------------------------------- Pankaj Jangid National Centre for Software Technology ---------------------------------------
On Sun, 2 Sep 2001, Goldwyn Rodrigues wrote:
good resource or book to develop projects under linux including the make utility etc. besides the man pages ...
The Make info manual is a good place to start. Read the gcc-howto. Learn Vim. Help is available for C library functions and system calls via the info- and man-pages.
Manish