dcruz

Members
  • Posts

    11
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

dcruz's Achievements

Noob

Noob (1/14)

0

Reputation

  1. On unraid 6.6.7 when i try to kick off a preclear job from unassigned or the plugin itself i get stuck at starting. When I click start a popup opens and then immediately closes and I do not see the icon in chrome telling me chrome closed it. When i go look at the logs i see the following: May 18 16:00:18 preclear_disk_37484A50415A3046_18992: Command: /usr/local/emhttp/plugins/preclear.disk/script/preclear_disk.sh /dev/sdp May 18 16:00:18 preclear_disk_37484A50415A3046_18992: Preclear Disk Version: 1.0.4 May 18 16:00:18 preclear_disk_37484A50415A3046_18992: /usr/local/emhttp/plugins/preclear.disk/script/preclear_disk.sh: line 1703: / : syntax error: operand expected (error token is "/ ") May 18 16:00:18 preclear_disk_37484A50415A3046_18992: /usr/local/emhttp/plugins/preclear.disk/script/preclear_disk.sh: line 1716: let: parts+=( / ): syntax error: operand expected (error token is "/ )") May 18 16:00:18 preclear_disk_37484A50415A3046_18992: /usr/local/emhttp/plugins/preclear.disk/script/preclear_disk.sh: line 1718: - : syntax error: operand expected (error token is "- ") May 18 16:00:21 preclear_disk_37484A50415A3046_18992: Pre-Read: dd if=/dev/sdp of=/dev/null bs=2097152 skip=0 count= conv=notrunc iflag=nocache,count_bytes,skip_bytes May 18 16:00:21 preclear_disk_37484A50415A3046_18992: Pre-Read: dd command failed -> dd: invalid number: '' I have started the pre-clear on two 8TB disk via the terminal so I am good, but wanted to report it and see if there is a solution. Sorry if this has been discussed before i looked through a good chunk of the posts in the thread but did not see similar.
  2. I just did this migration from an ubuntu xen vm to docker. Was fairly easy just copy over the config and db files as needed for both programs. Once you get your containers setup login to both and adjust your paths to media/download locations to fit your setup. My guess the windows setup should produce the same files as they both run the same source via python. Good luck on your migration.
  3. Sorry, I am late to the game on using docker as i was doing 100% xen for my needs, so i was not aware of the amount of work that went into the custom solution. I like the docker plugin and use it to see the state of my machines and to start/stop them. Don't necessarily need to replace the existing tools for Fig, but fig sure does make creating/sharing containers easier. I use my setup for some development work so its nice to let fig create multiple containers with one config. EX: you can setup a DB,web,redis container set for dev work in one go. Destroy it and recreate it easily as needed.
  4. Found this tool for helping with the setup of docker containers and thought i would share. http://www.fig.sh/ Fig makes it cleaner to configure a docker instance/s compared to the command line. Also thought it would be nice if people shared fig.yml files as a way to help others get started with a container easier. As you can see below a command line vs fig.yml file for comparison. Command line: docker run -d -h hostname --name="sickbeard" -v /mnt/cache/apps/docker/config/sickbeard:/config -v /mnt/user:/data -v /etc/localtime:/etc/localtime:ro -p 8081:8081 -e EDGE=1 needo/sickbeard Fig configuration: sickbeard: image: needo/sickbeard ports: - "8081:8081" volumes: - /mnt/cache/apps/docker/config/sickbeard:/config - /mnt/user:/data - /etc/localtime:/etc/localtime environment: - EDGE=1 Once you have the fig.yml file in a directory you can run fig up to build the container and start it. Once the container is up you can use fig start or fig stop to change the running state. If anyone needs help or has questions please feel free to ask.
  5. That worked. Hopefully this will help someone out if they stumble upon it. Thanks for the help.
  6. So, i got the docker images setup but ran into a problem with Sickbeard/Couch notifications to plex. When creating the container using -h hostname as specified in the getting started guide it assigns a Ip address on the internal docker range. When either program connects to plex since we are on another ip range compared to plex it causes Authentication to be required. However both of these programs provide no support to provide the authentication information for the PMS. Currently i solved this by using the --net="host" it works fine since the unraid box Ip is on the same Ip range as plex. Running with --net is not recommended according to the docker documentation since it allows access to DBUS on the host. Wondering if anyone has figured out a way to get notification to work without using --net.