Unix/Linux

NAVIGATION
CATEGORIES
REFERRENCE
LINKS
  • Are there any other killer-apps like mc ?

    10 answers - 1041 bytes - related search similar search Add To My Delicious Add To My Stumble Upon Add To My Google Mark Add To My Facebook Add To My Digg Add To My Reddit

    It's often occured to me that since life would be so much more
    difficult without mc -- I'd have to tap-around-in-the-dark like:
    cd /blu
    ls bla
    grep blong
    find blib
    rm blam
    mv blibble [is that right ? don't (want to know)]
    etc., --
    that perhaps there are other simmilar menu-based killer-apps,
    for other [than file & dir management] tasks which I'm missing.
    It would be great if there was an IDE like Turbo Pascal started
    and was copied by others decades ago.
    BTW I've [only now] found a good reason to split the instalation
    over several partitions: for the first time I'm trying mc's undelete,
    and it's been running for 30 minutes on a 8 Gb partition [which
    df shows is 16% used].
    Q. - If I put /home, /root, /usr of different partitions [using mc of
    course], how does rebooting automatically find/mount them ?
    Do I just edit /etc/fstab, and if so what do I add ?
    Thanks for any info.
    == Chris Glur.
  • No.1 | | 2490 bytes | |

    ["Followup-To:" header set to comp.os.linux.misc.]
    Mon, 11 Jul 2005 10:54:50 -0500, news@absamail.co.za staggered into
    the Black Sun and said:
    It's often occured to me that since life would be so much more
    difficult without mc. Are there other simmilar menu-based
    killer-apps, for other tasks which I'm missing?

    Depends on exactly what it is that you want to do. mc is (mostly) a
    command-line file manager. mutt, slrn, and emacs are examples of
    command-line mail, NNTP, and complete operating environments. They're
    not really "menu-driven" though.

    It would be great if there was an IDE like Turbo Pascal started
    and was copied by others decades ago.

    People who love the command line and want IDE-like environments tend to
    gravitate to emacs. There are all kinds of hooks within emacs and vim
    for working with source code man page for function under cursor,
    auto-complete word under cursor, use ctags to find definition of
    function under cursor, etcetera. emacs also can work with gdb, which
    vim seems to have a harder time doing.

    for the first time I'm trying mc's undelete, and it's been running for
    30 minutes on a 8 Gb partition

    "Undelete" doesn't really work on ext3 or ReiserFS for various technical
    reasons. If you're using ext2, you really shouldn't be, since ext3 has
    journalling. It may be possible to simulate undelete by grepping the
    entire filesystem, but that takes forever. The steps to take, really,
    are:

    0. Regular backups.
    1. Use "rm -i".
    2. Use KDE/GNME/your window manager's "trash can".
    3. Install one of the "libtrash" libraries that use various tricks to
    turn unlink() into rename(".trash/originalfilename") or something like
    that.

    If I put /home, /root, /usr of different partitions (using mc of
    course), how does rebooting automatically find/mount them?

    It doesn't, unless you use mount-by-label, which has some problems if
    you have 2 or more filesystems with the same label. And you should not
    put /root on a partition that's separate from / . /bin , /sbin , /lib ,
    /etc , /root , and /dev must be on / .

    Do I just edit /etc/fstab, and if so what do I add ?

    /usr /dev/hdXY ext3 noatime 1 2
    /home /dev/hdXY ext3 noatime 1 2

    replace with the appropriate device node names, the appropriate
    mountpoints, and the appropriate filesystem types.
  • No.2 | | 2098 bytes | |

    <news@absamail.co.zawrote in message
    news:D8mdnWJ-kdbXC0_fRVn-jg@is.co.za
    <snip>
    It would be great if there was an IDE like Turbo Pascal started
    and was copied by others decades ago.
    <snip>

    Three comments from some one learned to program on Turbo Pascal. First under
    the ancient cpm os - then the dreaded MS DS.

    First -
    The "joe" editor has a Wordstar mode you invoke by calling jstar. This is
    almost exactly the Turbo Pascal editor. If you ask, I probably couldn't
    tell you a single WordStar/Turbo Pascal editing command. BUT the neurons in
    my knuckles know *exactly* what to do. If you are missing the features of
    Turbo Pascal editing, you will appreciate the jstar invocation of the joe
    editor.

    Second -
    The other half of Turbo Pascal was the integrated Pascal compiler. I know
    of nothing *quite* like it in the Linux world. However - there are
    tantalizing bits and pieces of it all over the place. You pretty much have
    the tools you need to roll your own. But - you will have to roll your own!

    The closest you can find (I think!) is the emacs editor with which you can
    integrate both the Turbo Pascal/Wordstar style editing and a language
    compiler of your choice - including Pascal. Bear in mind that I am talking
    through my hat here. I, personally, have yet to play with emacs. I'm too
    busy at the moment, trying to jump to Turbo Pascals successor Delphi with
    Python as the language of choice. (Glade/pygtk?) (wxGlade/wxPython?) or
    perhaps (one of a sundry other half finished gnu projects?)

    Which brings me to my third point -
    Kylix is Borlands port of Delphi to Linux. And again, I can say little
    about this except it is out there. My own programming efforts under Linux
    is leading me in the direction of Python rather than Pascal. I suspect half
    the world would love to see a robust integrated GUI/IDE around Python a la
    Delphi/Kylix.

    I, too, still have the warm and fuzzies for that old Turbo Pascal IDE!
    Thomas Bartkus

  • No.3 | | 971 bytes | |

    2005-07-11, Dances With Crows <danSPANceswitTRAPhcrows@gmail.comwrote:
    ["Followup-To:" header set to comp.os.linux.misc.]
    Mon, 11 Jul 2005 10:54:50 -0500, news@absamail.co.za staggered into
    the Black Sun and said:
    >It's often occured to me that since life would be so much more
    >difficult without mc. Are there other simmilar menu-based
    >killer-apps, for other tasks which I'm missing?
    >

    Depends on exactly what it is that you want to do. mc is (mostly) a
    command-line file manager. mutt, slrn, and emacs are examples of
    command-line mail, NNTP, and complete operating environments. They're
    not really "menu-driven" though.

    snip

    Lynx for web-browsing, SnowNews for RSS, Leafnode for NNTP cache, wget for
    FTP,

    I'm using the editor that comes with mc (mcedit) as my preferred editor for
    use with slrn. It uses Aspell (or Ispell) as a spelling checker.
  • No.4 | | 1141 bytes | |

    * Whiskers Wrote in alt.os.linux.mandrake:

    2005-07-11, Dances With Crows
    <danSPANceswitTRAPhcrows@gmail.comwrote:
    >["Followup-To:" header set to comp.os.linux.misc.]
    >Mon, 11 Jul 2005 10:54:50 -0500, news@absamail.co.za staggered
    >into the Black Sun and said:

    It's often occured to me that since life would be so much more
    difficult without mc. Are there other simmilar menu-based
    killer-apps, for other tasks which I'm missing?
    >>

    >Depends on exactly what it is that you want to do. mc is
    >(mostly) a command-line file manager. mutt, slrn, and emacs are
    >examples of command-line mail, NNTP, and complete operating
    >environments. They're not really "menu-driven" though.
    >

    snip

    Lynx for web-browsing, SnowNews for RSS, Leafnode for NNTP cache,
    wget for FTP,

    I'm using the editor that comes with mc (mcedit) as my preferred
    editor for use with slrn. It uses Aspell (or Ispell) as a
    spelling checker.

    Interesting. Why not vi[m]?
  • No.5 | | 307 bytes | |

    In article <D8mdnWJ-kdbXC0_fRVn-jg@is.co.za>, <news@absamail.co.zawrote:
    >
    >
    >It's often occured to me that since life would be so much more
    >difficult without mc -- I'd have to tap-around-in-the-dark like:


    Personally, I prefer ls.
  • No.6 | | 228 bytes | |

    Mon, 11 Jul 2005 12:40:37 -0500, Thomas Bartkus wrote:
    I, too, still have the warm and fuzzies for that old Turbo Pascal IDE!
    Thomas Bartkus
    Let's not overlook Free Pascal and its included IDE.
    Gary
  • No.7 | | 280 bytes | |


    Thomas Bartkus wrote:
    WordStar/Turbo Pascal
    the memories, but somehow they look "natural" in the crowd of
    "aping" apps. ( , maybe we invested time in proper learning then?)
    Have fun
    Stanislaw
    Slack user from Ulladulla.
  • No.8 | | 2073 bytes | |

    Whiskers wrote:

    2005-07-11, Dances With Crows <danSPANceswitTRAPhcrows@gmail.com>
    wrote:
    >["Followup-To:" header set to comp.os.linux.misc.]
    >Mon, 11 Jul 2005 10:54:50 -0500, news@absamail.co.za staggered into
    >the Black Sun and said:

    It's often occured to me that since life would be so much more
    difficult without mc. Are there other simmilar menu-based
    killer-apps, for other tasks which I'm missing?
    >>

    >Depends on exactly what it is that you want to do. mc is (mostly) a
    >command-line file manager. mutt, slrn, and emacs are examples of
    >command-line mail, NNTP, and complete operating environments. They're
    >not really "menu-driven" though.
    >

    snip

    Lynx for web-browsing, SnowNews for RSS,
    Leafnode for NNTP cache

    speaking of leafnode. dont forget to update it as a number of
    vulnerabilities in the leafnode NNTP server package have been found:

    Package name: leafnode
    Advisory ID: MDKSA-2005:114
    Date: July 11th, 2005

    Affected versions: 10.1, 10.2, Corporate 3.0
    A vulnerability in the fetchnews program that could under some
    circumstances cause a wait for input that never arrives, which in
    turn would cause fetchnews to hang (CAN-2004-2068).

    Two vulnerabilities in the fetchnews program can cause fetchnews to
    crash when the upstream server closes the connection and leafnode is
    receiving an article header or an article body, which prevent leafnode
    from querying other servers that are listed after that particular
    server in the configuration file (CAN-2005-1453).

    Finally, another vulnerability in the fetchnews program could also
    cuase a wait for input that never arrives, causing fetchnews to
    hang (CAN-2005-1911).

    , wget for
    FTP,

    I'm using the editor that comes with mc (mcedit) as my preferred editor
    for
    use with slrn. It uses Aspell (or Ispell) as a spelling checker.
  • No.9 | | 383 bytes | |

    2005-07-12, js <soul_linux@my_place.comwrote:

    snip

    speaking of leafnode. dont forget to update it as a number of
    vulnerabilities in the leafnode NNTP server package have been found:

    snip

    I just got the "[Security Announce] MDKSA-2005:114 - Updated leafnode
    packages fix multiple vulnerabilities" e-mail :)) It's mentioned in
    Secunia too.
  • No.10 | | 462 bytes | |

    Whiskers wrote:

    2005-07-12, js <soul_linux@my_place.comwrote:

    snip
    >
    >speaking of leafnode. dont forget to update it as a number of
    >vulnerabilities in the leafnode NNTP server package have been found:
    >

    snip

    I just got the "[Security Announce] MDKSA-2005:114 - Updated leafnode
    packages fix multiple vulnerabilities" e-mail :)) It's mentioned in
    Secunia too.

    sweeeet

Re: Are there any other killer-apps like mc ?


max 4000 letters.
Your nickname that display:
In order to stop the spam: 7 + 6 =
QUESTION ON "Unix/Linux"

EMSDN.COM