Results 1 to 10 of 10

Thread: How to: Jinzora on a LAMP - Dapper

  1. #1
    Join Date
    Apr 2006
    Location
    Modesto, CA
    Beans
    106
    Distro
    Ubuntu 8.10 Intrepid Ibex

    Post How to: Jinzora on a LAMP - Dapper

    Original Creation Date: 10-15-2006

    Purpose of this how-to: This how-to is geared towards those with the desire to store their mp3 collection in a "Jinzora Stand-alone" LAMP server. This allows for easy management and streaming through a web browser.

    Note: Currently the developers seem to have a problem with case sensitivity so symlinks are neccesary to get the current version working (As of the Original date above). This HOW-TO assumes you have already set up a LAMP and have access to MySQL (You know the username and password).

    -- To begin: Download the jznightly

    Step 1 - :: DOWNLOADING ::

    - Open a console and move to your root web site directory:

    Note: (Usually /var/www).

    mv /var/www
    - Download the file

    Step 2 - :: EXTRACTION ::

    - To unpack the file :

    tar -zxvf jzcurrent.tar.gz
    Note: If you're this far you have a folder sitting in /var/www called jinzora2

    - You now can move the folder to another folder called music (This will not affect the install).

    sudo mv jinzora2 music
    Step 3 - :: INSTALLING ::

    - Move into the unpacked directory:

    mv music
    - Allowing the installer to execute:

    chmod 744 ./configure.sh
    Note: The installer needs certain permissions, set these by running this command:

    sh ./configure.sh
    Note: If everything went well you can now proceed to the web based installer. Open a browser and go to the http location of your files. The installer will begin. The installer is pretty straight forward but note, unless you have MPD installed and configured set this up as a streaming only installation.

    Note: You will get a security breach warning until you finish the following step:

    Step 4 - :: FINISHING UP ::

    Note: After you've finished the web based installer move the install folder or delete it:

    -moving

    mv install install.bak
    -deleting

    sudo rm -rf install
    Note: Now symlink the two folders with case problems:

    -move into the templates directory:

    cd templates
    -create the symlinks

    sudo ln -s slick Slick
    sudo ln -s slimzora Slimzora
    Note: That should just about do it. This is my first how-to and I'm fairly new to the linux desktop environment - hope it works for you. I hope I haven't been too winded and inaccurate.

    Ref:
    - main site : http://www.jinzora.com/
    - downloads : http://www.jinzora.com/pages.php?pn=downloads
    - forums : http://www.jinzora.com/forums/
    - faqs : http://www.jinzorahelp.com/en/faq
    - documentation : http://www.jinzorahelp.com/en/documentation
    how-tos: Jinzora
    (Machines Converted to Ubuntu: 25 machines!!) Local Servers (5) - Local Workstations (4) - Remote servers (16)
    - My PC - Tri-Sli 1250 Watt Quad Core Kill you in the face machine -

  2. #2
    Join Date
    Sep 2007
    Location
    Philadelphia, PA
    Beans
    2
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: How to: Jinzora on a LAMP - Dapper

    Can I mount an NFS or CIFS volume so that Jinzora will have access to it and use it for the music directory?

  3. #3
    Join Date
    Jun 2005
    Location
    Albuquerque, New Mexico
    Beans
    272
    Distro
    Ubuntu Development Release

    Re: How to: Jinzora on a LAMP - Dapper

    Yup... I'm mounting my music collection via NFS under my Ubuntu Jinzora virtual machine. The one thing I would cover in this how to is enabling ogg support in Jinzora.

    To enable ogg support select:
    Code:
    Admin Tools -> System Tools -> Settings Manager -> Main Settings -> Resampling
    Change:

    Code:
    allow_resample = false 
    
    to true
    Correct the path to oggdec to:

    Code:
    /usr/bin/oggdec
    Also change the default_resample to something more to your liking. Mine is set to 160.

    One last thing remove the sample rates listed in the "resampleRates" that you don't want to hear your music at.

    -GC
    Last edited by GrammatonCleric; October 23rd, 2007 at 01:18 PM.
    "Nice jail. Looks strong."
    - H. Houdini

  4. #4
    Join Date
    Nov 2005
    Beans
    144

    Re: How to: Jinzora on a LAMP - Dapper

    Need some quick help. I have Jinzora2 installed and working through apache, however it cannot see my music library. Currently my music library is on a second HDD mounted as /media/disk. I can browse to the disk, but cannot see any folders. I also have the /media/disk/music folder shared out with samba with no problems as well.

  5. #5
    Join Date
    Jun 2005
    Location
    Albuquerque, New Mexico
    Beans
    272
    Distro
    Ubuntu Development Release

    Re: How to: Jinzora on a LAMP - Dapper

    Quote Originally Posted by Stormspace View Post
    Need some quick help. I have Jinzora2 installed and working through apache, however it cannot see my music library. Currently my music library is on a second HDD mounted as /media/disk. I can browse to the disk, but cannot see any folders. I also have the /media/disk/music folder shared out with samba with no problems as well.

    What are the directory and file permissions set to? Can www-data user/group view them?

    - GC
    "Nice jail. Looks strong."
    - H. Houdini

  6. #6
    Join Date
    Nov 2005
    Beans
    144

    Re: How to: Jinzora on a LAMP - Dapper

    Quote Originally Posted by GrammatonCleric View Post
    What are the directory and file permissions set to? Can www-data user/group view them?

    - GC
    THX! That little hint did it.

  7. #7
    Join Date
    Apr 2006
    Location
    Modesto, CA
    Beans
    106
    Distro
    Ubuntu 8.10 Intrepid Ibex

    Re: How to: Jinzora on a LAMP - Dapper

    Going to be updating this shortly. Love my jinzora server =)
    how-tos: Jinzora
    (Machines Converted to Ubuntu: 25 machines!!) Local Servers (5) - Local Workstations (4) - Remote servers (16)
    - My PC - Tri-Sli 1250 Watt Quad Core Kill you in the face machine -

  8. #8
    Join Date
    Nov 2007
    Location
    NC, USA
    Beans
    829
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: How to: Jinzora on a LAMP - Dapper

    Just a little nitpicking here, but the command to change directory to /var/www is not mv, it's cd.

  9. #9
    Join Date
    Feb 2007
    Location
    cincinnati, oh, usa
    Beans
    64
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: How to: Jinzora on a LAMP - Dapper

    Nice walkthrough; the install is easy enough, but you make sure one does not get hung up on silly details... like running configure before trying to install...

  10. #10
    Join Date
    May 2005
    Beans
    Hidden!

    Re: How to: Jinzora on a LAMP - Dapper

    Some of this doesn't work anymore...

    An update for the newest Jinzora version would be very much appreciated!

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
  •