More > JRiver Media Center 23 for Linux
JRiver Media Center 23.0.51 for Debian STRETCH AMD64 Beta
hillcreative:
--- Quote from: bob on September 21, 2017, 03:17:46 pm ---I'd like to know how it's playing the file via smb without mounting.
You could look at the filename path in MC's database for one you suspect you are playing back from the share to see what it says...
--- End quote ---
This is the path the library XML shows:
/run/user/1000/gvfs/smb-share:server=hillwrk,share=f/WAV Music Master/00012643.wav
mwillems:
That's gvfs exposing the samba share as a pseudo-file system. I wouldn't expect anything other than nautilus (the gnome file manager) or maybe thunar (another gtk file manager) to be able to see that.
I've posted persistent mounting instructions for samba shares a few times, let me see if I can find my posts.
EDIT:
Here we go: https://yabb.jriver.com/interact/index.php/topic,110697.msg765193.html#msg765193
hillcreative:
--- Quote from: mwillems on September 21, 2017, 05:34:37 pm ---I've posted persisent mounting instructions for samba shares a few times, let me see if I can find my posts.
EDIT:
Here we go: https://yabb.jriver.com/interact/index.php/topic,110697.msg765193.html#msg765193
--- End quote ---
Thanks!
hillcreative:
--- Quote from: mwillems on September 21, 2017, 05:34:37 pm ---I've posted persistent mounting instructions for samba shares a few times, let me see if I can find my posts.
EDIT:
Here we go: https://yabb.jriver.com/interact/index.php/topic,110697.msg765193.html#msg765193
--- End quote ---
Seem to be having newbie problems with creating a mounting point. Here is my fstab line:
--- Code: ---//hillwrk/f /mnt/media cifs noauto,x-systemd.automount,credentials=/home/mitchell/samba-credentials 0 0
--- End code ---
Confirmed that something is there after:
--- Code: ---sudo mkdir /mnt/media
--- End code ---
Details:
--- Code: ---Filesystem 1K-blocks Used Available Use% Mounted on
udev 4011056 0 4011056 0% /dev
tmpfs 806776 9672 797104 2% /run
/dev/sda1 114854020 8248396 100728276 8% /
tmpfs 4033880 36944 3996936 1% /dev/shm
tmpfs 5120 4 5116 1% /run/lock
tmpfs 4033880 0 4033880 0% /sys/fs/cgroup
tmpfs 806776 160 806616 1% /run/user/1000
mitchell@NanoPC:~$ mount
sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
udev on /dev type devtmpfs (rw,nosuid,relatime,size=4011056k,nr_inodes=1002764,mode=755)
devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
tmpfs on /run type tmpfs (rw,nosuid,noexec,relatime,size=806776k,mode=755)
/dev/sda1 on / type ext4 (rw,relatime,errors=remount-ro,data=ordered)
securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k)
tmpfs on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755)
cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,release_agent=/lib/systemd/systemd-cgroups-agent,name=systemd)
pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)
cgroup on /sys/fs/cgroup/perf_event type cgroup (rw,nosuid,nodev,noexec,relatime,perf_event)
cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio)
cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpu,cpuacct)
cgroup on /sys/fs/cgroup/net_cls,net_prio type cgroup (rw,nosuid,nodev,noexec,relatime,net_cls,net_prio)
cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices)
cgroup on /sys/fs/cgroup/hugetlb type cgroup (rw,nosuid,nodev,noexec,relatime,hugetlb)
cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset)
cgroup on /sys/fs/cgroup/pids type cgroup (rw,nosuid,nodev,noexec,relatime,pids)
cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,memory)
cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer)
systemd-1 on /mnt/media type autofs (rw,relatime,fd=24,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=14077)
systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=37,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=14115)
mqueue on /dev/mqueue type mqueue (rw,relatime)
hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime)
debugfs on /sys/kernel/debug type debugfs (rw,relatime)
fusectl on /sys/fs/fuse/connections type fusectl (rw,relatime)
tmpfs on /run/user/1000 type tmpfs (rw,nosuid,nodev,relatime,size=806776k,mode=700,uid=1000,gid=1000)
gvfsd-fuse on /run/user/1000/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,relatime,user_id=1000,group_id=1000)
--- End code ---
mwillems:
--- Quote from: hillcreative on September 21, 2017, 09:09:03 pm --- Seem to be having newbie problems with creating a mounting point. Here is my fstab line:
--- Code: ---//hillwrk/f /mnt/media cifs noauto,x-systemd.automount,credentials=/home/mitchell/samba-credentials 0 0
--- End code ---
Confirmed that something is there after:
--- Code: ---sudo mkdir /mnt/media
--- End code ---
Details:
--- Code: ---Filesystem 1K-blocks Used Available Use% Mounted on
udev 4011056 0 4011056 0% /dev
tmpfs 806776 9672 797104 2% /run
/dev/sda1 114854020 8248396 100728276 8% /
tmpfs 4033880 36944 3996936 1% /dev/shm
tmpfs 5120 4 5116 1% /run/lock
tmpfs 4033880 0 4033880 0% /sys/fs/cgroup
tmpfs 806776 160 806616 1% /run/user/1000
mitchell@NanoPC:~$ mount
sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
udev on /dev type devtmpfs (rw,nosuid,relatime,size=4011056k,nr_inodes=1002764,mode=755)
devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
tmpfs on /run type tmpfs (rw,nosuid,noexec,relatime,size=806776k,mode=755)
/dev/sda1 on / type ext4 (rw,relatime,errors=remount-ro,data=ordered)
securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k)
tmpfs on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755)
cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,release_agent=/lib/systemd/systemd-cgroups-agent,name=systemd)
pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)
cgroup on /sys/fs/cgroup/perf_event type cgroup (rw,nosuid,nodev,noexec,relatime,perf_event)
cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio)
cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpu,cpuacct)
cgroup on /sys/fs/cgroup/net_cls,net_prio type cgroup (rw,nosuid,nodev,noexec,relatime,net_cls,net_prio)
cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices)
cgroup on /sys/fs/cgroup/hugetlb type cgroup (rw,nosuid,nodev,noexec,relatime,hugetlb)
cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset)
cgroup on /sys/fs/cgroup/pids type cgroup (rw,nosuid,nodev,noexec,relatime,pids)
cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,memory)
cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer)
systemd-1 on /mnt/media type autofs (rw,relatime,fd=24,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=14077)
systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=37,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=14115)
mqueue on /dev/mqueue type mqueue (rw,relatime)
hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime)
debugfs on /sys/kernel/debug type debugfs (rw,relatime)
fusectl on /sys/fs/fuse/connections type fusectl (rw,relatime)
tmpfs on /run/user/1000 type tmpfs (rw,nosuid,nodev,relatime,size=806776k,mode=700,uid=1000,gid=1000)
gvfsd-fuse on /run/user/1000/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,relatime,user_id=1000,group_id=1000)
--- End code ---
--- End quote ---
What does "confirmed that something is there" mean? You confirmed that the directory /mnt/media existed or you found files inside /mnt/media?
Two guesses:
1) I suspect your server address may not be correct. If you note in my advice I suggested that you use the IP address of the server, not the server name. That's because there's no guarantee that the name will resolve correctly unless you've edited your hosts file or are running a local DNS server or something.
2) Did you reboot? In your df output it looks like nothing is mounted at /mnt/media which suggests that either mounting isn't working or you haven't rebooted it.
A diagnostic step: what does the terminal say if you run "sudo mount /mnt/media"?
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version