+ Reply to Thread
Page 7 of 8 FirstFirst ... 5678 LastLast
Results 91 to 105 of 106

Thread: Razor's Linux Progress

  1. #91
    Moderator anon's Avatar
    Join Date
    01.02.08
    Posts
    39,447
    Activity Longevity
    8/20 19/20
    Today Posts
    1/5 ssss39447
    Quote Originally Posted by Master Razor View Post
    Does anyone know how to export all manuals from linux commands to files?
    But they're files already!

    Use manpath to see the directories used by your system, and man --where --all foo to find a specific manual page of foo.

    The standard location is /usr/share/man according to Filesystem Hierarchy Standard, and /usr/man is usually a symlink to that directory.

    Other locations can be defined in /etc/manpath.config or /etc/man_db.conf (exact location varies). For example, /usr/local/share/man is almost always included.

    In addition, man tries to find manual pages for every directory specified in $PATH – for example, if you added /opt/plan9/bin to $PATH, man will automatically search /opt/plan9/man and /opt/plan9/bin/man.

    If the $MANPATH environment variable is set, however, it will override all other sources.
    "I just remembered something that happened a long time ago."
    Reply With QuoteReply With Quote
    Thanks

  2. #92
    Very good anon but I don't think this helps me. I need them in plain text and those gz archives are man-format for lack of a proper term.
    Reply With QuoteReply With Quote
    Thanks

  3. #93
    Moderator anon's Avatar
    Join Date
    01.02.08
    Posts
    39,447
    Activity Longevity
    8/20 19/20
    Today Posts
    1/5 ssss39447
    Oh well, I guess a simple script that does a for loop on all locations with binaries could work?

    Code:
    #!/bin/sh
    cd /bin
    for $a in * ; do man $a > /tmp/$a.txt ; done
    # Very simple example but the idea is there
    "I just remembered something that happened a long time ago."
    Reply With QuoteReply With Quote
    Thanks

  4. #94
    I think you must have me mistaken for moron. Do read again:
    I'm looking for something like this man ls>./ls.txt but on a much larger scale: all CLI applications, everything that was ever made in a distro, and not just those installed. I'm curious if it can be done, and if so, in what way can it be achieved.
    Last edited by Master Razor; 18.04.18 at 08:23.
    Reply With QuoteReply With Quote
    Thanks

  5. #95
    I'm going to do some distro hopping starting tomorow. While I do not regret using OpenSuse I failed in find a distro with good support for programming. Suse is extremely hard at installing and configuring IDEs and compilers.
    Still, in these 6 months I never had a single issue with it.
    Reply With QuoteReply With Quote
    Thanks

  6. #96
    Moderator anon's Avatar
    Join Date
    01.02.08
    Posts
    39,447
    Activity Longevity
    8/20 19/20
    Today Posts
    1/5 ssss39447
    As it turns out, there is a version of Ghost for Linux (the real thing, not g4l). It's a bit hidden but I found a copy

    "I just remembered something that happened a long time ago."
    Reply With QuoteReply With Quote
    Thanks

  7. #97
    I finally jumped to ArchLinux after seeing the elevel of bloatness of the other popular distributions. Things are a lot more difficult for me now but I quite like it this way. I have come to the conclusion that whatever is very popular is actually crap.
    Reply With QuoteReply With Quote
    Thanks

  8. #98
    Moderator anon's Avatar
    Join Date
    01.02.08
    Posts
    39,447
    Activity Longevity
    8/20 19/20
    Today Posts
    1/5 ssss39447
    Things are a lot more difficult for me now but I quite like it this way.
    I have come to the conclusion that whatever is very popular is actually crap.
    The first thing I thought after reading these phrases is that they're really easy to quote mine.
    "I just remembered something that happened a long time ago."
    Reply With QuoteReply With Quote
    Thanks

  9. #99
    I want to start playing games on linux using wine. I'll mostly be playing games in the era of 2000-2005 so it's nothing fancy. What I'd like to know is if there is any way to re-build wine environment once in a while? Like windows, it tends to be slower with time (many programs, failed uninstalls and such), so how would one clear wine (the equivalent of re-install windows)?
    Another thing, how secure is wine? For example, say I use a keygen that is malware, how much damage would a wine malware do my Linux box? I'm never going to be this reckless but I need to know what to expect.
    Reply With QuoteReply With Quote
    Thanks

  10. #100
    Moderator anon's Avatar
    Join Date
    01.02.08
    Posts
    39,447
    Activity Longevity
    8/20 19/20
    Today Posts
    1/5 ssss39447
    Quote Originally Posted by Master Razor View Post
    What I'd like to know is if there is any way to re-build wine environment once in a while? Like windows, it tends to be slower with time (many programs, failed uninstalls and such), so how would one clear wine (the equivalent of re-install windows)?
    That's the easiest part, just kill all your Wine processes and rm -rf ~/.wine

    As for security, Wine sort of works like Sandboxie, in that programs running inside it have limited or no access to stuff outside the sandbox, and nothing inside it will run if you kill all the associated processes. It is very rare for Windows malware to affect a Linux system (and some of the tricks they use, like kernel-mode drivers, don't work under it), but it's not unheard of, and definitely very much possible. The programmer just needs to anticipate that his work could run on Wine and act accordingly; most don't because it's extra effort with very little gain.
    "I just remembered something that happened a long time ago."
    Reply With QuoteReply With Quote
    Thanks

  11. Who Said Thanks:

    Master Razor (29.07.18)

  12. #101
    That's good. I got my game to work this weekend and I am very happy.
    On top of that, I learned Emacs, and currently using it as my default IDE for all my coding work. Everyone should study it - it is the best editor and ide I've ever worked with, hands down.
    Reply With QuoteReply With Quote
    Thanks

  13. #102
    Moderator anon's Avatar
    Join Date
    01.02.08
    Posts
    39,447
    Activity Longevity
    8/20 19/20
    Today Posts
    1/5 ssss39447
    Quote Originally Posted by Master Razor View Post
    On top of that, I learned Emacs, and currently using it as my default IDE for all my coding work. Everyone should study it - it is the best editor and ide I've ever worked with, hands down.
    You misspelled vi

    Also, if you find a good way to change the codepage for non-Unicode Windows programs running under Wine, please let me know.
    "I just remembered something that happened a long time ago."
    Reply With QuoteReply With Quote
    Thanks

  14. #103
    Well vi comes pre-installed on all linux operating systems, can be learned easily and is very fast text editor. emacs has a very steep learning curve, and you will have to install and configure it on every system you use but once you get it up and running there's nothing you can't do with it.
    vi can't really be used as an IDE - sure, you CAN use it but it's not meant for such a task.

    I got rid of codeblocks, geany and kdevelop in favor of Emacs.
    Reply With QuoteReply With Quote
    Thanks

  15. #104
    I just had a thought: vi supporters have the Cult of vi, while Emacs supporters have the Church of Emacs. Let's fight with bananas
    Reply With QuoteReply With Quote
    Thanks

  16. #105
    Moderator anon's Avatar
    Join Date
    01.02.08
    Posts
    39,447
    Activity Longevity
    8/20 19/20
    Today Posts
    1/5 ssss39447
    The best editor is ed, of course, but I'm a piece of stale bread that can't use it
    "I just remembered something that happened a long time ago."
    Reply With QuoteReply With Quote
    Thanks

+ Reply to Thread
Page 7 of 8 FirstFirst ... 5678 LastLast

Tags for this Thread

Posting Permissions

  • You may post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts
  •