Results 1 to 4 of 4

Thread: FCM archive for all issues?

  1. #1
    Join Date
    Dec 2011
    Location
    Atlanta, Georgia USA
    Beans
    45
    Distro
    Xubuntu 16.04 Xenial Xerus

    FCM archive for all issues?

    Hello everyone,
    I was wondering if there is an archive to download all issues of Full Circle Magazines to date. On the issuu website I can only DL one at a time, and they are not in order. I just learned of FCM and after reading a couple of them I would like to DL all of them as I still have a lot to learn. Also, I think I saw something somewhere about an index of what is in each issue, but I can't find it again.

    Any help would be greatly appreciated,
    stylintile
    Last edited by stylintile; May 30th, 2013 at 11:33 AM.
    Ubuntu User #35429 | Linux User #558865

  2. #2
    Join Date
    Feb 2007
    Location
    Romania
    Beans
    Hidden!

    Re: FCM archive for all issues?

    Hi,

    You can download the issues (one by one) from http://fullcirclemagazine.org/downloads/

    At the top of the page there is a link to the special editions as well and at the bottom there is a link to a page where you can download a bunch of issues at once. It's beta and it didn't work for me.

    Here is how you can download all of them with wget. wget is a CLI application so you have to run it in a terminal.

    By default, your current working directory is your home directory. So if you want to download the files somewhere else you have to change the working directory with the cd command. You can use mkdir to create a new one if you wish. For example:
    Code:
    mkdir ~/FCM
    cd ~/FCM
    Now you can use wget to download the files:
    Code:
    wget http://dl.fullcirclemagazine.org/issue{0..72}_en.pdf
    This will download all the issues from 0 to 72. You can change the range if you wish. For example {10..15} to download from issue 10 to 15 or {1,5,10,71} to download issue 1, 5, 10 and 71.
    Last edited by sisco311; November 14th, 2013 at 10:42 PM.

  3. #3
    Join Date
    Dec 2011
    Location
    Atlanta, Georgia USA
    Beans
    45
    Distro
    Xubuntu 16.04 Xenial Xerus

    Re: FCM archive for all issues?

    Quote Originally Posted by sisco311 View Post
    Now you can use wget to download the files:
    Code:
    http://dl.fullcirclemagazine.org/issue{0..72}_en.pdf
    This will download all the issues from 0 to 72. You can change the range if you wish. For example {10..15} to download from issue 10 to 15 or {1,5,10,71} to download issue 1, 5, 10 and 71.
    A HUGE THANK YOU!
    I used the wget with the url and they are downloading as I am typing this (already up to issue 39). You saved me a bunch of time with that.

    I'm still searching for the index I mentioned above. I remember it said it wasn't complete, but that's okay, I can complete it as I read them. Hopefully I can find it again, If not then I will index it and post it for any who are interested

    Thanks again.
    Ubuntu User #35429 | Linux User #558865

  4. #4
    Join Date
    Oct 2010
    Location
    SDN
    Beans
    182
    Distro
    Ubuntu

    Re: FCM archive for all issues?

    Hi
    just passed by and wanted to make the correct code for some people may like to paste that
    Now you can use wget to download the files:
    Code:
    http://dl.fullcirclemagazine.org/issue{0..72}_en.pdf

    code is :
    Code:
    wget http://dl.fullcirclemagazine.org/issue{0..72}_en.pdf
    replace 72 by 78 or the current issue or where you want to stop
    Thanks
    Last edited by fatharraxman; November 14th, 2013 at 09:59 PM.
    Computer is not a device anymore. It is an extension of your mind and your gateway to other people
    Teach Ubuntu as a newbie Join
    O'Reilly's CD bookshelf Ubuntu 11.04 =D>

Bookmarks

Posting Permissions

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