Changes between Version 3 and Version 4 of rpld/StreamingToIcecast


Ignore:
Timestamp:
11/24/10 12:48:59 (13 years ago)
Author:
ph3-der-loewe
Comment:

how to set up store

Legend:

Unmodified
Added
Removed
Modified
  • rpld/StreamingToIcecast

    v3 v4  
    2020* roard from RoarAudio Package 
    2121* rpld 
     22* rpld-tools 
    2223* vclt-tools 
     24 
     25You should also consider to install a nice client for rpld with GUI or something. 
    2326 
    2427If your operating system ships them we suggest you to use those versions and not compile your own binary. 
     
    8285 
    8386== Setting up rpld == 
     87After you installed rpld the following steps must be done: 
     88* Set up the ''store''. This is where rpld saves playlists and such. 
     89* Import some music. 
     90* Hit play button. 
     91* Have fun. 
     92 
     93=== Setting up store on Debian === 
     94You choose the right system. Store is already set up on Debian. 
     95 
     96=== Setting up store manually and how to start rpld === 
     97To set up the store we need to create a directory accessible by the user running rpld. 
     98Normally this directory is `/var/lib/roarplaylistd/` but you can use a directory within your home directory as well. 
     99 
     100First create it. If using `/var/lib/roarplaylistd/` we may need to do this as root, if it's located under your home directory just create it with mkdir(1) or how you prefer to create your directorys. 
     101If needing to do under root we may also need to set owner back to the user running rpld like this: 
     102{{{ 
     103 mkdir /var/lib/roarplaylistd 
     104 chown YOUR_USER:YOUR_GROUP /var/lib/roarplaylistd 
     105}}} 
     106You can get the values for ''YOUR_USER'' and ''YOUR_GROUP'' using id: 
     107{{{ 
     108 id 
     109}}} 
     110It will list the username under ''uid'' and the group name under ''gid''. 
     111 
     112Next you need to initialize it. Do this with the following command: 
     113{{{ 
     114 rpld --no-listen --store-path /var/lib/roarplaylistd --no-restore --store 
     115}}} 
     116 
     117=== Importing some music === 
     118=== Pressing play === 
     119=== Have fun ===