Everything posted by nacat78
-
[Plugin] unbalanced
I still have to access unbalance through https vice http, is there going to be an update to the plugin to either fix the hyperlink on unbalance page or fix http?
-
[Plugin] unbalanced
no worries, thanks it's working now..
-
[Plugin] unbalanced
Attempted to get the update, but am getting this: plugin: installing: https://raw.githubusercontent.com/jbrodriguez/unraid/master/plugins/unbalance.plg plugin: downloading https://raw.githubusercontent.com/jbrodriguez/unraid/master/plugins/unbalance.plg plugin: downloading: https://raw.githubusercontent.com/jbrodriguez/unraid/master/plugins/unbalance.plg ... done Warning: simplexml_load_file(): /tmp/plugins/unbalance.plg:1: parser error : Document is empty in /usr/local/emhttp/plugins/dynamix.plugin.manager/scripts/plugin on line 214 Warning: simplexml_load_file(): in /usr/local/emhttp/plugins/dynamix.plugin.manager/scripts/plugin on line 214 Warning: simplexml_load_file(): ^ in /usr/local/emhttp/plugins/dynamix.plugin.manager/scripts/plugin on line 214 Warning: simplexml_load_file(): /tmp/plugins/unbalance.plg:1: parser error : Document is empty in /usr/local/emhttp/plugins/dynamix.plugin.manager/scripts/plugin on line 214 Warning: simplexml_load_file(): in /usr/local/emhttp/plugins/dynamix.plugin.manager/scripts/plugin on line 214 Warning: simplexml_load_file(): ^ in /usr/local/emhttp/plugins/dynamix.plugin.manager/scripts/plugin on line 214 Warning: simplexml_load_file(): /tmp/plugins/unbalance.plg:1: parser error : Document is empty in /usr/local/emhttp/plugins/dynamix.plugin.manager/scripts/plugin on line 214 Warning: simplexml_load_file(): in /usr/local/emhttp/plugins/dynamix.plugin.manager/scripts/plugin on line 214 Warning: simplexml_load_file(): ^ in /usr/local/emhttp/plugins/dynamix.plugin.manager/scripts/plugin on line 214 plugin: xml parse error Just wanted to let you know..
-
[Support] binhex - General
+1 for one drive and Google Drive dockers. Thanks
-
[Plug-In] Community Applications
FYI, you still have appstore mentioned on the CA settings page. Wasn't sure if this was supposed to change everywhere or just the Tab.
-
Dynamix - V6 Plugins
Just updated the Local Master plugin and instantly got: Warning: require_once(include/DefaultPageLayout.php): failed to open stream: No such file or directory in /usr/local/emhttp/plugins/dynamix/template.php on line 56 Fatal error: require_once(): Failed opening required 'include/DefaultPageLayout.php' (include_path='.:') in /usr/local/emhttp/plugins/dynamix/template.php on line 56 unable to access webgui, but everything else is still working.... ie dockers and smb/nfs shares.... is there a CLI update or fix that i can apply to regain access to webgui? unable to reboot now due to some maintenance of server and need to see progress. Thanks for any assistance...
-
Backups
That's what I do these days. I just use SyncBack on a Windows machine to do the backups. Wrote a little script to automatically turn on the backup server; then run Syncback to execute the backup "profile". I suspect it's not too difficult to write a simple Linux script that would execute at a specified time to run a sync between two servers ... but I'm not a "Linux guy" and haven't bothered to do this. It'd be nice if it was a built-in feature in UnRAID ... might even sell a few extra systems to those who'd like the convenience of an automated backup to a 2nd UnRAID server +1 That's what i am working on now, I've gotten a few people in my area to invest in unRaid setup and plan on making a larger backup server off-site to backup the unraid systems around my area.. would be nice to have a baked in feature that supports backup to another unraid setup.
-
Docker requests
i found one of the docker hub "jinglemansweep/logitechmediaserver" and got it to work on port 9000. might be able to get to work for what you need.
-
Docker requests
Serious? I never advertise that! I liked Deluge too, so I dropped it. Grumpy, let us know about your docker; I'll gladly include that in the templates row! I'm always searching for things I'm interested in before trying to reinvent the wheel...
-
Docker requests
my-Transmission.xml <?xml version="1.0" encoding="utf-8"?> <Container> <Name>Transmission</Name> <Repository>gfjardim/transmission</Repository> <BindTime>true</BindTime> <Privileged>false</Privileged> <Networking> <Mode>bridge</Mode> <Publish> <Port> <HostPort>9091</HostPort> <ContainerPort>9091</ContainerPort> <Protocol>tcp</Protocol> </Port> </Publish> </Networking> <Environment> <Variable> <Name></Name> <Value></Value> </Variable> </Environment> <Data> <Volume> <HostDir>/mnt/cache/apps/transmission/</HostDir> <ContainerDir>/config</ContainerDir> <Mode>rw</Mode> </Volume> <Volume> <HostDir>/mnt/user/_unsorted/</HostDir> <ContainerDir>/downloads</ContainerDir> <Mode>rw</Mode> </Volume> </Data> </Container> Just need to edit your container/host folders and save as my-Transmission.xml in /boot/config/plugins/docker folder
-
Docker requests
I have gfjardim / transmission docker up and working with no issues, also using a needo / deluge docker for torrents
-
Docker requests
Did you try this: http://lime-technology.com/forum/index.php?topic=31297.0 ? I will create a badass PXE Server that uses Tiny Core Linux and a HTTP Server (faster than tftpboot) for Menus and isos / images. I will work on it tomorrow and post it for all of you to test. Perhaps gfjardim wouldn't mind creating a slick WebGUI for adding / removing images and configuring the PXE Menu. I can get it close but he will need to take it the last mile. NOTE: I am not going to support this long term so one of you will have to take it and own it. SWEET Can't wait to try it +1 Same here, still using your PXE server setup and menus from V5 then updated packages for V6 and all is still working great.
-
Docker requests
https://github.com/menghan/airvideo-server-in-docker
-
Docker requests
If it's a docker, then it already works. Are you asking someone to do it in tiny core linux or phusion instead of Ubuntu? i cannot get it to work for unraid docker - have you tried?
-
Docker requests
Requesting AirVideo Docker - found this on github instructions for ubuntu cd airvideo-server docker pull ubuntu docker build -t my-airvideo-server . docker run -d -u avuser -e LANG=C.UTF-8 -p 45631:45631 -p 46631:46631 -v /path/to/my/movies:/Movies my-airvideo-server airvideo-server dockerfile # ref: http://www.inmethod.com/forum/posts/list/1856.page FROM ubuntu:14.04 MAINTAINER menghan ADD multiverse.sources.list /etc/apt/sources.list.d/ RUN apt-get update RUN apt-get -y upgrade # dependicies of airvideo RUN apt-get -y --no-install-recommends install libmp3lame0 libx264-dev libfaac0 faac openjdk-6-jre avahi-daemon # install fonts RUN apt-get -y --no-install-recommends install ttf-wqy-microhei fonts-dejavu # curl RUN apt-get -y --no-install-recommends install curl # airvideo server's files ADD AirVideoServerLinux.properties /opt/airvideo-server/ ADD airvideo-server.service /etc/avahi/services/ ADD airvideo-server /usr/bin/ RUN mkdir -p /opt/airvideo-server/bin RUN curl -s http://s3.amazonaws.com/AirVideo/Linux-2.4.6-beta3/AirVideoServerLinux.jar -o /opt/airvideo-server/AirVideoServerLinux.jar # compile avconv RUN apt-get install -y build-essential libmp3lame-dev libfaac-dev yasm pkg-config && \ cd /tmp && \ curl -s http://s3.amazonaws.com/AirVideo/Linux-2.4.6-beta3/libav.tar.bz2 -o libav.tar.bz2 && \ tar xf libav.tar.bz2 && \ cd libav && \ ./configure --enable-pthreads --disable-shared --enable-static --enable-gpl --enable-libx264 --enable-libmp3lame --enable-nonfree --enable-libfaac && \ make -j4 && \ strip -s -o /opt/airvideo-server/bin/avconv /tmp/libav/avconv && \ apt-get purge -y build-essential libmp3lame-dev libfaac-dev yasm pkg-config && \ apt-get autoremove -y && \ apt-get autoclean && \ rm -rf /tmp/libav.tar.bz2 /tmp/libav # add user RUN adduser --uid 1000 --group --system avuser RUN mkdir -p /home/avuser/.air-video-server RUN chown avuser:avuser /home/avuser/.air-video-server Is it possible to adapt this to use in unraid setup
-
Docker requests
Anyone dockerized airvideo yet?
-
Docker requests
Checkout out PhAZe's updates on some popular plugins http://lime-technology.com/forum/index.php?topic=33341.msg306949#msg306949
-
Preclear.sh results - Questions about your results? Post them here.
No worries, i put the drive in two other systems on different cards and it starts to work then it redballs again no matter where it is - definitely the drive. thanks for feedback.... its to bad the drive is out of warranty though.... anyway thanks again.
-
Preclear.sh results - Questions about your results? Post them here.
So I had a 2TB disk redball on me, reseated drive in 5 in 3 cage and cable on the back. I was able to rebuild using same drive, but then after about 30 minutes on the array after rebuild it redballed again. Anyway i have the drive replaced, but before i trash the old one, i wanted to confirm that its no longer usable for unraid. I am still in the process or going through a preclear on the drive, but syslog kicked this out about 30 min after preclear started. The same error came up before the drive reballed before. Any input before i retire this drive? Feb 12 18:54:20 SERVER kernel: sd 17:0:0:0: [sdp] Feb 12 18:54:20 SERVER kernel: Result: hostbyte=0x00 driverbyte=0x08 Feb 12 18:54:20 SERVER kernel: sd 17:0:0:0: [sdp] Feb 12 18:54:20 SERVER kernel: Sense Key : 0x3 [current] [descriptor] Feb 12 18:54:20 SERVER kernel: Descriptor sense data with sense descriptors (in hex): Feb 12 18:54:20 SERVER kernel: 72 03 11 04 00 00 00 0c 00 0a 80 00 00 00 00 00 Feb 12 18:54:20 SERVER kernel: 07 d3 d5 50 Feb 12 18:54:20 SERVER kernel: sd 17:0:0:0: [sdp] Feb 12 18:54:20 SERVER kernel: ASC=0x11 ASCQ=0x4 Feb 12 18:54:20 SERVER kernel: sd 17:0:0:0: [sdp] CDB: Feb 12 18:54:20 SERVER kernel: cdb[0]=0x28: 28 00 07 d3 d5 50 00 00 08 00 Feb 12 18:54:20 SERVER kernel: end_request: I/O error, dev sdp, sector 131323216 Feb 12 18:54:20 SERVER kernel: Buffer I/O error on device sdp, logical block 16415402 Feb 12 18:54:20 SERVER kernel: ata16: EH complete Feb 12 18:54:23 SERVER kernel: ata16: failed to read log page 10h (errno=-5) Feb 12 18:54:23 SERVER kernel: ata16.00: exception Emask 0x1 SAct 0x1 SErr 0x0 action 0x6 Feb 12 18:54:23 SERVER kernel: ata16.00: edma_err_cause=00000084 pp_flags=00000003, dev error, EDMA self-disable Feb 12 18:54:23 SERVER kernel: ata16.00: failed command: READ FPDMA QUEUED Feb 12 18:54:23 SERVER kernel: ata16.00: cmd 60/08:00:50:d5:d3/00:00:07:00:00/40 tag 0 ncq 4096 in Feb 12 18:54:23 SERVER kernel: res 41/40:04:50:d5:d3/40:00:07:00:00/40 Emask 0x9 (media error) Feb 12 18:54:23 SERVER kernel: ata16.00: status: { DRDY ERR } Feb 12 18:54:23 SERVER kernel: ata16.00: error: { UNC } Feb 12 18:54:23 SERVER kernel: ata16: hard resetting link Feb 12 18:54:24 SERVER kernel: ata16: SATA link up 3.0 Gbps (SStatus 123 SControl 300) Feb 12 18:54:24 SERVER kernel: ata16.00: configured for UDMA/133 Feb 12 18:54:24 SERVER kernel: sd 17:0:0:0: [sdp] Unhandled sense code Feb 12 18:54:24 SERVER kernel: sd 17:0:0:0: [sdp] Feb 12 18:54:24 SERVER kernel: Result: hostbyte=0x00 driverbyte=0x08 Feb 12 18:54:24 SERVER kernel: sd 17:0:0:0: [sdp] Feb 12 18:54:24 SERVER kernel: Sense Key : 0x3 [current] [descriptor] Feb 12 18:54:24 SERVER kernel: Descriptor sense data with sense descriptors (in hex): Feb 12 18:54:24 SERVER kernel: 72 03 11 04 00 00 00 0c 00 0a 80 00 00 00 00 00 Feb 12 18:54:24 SERVER kernel: 07 d3 d5 50 Feb 12 18:54:24 SERVER kernel: sd 17:0:0:0: [sdp] Feb 12 18:54:24 SERVER kernel: ASC=0x11 ASCQ=0x4 Feb 12 18:54:24 SERVER kernel: sd 17:0:0:0: [sdp] CDB: Feb 12 18:54:24 SERVER kernel: cdb[0]=0x28: 28 00 07 d3 d5 50 00 00 08 00 Feb 12 18:54:24 SERVER kernel: end_request: I/O error, dev sdp, sector 131323216 Feb 12 18:54:24 SERVER kernel: Buffer I/O error on device sdp, logical block 16415402 Feb 12 18:54:24 SERVER kernel: ata16: EH complete
-
VirtualBox Plugin for unRAID v5 and v6
The cache is where i put mine as well - but virtualbox running VM's on top of unraid (Windows OS's) was kind of slow though, but still functional, worked great for the linux distros though, any of the other small os, at least until i upgrade my server or reorganize/virturalize my setup. Lately have been toying around with the PXE boot server addon for unraid to PXE boot laptops and other pcs without hard drives that will boot off of an image stored by unraid. grumpy setup a nice guide here if interested.... http://lime-technology.com/forum/index.php?topic=31297.0
-
VirtualBox Plugin for unRAID v5 and v6
No worries ijuarez, that's why we have the forum - for collaboration and helping each other out. Dont forget to set your preferences for VM image storage - default location is on the thumb drive.
-
VirtualBox Plugin for unRAID v5 and v6
@ijuarez Lets double check everything again in virtualbox and webserver config files /boot/config/plugins/virtualbox/virtualbox.cfg # VirtualBox plugin configuration INSTALL_ON_BOOT="true" UPGRADE_ON_BOOT="false" UPGRADE_PLG_ON_BOOT="false" START_ON_ARRAY_MOUNT="false" START_VMS_ON_START="false" VBOX_SYMLINK_LOCATION="/mnt/cache/vbox" VBOXWEBSRV_HOST_IP="127.0.0.1" VBOXWEBSRV_HOST_PORT="18083" VBOXWEBSRV_LOGFILE="/boot/config/plugins/virtualbox/vboxwebsrv.log" VBOXWEBSRV_VERBOSE="true" VBOXWEBSRV_LOGROTATE="0" VBOXWEBSRV_LOGSIZE="50000" VBOXWEBSRV_LOGINTERVAL="604800" /boot/config/plugins/dynamix/dynamix.web.server.cfg service="1" path="/mnt/cache/www" port="8089" phpError="On" error="0" access="0" phpvirtualbox contents dumped/extracted to the root directory of the web server - in my case /mnt/cache/www /mnt/cache/www/config.php /* SOAP URL of vboxwebsrv (not phpVirtualBox's URL) */ var $location = 'http://127.0.0.1:18083/'; after everything is verified correct or changes made if needed enable webserver and restart virtualbox for my setup I would access phpVirtualbox Web Console @ 192.168.0.145:8089
-
VirtualBox Plugin for unRAID v5 and v6
Here's another pic of all the screens with config.php - let me know what happens after the reboot.
-
VirtualBox Plugin for unRAID v5 and v6
I went back and looked at the rest of your virtualbox plugin settings, will you try something for me, change the "VirtualBox symbolic link (part of install package) - Change from default /boot/custom/vbox:" /boot/custom/vbox to something else, i have mine set to /mnt/cache/vbox or something thats not on the flash drive, then restart vbox and webserver - retry login.
-
VirtualBox Plugin for unRAID v5 and v6
that should be working - make sure that the vboxserv (virtual Box service) is running. I can start and stop from the plugin page, but others have had issues so they would start and stop from command line.