<---- template headericclude ----->
How to install Screaming Frog
FedoraForum.org - Fedora Support Forums and Community
Page 1 of 2 12 LastLast
Results 1 to 15 of 17
  1. #1
    Join Date
    Aug 2021
    Location
    germany
    Posts
    7
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    How to install .deb software?

    I am new to Fedora and need to install Screaming Frog Seo Spider for my Work (-> https://www.screamingfrog.co.uk). They have only a .deb Version for download. How could i manage to run it on Fedora? If possible at all.
    Would appreciate experienced users giving me some hints.
    Thanks
    Georg
    Last edited by georg; 11th August 2021 at 09:08 AM. Reason: Improve CTA

  2. #2
    BossHog Guest

    Re: How to install .deb software?

    Quote Originally Posted by georg
    I am new to Fedora and need to install Screaming Frog Seo Spider for my Work (-> https://www.screamingfrog.co.uk). They have only a .deb Version for download. How could i manage to run it on Fedora? If possible at all.
    Would appreciate experienced users giving me some hints.
    Thanks
    Georg
    The package "alien" converts .deb to .rpm. It fails in this case:
    Code:
    [root@localhost Downloads]# alien --scripts screamingfrogseospider_15.2_all.deb
    [root@localhost Downloads]# ls
     backup
      ISO
     screamingfrogseospider_15.2_all.deb
     Torrent
    [root@localhost Downloads]#
    It does not convert.

    Migrate to mint or ubuntu.

  3. #3
    Join Date
    Aug 2021
    Location
    germany
    Posts
    7
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to install .deb software?

    Thanks a lot!

  4. #4
    Join Date
    Oct 2010
    Location
    Canberra
    Posts
    3,857
    Mentioned
    14 Post(s)
    Tagged
    1 Thread(s)

    Re: How to install Screaming Frog

    An option for running alternate distributions is to set up a virtual machine, or perhaps a container.
    That way you can keep Fedora for your machine, but still have Mint for your program.

    I have many ideas, even some I haven't thought of yet.

  5. #5
    BossHog Guest

    Re: How to install Screaming Frog

    Quote Originally Posted by ocratato
    An option for running alternate distributions is to set up a virtual machine, or perhaps a container.
    That way you can keep Fedora for your machine, but still have Mint for your program.
    TS does not want tat. He or she wants to install a deb file on fedora.

    Thanks ay way... Reading is rocketscience for you???????

  6. #6
    Join Date
    Aug 2021
    Location
    germany
    Posts
    7
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to install Screaming Frog

    Quote Originally Posted by ocratato
    An option for running alternate distributions is to set up a virtual machine, or perhaps a container.
    That way you can keep Fedora for your machine, but still have Mint for your program.
    Yes, I think this will be my option to go with Fedora.
    Thank you.

  7. #7
    BossHog Guest

    Re: How to install Screaming Frog

    fair enough.

    Stop crying now, and piss of from now.

  8. #8
    Join Date
    Jul 2004
    Location
    Colton, NY; Junction of Heaven & Earth (also Routes 56 & 68).
    Age
    78
    Posts
    24,772
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to install Screaming Frog

    OKAY, THAT'S ENOUGH!!! BossHog, go back and read the Posting Rules if you wish to remain in the Forum.
    Linux & Beer - That TOTALLY Computes!
    Registered Linux User #362651


    Don't use any of my solutions on working computers or near small children.

  9. #9
    Join Date
    Nov 2006
    Location
    Detroit
    Posts
    8,473
    Mentioned
    52 Post(s)
    Tagged
    0 Thread(s)

    Re: How to install Screaming Frog

    You can convert the deb file to an RPM using alien (dnf install alien), like this:
    Code:
    alien -r -c --fixperms screamingfrogseospider_15.2_all.deb
    I just did that in Fedora 34, and it took a few minutes but it eventually produced the screamingfrogseospider-15.2-2.x86_64.rpm file. Unfortunately if you then try to install that RPM directly you'll get a message about its /usr/bin/ conflicting with the /usr/bin/ from Fedora's filesystem package. So instead, use rpm2cpio to unpack the contents of the RPM into a temporary directory, then move its bin and share subdirectories to a special location: /opt/ScreamingFrog:
    Code:
    mkdir -p /opt/ScreamingFrog
    mkdir /tmp/frog
    cp screamingfrogseospider-15.2-2.x86_64.rpm  /tmp/frog
    cd  /tmp/frog
    rpm2cpio screamingfrogseospider-15.2-2.x86_64.rpm | cpio -ivd
    cd usr
    mv bin share /opt/ScreamingFrog/
    cd /opt/ScreamingFrog/bin
    sed -i -e 's/usr/opt\/ScreamingFrog/g' screamingfrogseospider
    chmod +x /opt/ScreamingFrog/share/screamingfrogseospider/jre/bin/*
    You can now run Screaming Frog like this (as any user):
    Code:
    /opt/ScreamingFrog/bin/screamingfrogseospider
    I just did all that in Fedora 34 and it worked:
    Click image for larger version. 

Name:	screaming_frog.jpg 
Views:	100 
Size:	179.2 KB 
ID:	31851
    OS: Fedora 38 x86_64 | Machine: Lenovo ThinkCentre M91P | CPU: Intel Core i5-2500 (4)@3.30GHz | RAM: 32GB PC3-12800 DDR3 | Disk: 500GB SATA | Video: Intel HD Graphics 2000 128MB | Sound: Turtle Beach Santa Cruz CS4630 | Ethernet: Intel 82579LM

  10. #10
    Join Date
    Aug 2021
    Location
    germany
    Posts
    7
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Thumbs up Re: How to install Screaming Frog

    @RupertPupkin
    This way it works for me as well. Great to be part of such a great community with people like you.
    Thank you.

  11. #11
    Join Date
    Oct 2021
    Location
    USA
    Posts
    3
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)

    Re: How to install Screaming Frog

    For some reason, none of these methods helped me. It's probably the third day I've been trying to install Screaming Frog Seo Spider on my fedora laptop. And I still can't understand why I can't install this tool on my computer. Perhaps the main problem is that I am still poorly versed in the fedora system. Up to this point, the only operating system I used was Windows, but at my new job I was asked to change the operating system to fedora. Initially, by profession I am a web designer in an SEO company similar to Press Pog, so I don't really understand much about operating systems like fedora or linux. I hope that it will not be so difficult for you to help me.
    Last edited by jesscaper; 16th October 2021 at 12:01 AM.

  12. #12
    Join Date
    Aug 2021
    Location
    germany
    Posts
    7
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to install Screaming Frog

    Hey @jesscaper, worked for me including a few updates. What exactly did you do and what happened (not). If you need help, I can also offer you to contact me, I also work in the online marketing industry.
    Last edited by georg; 16th October 2021 at 05:03 PM.

  13. #13
    Join Date
    Feb 2023
    Location
    Indonesia
    Posts
    3
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to install Screaming Frog

    Hello I am using fedora 37 version

    in the Downloads folder there is already a file screamingfrogseospider-18.1-2.x86_64.rpm
    when I try to install it an error appears: directory
    I tried the method you provided. But I'm still a beginner using fedora

    and I tried to do what you wrote but I m
    I'm currently on
    and this is what i have done
    Download/screamingfrogseospider-18.1/usr/bin

    [wahyu@fedora bin]$ mkdir /opt/ScreamingFrog
    [wahyu@fedora bin]$ mkdir/tmp/frog
    mkdir: cannot create directory '/tmp/frog': File exists

    can you tell me an easy way to install screaming frog. I'm still confused

  14. #14
    Join Date
    Aug 2021
    Location
    germany
    Posts
    7
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to install Screaming Frog

    Hi, Screaming Frog has a rpm package since last year. Before that, there was only a deb package.
    So now you would just:
    cd Downloads
    sudo dnf install screamingfrogseospider-18.1-2.x86_64.rpm
    For future upgrades from one version to another follow:
    cd Downloads
    sudo rpm -e --noscripts screamingfrogseospider
    sudo rpm -i screamingfrogseospider-18.1-x.x86_64.rpm

  15. #15
    Join Date
    Feb 2023
    Location
    Indonesia
    Posts
    3
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to install Screaming Frog

    Hi, The installation is still failing.
    and when I install it appears like that.
    Attached Thumbnails Attached Thumbnails Click image for larger version. 

Name:	Screenshot from 2023-02-13 23-34-59.png 
Views:	19 
Size:	225.8 KB 
ID:	32723  

Page 1 of 2 12 LastLast

Similar Threads

  1. Not yet screaming but ... WHAT?
    By TheForsaken in forum Reviews, Rants & Things That Make You Scream
    Replies: 29
    Last Post: 27th January 2011, 04:50 PM
  2. Replies: 46
    Last Post: 20th January 2011, 08:09 PM
  3. HP Server Install, fans screaming
    By SpiritedTech in forum Servers & Networking
    Replies: 1
    Last Post: 19th July 2005, 02:48 PM
  4. FC2 screaming interrupt
    By abelard in forum EOL (End Of Life) Versions
    Replies: 0
    Last Post: 15th August 2004, 10:23 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
[[template footer(Guest)]]