coblck

Members
  • Posts

    255
  • Joined

  • Last visited

Posts posted by coblck

  1. Hi get this error when weekly trim is done fstrim: /mnt/disks/Backups: FITRIM ioctl failed: Device or resource busy, said disk is an unassigned disc holding my plex musix library, is there anyway of trimming disk 

  2. @Hoopster just found this thread and wondering if ok to use your script?? have just taken delivery of new 16tb external hard drive to make much needed copy of my movies and tv shows, would you recommend moving approx 11tb of data over usb 3 connection using rysnc or is there any other way ? eventually when funds allow will build another unraid server for backups.

     

  3. Hi wonder if anyone can help, i installed unraid.net few days ago but have uninstalled it now, but when i login into the gui i with my ip address it still looks like logging in via unraid.net, is there anyway to remove the ssl certifcate so i can login my normal way before i installed the plugin???

  4. Im the same if i try cd /dev/dri then ls nothing comes up. before in 6.8.3 with the modprobe in go file the igpu would be listed if i typed this. But since Ive installed intel top plugin when upgraded to 6.9.1 its not listed when i type cd dev/dri . While transcoding in plex it definitely using the igpu as can be seen in the gpu statistics and (hw) is listed on the plex dashboard. 

  5. 17 hours ago, Squid said:

    Simplification.  Tom let me know you can spin up all drives via one call

     

    
    
    #!/usr/bin/php
    <?
    
    function emhttpd($cmd) {
      global $state, $csrf;
      $ch = curl_init("http://127.0.0.1/update");
      $options = array(CURLOPT_UNIX_SOCKET_PATH => '/var/run/emhttpd.socket',
                       CURLOPT_POST => 1,
                       CURLOPT_POSTFIELDS => "$cmd&startState=$state&csrf_token=$csrf");
      curl_setopt_array($ch, $options);
      curl_exec($ch);
      curl_close($ch);
    }
    
    $vars = parse_ini_file('/var/local/emhttp/var.ini',true);
    $state = $vars['mdState'];
    $csrf = $vars['csrf_token'];
    
    echo "Spinning up disks\n";
    emhttpd("cmdSpinupAll=apply");
    ?>

     

    @SquidSo this as is simple as creating new script and copying this over no need to chnage anything , will the drives spin down after default time has passed.