Results 1 to 15 of 41

Thread: RSP e2 RSPv3.149 G1192

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #12
    RSP - TEAM zildan's Avatar
    Join Date
    05 Dec 2007
    Location
    Sudul Romaniei
    Posts
    9,007
    Mentioned
    116 Post(s)
    Rep Power
    100

    Post

    Edit
    /var/config/amnt.sh

    and replace :

    Code:
        if [ $lab == $record ] ;
          then
            if [ ! -e /hdd/movie ] ;
             then
             mkdir /hdd/movie
            fi
            mount $j /hdd/movie
        else
          lb=${j:5}
          mkdir /tmp/"$lb"
          mount $j /tmp/"$lb"
        fi
    with

    Code:
     
     if [ $lab == $record ] ; then
               if [ ! -e /hdd/movie ] ;  then
                        mkdir /hdd/movie
               fi
       mount $j /hdd/movie
       else
    
       lb=${j:5}
          if [ $lb = sdb1 ] ; then
           if [ ! -e /media/mkv ] ; then
            mkdir /media/mkv
          fi
        mount $j /media/mkv
       else
        mkdir /tmp/"$lb"
        mount $j /tmp/"$lb"
       fi
    fi
    Last edited by zildan; 03-10-10 at 13:12.
    Sh40, AML, prime focus 1,5m si altele ...

Posting Permissions

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