>>>>> "newlxuser" == newlxuser  <[EMAIL PROTECTED]> writes:

    >>  yes | rm -ri path/directory ;-)

    newlxuser> Will it affect the symlinks pointing to files in the
    newlxuser> removed directory ?  Will it affect any "dependancy" on
    newlxuser> such removed files/directories ? Or will it give any
    newlxuser> warnnig ? Pl. clarify !

All the symlinks in the directory are removed. All symlinks from
outside that point into this directory will become "dangling
symlinks", those that point nowhere.

Dependencies - rm will not check any dependency. It is your job. There
are no warnings, nothing.

    newlxuser> text-files.  Then how to split files in linux, if a
    newlxuser> large file cannot be accomodated in a single floppy for
    newlxuser> transportation.

man split

split - split a file into pieces

    newlxuser> Confusing ! How to create the image file in the first
    newlxuser> place . (in linux ) Suppose I want to give a executable
    newlxuser> file created in linux to a friend. He has only DOS. And
    newlxuser> he wnats to duplicate the floppy.

Get a DOS formatted floppy, and mount it in linux. Even though MS
refuses to acknowledge the ext2 filesystem, linux happily recognises
msdos/vfat filesystems used by MS operating systems.

mount -t vfat /dev/fd0 /mnt/floppy

and you can access the DOS formatted floppy in the directory
/mnt/floppy. Copy anything you want to transfer into that directory,
run umount /dev/fd0 and give your pal the floppy.

Of course, linux executable files won't work in Windows.

    newlxuser> Does changing any interrupt in above files, will also
    newlxuser> change the actual inturrupts, like Device Manager in
    newlxuser> Win ?  The change will be in effect immidiately or have
    newlxuser> issue some "refresh" command.

You shouldn't be changing these; if you really need to change, the
driver usually allows command line parameters to select an IRQ line
and such. Read documentation of the driver you are interested in.

    newlxuser> What is HUP ? How to know which other dependent
    newlxuser> services may get affected by changing a single service

HUP (actually, SIGHUP) is hangup, one of the 20 signals defined by the
POSIX standard. Earlier used to detect terminal hangups, but nowadays
used mainly by daemons so that the administrator can tell them when to
reload configuration.

There is no way of knowing that. You should know - period. Usually,
you can make out, like changing httpd.conf should mean notifying the
httpd service, or changing smb.conf should mean notifying the smb
service.

Binand

_______________________________________________
linux-india-help mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/linux-india-help

Reply via email to