BTW for me QS3 is as good as QS2, Quickshot is much more than just xbmc.
Announcement
Collapse
No announcement yet.
Announcement
Collapse
No announcement yet.
QUICKSHOT V3 by TheNitroTeam MINIX Neo X7.
Collapse
X
-
Originally posted by Fedur View Post
BTW for me QS3 is as good as QS2, Quickshot is much more than just xbmc.There are 10 types of people in the world: Those who understand binary, and those who don't...
If you want to buy me a beer, please use this -> https://www.paypalobjects.com/en_US/..._donate_SM.gif
-
Originally posted by benster1 View PostThank you.
How do i set it to 755?
Im sorry ask so much i am not good at nfs mounts. My old nfs script was hard to get hahhaha
Verstuurd vanaf mijn HTC One met TapatalkOriginally posted by daemonium View Postchmod 755 /etc/init.d/97nfs
no problem mateOriginally posted by roolmapool View Post1/Use 97nfs located at init.d -> edit/add/delete lines of script to suit to your NAS path and local folder path is /mnt/xxx IMPORTANT! don't work with /mnt/sdcard/xxxx
In your case :
....
mkdir /mnt/Video
....
busybox mount -o rw,nosuid,nodev,nolock,rsize=32768,wsize=32768,int r,noatime 192.168.1.15:/Multimedia/Video /mnt/Video
2/Save script, and change permission file 97nfs to 755.
3/Reboot
That's it!
For some strange reason , the first mount in the list is not working, when pointing to /mnt but second and third are working pinting to /mnt/internal_sd/nfsvideo and /mnt/internal_sd/nfsmusic (this two folder you need to create manually).
So i put a first mount to a share i dont need to mount, and two other ones (nfsvideo and nfsmusic) are mounted fine
this is the script:
Code:#!/system/bin/sh setenforce permissive # Make sure networking is up before mounting busybox sleep 3 # Switch rootfs to read / write # Be carful after this. Misplaced commands may # brick your system busybox mount -o rw,remount / # Create Mount Points mkdir /mnt/nfsphoto #mkdir /mnt/nfsvideo # Switch rootfs to read only busybox mount -o ro,remount / busybox sleep 2 #NFS Auto Mount busybox mount -o nolock,rw,hard,intr,vers=3 -t nfs 192.168.1.110:/volume1/photo /mnt/nfsphoto busybox sleep 1 busybox mount -o nolock,rw,hard,intr,vers=3 -t nfs 192.168.1.110:/volume1/music /mnt/internal_sd/nfsmusic busybox sleep 1 busybox mount -o nolock,rw,hard,intr,vers=3 -t nfs 192.168.1.110:/volume1/video /mnt/internal_sd/nfsvideo
Comment
-
Odp: QUICKSHOT V3 by TheNitroTeam MINIX Neo X7.
Originally posted by daemonium View PostWe posted a link on the first post for this http://www.freaktab.com/showthread.p...back+jellybean
BTW for me QS3 is as good as QS2, Quickshot is much more than just xbmc.
I use stock minix remote. So use xbmc for watching tv, listen music, etc. I can navigate with that remote only. Thats why i use xbmc. Almost all my files have audio in 5.1 surround. Xbmc download subtitles in 1click also so no need extra application to do that. For me will be good as previous version if have same functionality. For the same reason i no use gotham xbmc on tv box because beyound xbmc have no problem with 12-15gb video files witch ac3 5.1 or dts audio.
On gotham some 1080p with aac stereo play no smoth. To many bugs right now. Gotham is only better on my tabled because full hw acceleration works.
In future i will buy air mouse with keyboard and will be more functionality outside xbmc.
I have Nexus tablet and jellybean or kitkat have the same functionality. No difference for me there. All aps what use works the same. I need the same on tv box. Not only half working aps.
Comment
-
Originally posted by daemonium View Postfrom terminal as root:
mount -o rw,remount /system
---edit your file to suit your needs--
back to terminal as root:
chmod 755 /etc/init.d/95screen_zoom
mount -o ro,remount /system
Comment
-
Originally posted by ilovemymac View PostSo how soon before pass through is fixed? You can't have Xbmc and not have surround
Sent from my iPhone 5 using Tapatalk
Comment
-
Originally posted by ilovemymac View PostThen why does it work on the tronsmart and in mx player in here
Sent from my iPhone 5 using Tapatalk
They've been working hard on the ROM as it is... at least show a little consideration for them and the work they've already done... in short... .quit whining like a child
Comment
-
Originally posted by ilovemymac View PostThen why does it work on the tronsmart and in mx player in here
Sent from my iPhone 5 using TapatalkT428 ,Radxa Rock (RR), cs918s v1.0, waiting for my X7...
Comment
-
Originally posted by ilovemymac View PostNot just that's the 1 big thing. That and the launcher crashes allot.
Sent from my iPhone 5 using Tapatalk
I have seen XBMC on other ROM's crash to the desktop previously... so if XBMC Gotham does it also, it wouldn't surprise me. But XBMC isn't the ROM... it's an app that is simply included and if you are having issues with that... then talk to the developer of it ( a link to their thread is given in this thread ).
As for the passthrough in XBMC being a big thing... no comment... they'll work on it as they've said and repeatingly asking when it will be fixed is just being impatient and childish
Comment
-
Originally posted by ilovemymac View PostDoes apex require a air mouse to use? That's why I use the minix launcher becaue it works with the included remote.
Sent from my iPhone 5 using Tapatalk
Comment
-
Originally posted by jcespi2005 View PostAfter some try and error attempts, i got all my NFS shares working as expected...
For some strange reason , the first mount in the list is not working, when pointing to /mnt but second and third are working pinting to /mnt/internal_sd/nfsvideo and /mnt/internal_sd/nfsmusic (this two folder you need to create manually).
So i put a first mount to a share i dont need to mount, and two other ones (nfsvideo and nfsmusic) are mounted fine
this is the script:
Code:#!/system/bin/sh setenforce permissive # Make sure networking is up before mounting busybox sleep 3 # Switch rootfs to read / write # Be carful after this. Misplaced commands may # brick your system busybox mount -o rw,remount / # Create Mount Points mkdir /mnt/nfsphoto #mkdir /mnt/nfsvideo # Switch rootfs to read only busybox mount -o ro,remount / busybox sleep 2 #NFS Auto Mount busybox mount -o nolock,rw,hard,intr,vers=3 -t nfs 192.168.1.110:/volume1/photo /mnt/nfsphoto busybox sleep 1 busybox mount -o nolock,rw,hard,intr,vers=3 -t nfs 192.168.1.110:/volume1/music /mnt/internal_sd/nfsmusic busybox sleep 1 busybox mount -o nolock,rw,hard,intr,vers=3 -t nfs 192.168.1.110:/volume1/video /mnt/internal_sd/nfsvideo
Thank you, this ROM is now perfect for me!
Comment
-
Hopefully I have a simple problem that someone has already solved, but has eluded my searches...
I have problem running Netflix. I have tried multiple versions, including the one from a few days ago, and each time I get:
"Sorry we could not reach the Netflix service. Please try again later. (-3)"
When I check on my laptop, I have no problem accessing Netflix on the same connection. I did not have this issue on Quickshot v2, but I had the same problem on Wasser's KK build. How can I diagnose the root cause of this problem? Are there any general solutions I can try?
Comment
What's Going On
Collapse
There are currently 2954 users online. 0 members and 2954 guests.
Most users ever online was 63,956 at 18:56 on 20 March 2025.
Comment