dirrtyjoe

Members
  • Posts

    202
  • Joined

  • Last visited

Everything posted by dirrtyjoe

  1. I've removed all unMenu packages that did that, does SimpleFeatures use that?
  2. One of the packages also seems to be adding this to my crontab: cron="" which throws errors. It's fine once I remove it but just a heads up. Also, it seems they might also be using root- to create a cron job which the system doesn't use so it also throws errors.
  3. The notifications are no longer showing on the WebGUI even though they are in the unread folder. Any idea why?
  4. Sorry, I mean, until any results are output to the screen that page is stagnant. The first time I ran it, I impatiently hit refresh a few times not realizing it was working in the background. A status indicator until results are found, basically to just show that something is happening, might fix this for future users. Minor annoyance for the impatient type like me....
  5. Could a progress circle? be added to the Open Streams page? I realize lsof takes a while to return results but sometimes I get impatient without seeing something happening on the page... Other than that, I love it. It's great to see what movies are being watched via Plex!
  6. How does the Memory Usage calculation work? Mine is showing that all 4GB of mine is in use...
  7. Plex would work on any Win7 box you find and I can't recommend it enough (especially with the unRAID plugins for the Media Server). Worth a look.
  8. Since I use my unRAID mainly as a media server with Plex, it would be neat to see a list of which video files are currently being accessed (lsof) from my user shares. I think it would be best to only show open files from non cache-only shares... Also, I second an Auto-Update feature of some sort... Especially with the amount of updates coming lately, it would be nice to be able to click on an update button from the WebGUI or have SF do it automatically once per day/week/etc. Maybe give a SF preference page which allows the user to select the packages they want installed and give update options from there?
  9. any package in /boot/extra is automatically installed on reboot without any additional lines in the GO file. Makes for a much easier upgrade, if you ask me.
  10. webGUI, mostly - but options for both would be great.
  11. Can the notifications have a setting for the date format? I'd prefer mm/dd/yyyy
  12. Feb 14 20:28:28 Juggernaut emhttp: shcmd (54): /usr/local/sbin/emhttp_event stopping_svcs Feb 14 20:28:28 Juggernaut emhttp_event: stopping_svcs Feb 14 20:28:28 Juggernaut emhttp: Stop AVAHI... Feb 14 20:28:28 Juggernaut emhttp: shcmd (55): /etc/rc.d/rc.avahidaemon stop |& logger Feb 14 20:28:28 Juggernaut logger: Stopping Avahi mDNS/DNS-SD Daemon: stopped Feb 14 20:28:28 Juggernaut avahi-daemon[17117]: Got SIGTERM, quitting. Feb 14 20:28:28 Juggernaut avahi-dnsconfd[17127]: read(): EOF Feb 14 20:28:28 Juggernaut avahi-daemon[17117]: Leaving mDNS multicast group on interface eth0.IPv4 with address 192.168.1.188. Feb 14 20:28:28 Juggernaut avahi-daemon[17117]: avahi-daemon 0.6.28 exiting. Feb 14 20:28:28 Juggernaut emhttp: shcmd (56): /etc/rc.d/rc.avahidnsconfd stop |& logger Feb 14 20:28:28 Juggernaut logger: Stopping Avahi mDNS/DNS-SD DNS Server Configuration Daemon: stopped Feb 14 20:28:28 Juggernaut emhttp: shcmd (57): rm /etc/avahi/services/afp.service &> /dev/null Feb 14 20:28:28 Juggernaut emhttp: shcmd (58): rm /etc/avahi/services/smb.service &> /dev/null Feb 14 20:28:28 Juggernaut emhttp: Stop AFP... Feb 14 20:28:28 Juggernaut emhttp: shcmd (59): /etc/rc.d/rc.atalk stop |& logger Feb 14 20:28:28 Juggernaut emhttp: shcmd (60): ps axc | grep -q rpc.mountd Feb 14 20:28:28 Juggernaut emhttp: _shcmd: shcmd (60): exit status: 1 Feb 14 20:28:28 Juggernaut emhttp: Stop SMB... Feb 14 20:28:28 Juggernaut emhttp: shcmd (61): /etc/rc.d/rc.samba stop |& logger Feb 14 20:28:28 Juggernaut emhttp: Spinning up all drives... Feb 14 20:28:28 Juggernaut emhttp: shcmd (62): /usr/sbin/hdparm -S0 /dev/sdb &> /dev/null Feb 14 20:28:28 Juggernaut kernel: mdcmd (78): spinup 0 Feb 14 20:28:28 Juggernaut kernel: mdcmd (79): spinup 1 Feb 14 20:28:28 Juggernaut kernel: mdcmd (80): spinup 2 Feb 14 20:28:28 Juggernaut kernel: mdcmd (81): spinup 3 Feb 14 20:28:28 Juggernaut kernel: mdcmd (82): spinup 4 Feb 14 20:28:38 Juggernaut emhttp: Sync filesystems... Feb 14 20:28:38 Juggernaut emhttp: shcmd (63): sync Feb 14 20:28:42 Juggernaut emhttp: shcmd (64): /usr/local/sbin/emhttp_event unmounting_disks Feb 14 20:28:42 Juggernaut emhttp_event: unmounting_disks here is my syslog
  13. Hi guys, Stopping my array so I can reboot and its been stuck at Sync Filesystem for about 10 minutes... any ideas what would hold it up or cause it to hang here? Could it be a plugin? In the past they have simply shut down when I try to stop the array but not this time... Any thoughts?
  14. I've been able to do this using rsync. It does take manual work but not much. Basically decide what needs to be merged, where you want it, and run the command. Lots of tree commands to see what was out of place...
  15. I may have found the answer. I have changed ~/.ssh to /root/.ssh I will report back on my findings.
  16. I have my go script running a script to move some ssh files into place (authorized keys, known hosts, etc) but it doesn't seem to fully work. Here is how it is called in my go (chmod is 777): /boot/custom/ssh/ssh_prep.sh here is the ssh_prep.sh: mkdir ~/.ssh cat /boot/custom/ssh/Wolverine_id_rsa.pub >> ~/.ssh/authorized_keys cat /boot/custom/ssh/Chaos_id_rsa.pub >> ~/.ssh/authorized_keys cp /boot/custom/ssh/Juggernaut_id_rsa.pub ~/.ssh/id_rsa.pub cp /boot/custom/ssh/Juggernaut_id_rsa ~/.ssh/id_rsa cp /boot/custom/ssh/Juggernaut_known_hosts ~/.ssh/known_hosts cp /boot/custom/ssh/hosts.allow /etc/ cp /boot/custom/ssh/hosts.deny /etc/ chmod 644 /etc/hosts.allow chmod 644 /etc/hosts.deny chmod 700 ~/.ssh/authorized_keys chmod 600 ~/.ssh/id_rsa* chmod 600 ~/.ssh/known_hosts The ~/.ssh directory is being created and the hosts.allow/deny files are being moved properly but not the id_rsa or the id_rsa.pub and the authorized_keys file doesn't seem to be created. When I run the file manually it works just fine... any ideas? (new to bash scripts so go easy )
  17. Should have read above, looks like others suggested the same.
  18. Why not rsync? I just copied 4TB of data from one box to another without a hitch.
  19. I would like to do this as well... Does anyone have a 'correct' way to re-align split level?
  20. The settings for Scheduler are not saving. Any idea why? Also, since installing SF, my 5.0b plugins are starting before the array is started which causes some issues (creates a folder where the array should be so then the array can't start...). Ideas?
  21. The auto update feature doesn't work on Linux yet. you can create a script to do it though (post on plex forums with example but I can't seem to find it)
  22. Stokkes, any update on this? looking to install 0.9.5.1 and wondering if I should do it manually or if you have something coming!
  23. I've shutdown all known services and try to stop the array and get: Unmounting disks...Retry unmounting disk share(s)
  24. So, my last few attempts to restart using 'shutdown -r now' have been unsuccessful and I was wondering if anyone could help troubleshoot the issue. This time I received a message like the following: Message from syslogd@Juggernaut at [date] Juggernaut kernal: Oops: 0000 [#1] SMP Message from syslogd@Juggernaut at [date] Juggernaut kernal: Process sync_supers (pid: 141, ti=f0268000 task=f0251dd0 task.ti=f0268000) Message from syslogd@Juggernaut at [date] Juggernaut Message from syslogd@Juggernaut at [date] kernal: Stack:Juggernaut kernal: last sysfs file: /sys/devices/pci0000:00/0000:00:1f.2/host1/target1:0:0/1:0:0:0/block/sdb/removable Message from syslogd@Juggernaut at [date] Juggernaut kernal: Call Trace: There is a bit more and I can post it all if necessary but does anyone have any ideas?