Jump to content

snipertyler

Member
  • Posts

    34
  • Joined

  • Last visited

Community Answers

  1. snipertyler's post in Where is the logfile? was marked as the answer   
    This isn't entirely correct, you'll get a "error.txt" file at the end, but it'll be blank.
    When you want the errors from a program, you need to place the 2>file after the command ie:
    foo 2>error
    would put out a file "error" saying "No command 'foo' found, did you mean:, etc"
    1 on the other hand, puts out normal output
    echo hello 1>normal
    (Little extra info, &>file means both error & normal)
     
    Putting a bash script like this would not work (as you want it):
    echo hello
    foo hello
    2>error
     
    Try this:
    echo hello
    foo hello 2>error
     
    However, this won't do the whole file, just the failed foo command.
    To do the whole file, you can go to the projectzomoid.sh directory in the terminal and run ./projectzomoid.sh 2>error.log
    Or, a little workaround, put the entire file into a subprocess and then add a 2>error at the end.
    (
    echo hello
    foo hello
    ) 2>error
     
     
    But the easiest way (for me) is to simply open a terminal, go to the projectzomboid folder, and attempt to run it there. Any errors will be output to the terminal and you can copy and paste from there.
     
    ==============
    Fyi,
    I would reccomend backing up any files you might change. copy and paste would be fine.
    The pz folder for steam is located here: ~/.local/share/Steam/SteamApps/common/ProjectZomboid
    .sh is *similar* to .exe but more similar to .bat files
    To start a terminal, hit the "windows" key and type terminal, or hit <ctrl>+<alt>+<t> (for ubuntu)
×
×
  • Create New...