Page 1 of 2 12 LastLast
Results 1 to 15 of 18

Thread: Fryfrog's update script.

  1. #1
    Registered User
    Join Date
    Apr 2002
    Posts
    8

    Fryfrog's update script.

    Heya Fryfrog. I used to have the update script you linked to in the HOW TO for REDHAT 7.2. When I try to get it now the link is bad. Was just hoping you had a place I could download it from.

    Thanks
    Rayden
    Last edited by Rayden; 06-25-2002 at 11:42 AM.

  2. #2
    Registered User
    Join Date
    Jan 2002
    Posts
    741
    I'm not fryfrog, but I will tell you that it's best not to use an update script. Things change, and you may find your script suddenly doesn't work. The best way to update, at least right now is this:

    Code:
    # cd [directory you downloaded to - usually /seq/showeq]
    # cvs -z3 update
    # export QTDIR=/opt/qt-2.3.2 [most likely where it is if you used the walkthru]
    # export CC=gcc3; export CXX=g++3
    # ./configure && make && make install
    If you followed the RedHat walkthru, then that is most likely what you need to do. If you installed Qt somewhere else, then use that location instead. I hope that helps you out.

  3. #3
    Registered User
    Join Date
    Dec 2001
    Posts
    849

    Re: Fryfrog's update script.

    Originally posted by Rayden
    Heya Fryfrog. was just re-installing my showeq freshly and tried to get the update script you made that's referenced in the "RedHat 7.2 How to" however it tells me file not found. Would you happen to still have that script somewhere where i might download it? thanks

    Rayden
    It might be helpful to know EXACTLY what you typed that caused the "file not found" error. Otherwise there are VERY LARGE number of character strings that you could type at a linux shell prompt that will give you a "file not found" message. It would take a very long time to randomly guess what you typed to get the error...

    Also I'm in total agreement with Dedpoet...
    "What you've just said is one of the most insanely, idiotic things i've ever heard. At no point in your rambling, incoherant response were you even close to anything that could be considered a rational thought. Everyone in this room is now dumber for having listened to it. I award you NO points, and may god have mercy on your soul."

  4. #4
    Registered User Mr. Suspicious's Avatar
    Join Date
    May 2002
    Posts
    667
    Prolly the "showeq.conf" thing again
    Before asking anything read the pre-face section of http://www.smoothwall.org/download/p....9/doc.faq.pdf

    after you've read it, you know what to do next...




    "Stay alert! Trust noone! Keep your Lazers Handy! Have a nice day." -- Provided courtesy of the Computer. The Computer never lies.

  5. #5
    Registered User
    Join Date
    Jan 2002
    Posts
    741
    Prolly the "showeq.conf" thing again
    Yes, that probably is the case. Rayden, did the script run through the whole update and compile, and -then- say "file not found", or did it say it right away when you tried to run the update? If it's the former, then you can ignore the message - the script is just trying to copy a file that is no longer used in Seq. If it's the later, then do what SBR suggested and post some more info on what exactly is going on.

    Either way, you should use the method I posted to do the update instead of the script. If you can't remember the steps (it took me quite a few times to be able to do them off the top of my head), just jot them down somewhere. After a few updates, you'll be a pro.

  6. #6
    Registered User
    Join Date
    Apr 2002
    Posts
    8
    Sorry, bad wording. I have edited my origional post
    Last edited by Rayden; 06-25-2002 at 11:42 AM.

  7. #7
    Registered User
    Join Date
    Dec 2001
    Posts
    849
    It's all in the details isn't it
    "What you've just said is one of the most insanely, idiotic things i've ever heard. At no point in your rambling, incoherant response were you even close to anything that could be considered a rational thought. Everyone in this room is now dumber for having listened to it. I award you NO points, and may god have mercy on your soul."

  8. #8
    Registered User
    Join Date
    Dec 2001
    Posts
    951
    he is talking about the url to a script that used to reside on my web server until i accidentally blew it way. the script was okay, but doing it by hand is not that many more steps. you can make the above suggestion even shorter if you like:

    Code:
    # cd /root/showeq/
    # cvs -z3 update
    # make -f Makefile.dist
    # CC=gcc3 CXX=g++3 QTDIR=/path/to/qt-2.3.2 ./configure
    # make && make install

  9. #9
    Registered User
    Join Date
    Dec 2001
    Posts
    849
    Originally posted by fryfrog
    he is talking about the url to a script that used to reside on my web server until i accidentally blew it way.
    Yeah, but the way he had it worded before made it sound like he was having trouble running the script, not downloading it.

    I hate it when people edit thier posts rather than posting a new message...
    "What you've just said is one of the most insanely, idiotic things i've ever heard. At no point in your rambling, incoherant response were you even close to anything that could be considered a rational thought. Everyone in this room is now dumber for having listened to it. I award you NO points, and may god have mercy on your soul."

  10. #10
    Registered User
    Join Date
    Apr 2002
    Posts
    8
    I actually did post a reply. My reply said that I edited my post =)

    anyway, since FryFrog accidentally deleted the script, would anyone that was able to download it prior to his accident be able to post it somewhere? I know its pretty easy to do by hand but I really liked some of the features that were bult into the scipt. sorry about the confusion before about my working =)

    Rayden

  11. #11
    Registered User
    Join Date
    Dec 2001
    Posts
    849
    Originally posted by Rayden
    I actually did post a reply. My reply said that I edited my post =)
    I realise that you made a post stating you updated your original. The problem is now all the responses make no sense for the (new)question asked.... It's better to post a new message with the New quesiton than to change your original post to ask a completely different question...
    "What you've just said is one of the most insanely, idiotic things i've ever heard. At no point in your rambling, incoherant response were you even close to anything that could be considered a rational thought. Everyone in this room is now dumber for having listened to it. I award you NO points, and may god have mercy on your soul."

  12. #12
    Registered User
    Join Date
    Apr 2002
    Posts
    8
    Anyway, if someone got this before it poofed I'd love a copy of it. thanks

  13. #13
    Registered User
    Join Date
    Jan 2002
    Posts
    741
    You can just take the commands posted by either fryfrog or myself, type them into your favorite text editor in Linux, and then save the file as whatever you want (/seq/showeq/update_script for example). Then make it executible:
    Code:
    # chmod 755 /seq/showeq/update_script
    Now all you have to do to update is:
    Code:
    # cd /seq/showeq
    # ./update_script
    Bang, you have your own update script that you wrote yourself. Ain't shell scripting fun?!

  14. #14
    Registered User
    Join Date
    Dec 2001
    Posts
    951
    the update script i made was a little more complicated. it would detect the presence (or absence) of your libEQ.a file and your qt installation, and in the case of libEQ.a it would download it for ya which meant if you n eeded the new libeq, you just deleted your current one and it would re-get it :). it would also show you the CHANGES file if there was anything new. it was kinda spiffy, but really not that needed.

  15. #15
    Registered User
    Join Date
    Mar 2002
    Posts
    4
    I like it, and still use it. sofar its working great.
    PlanetBOB


Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

You may post new threads
You may post replies
You may post attachments
You may edit your posts
HTML code is Off
vB code is On
Smilies are On
[IMG] code is On