can do anything i want to on wetekplay1 tbh , tuner options been crap can only assume because no duel tunner ie dvb-s & dvb-c on same duel tuner or not having FBC tuners is nly thing i can imagine what 1999gtv
means as for platforms they work well enough tbh and as for droid epg well hey there all the same on droid tbh to :) the costings of the play2 are possible enough reason to upgrade as your doubling ram processor and rom for pretty much the same price really
Posts by TH3-J0K3R
-
-
Display More
Which build teams are supporting the wetek 2 ??
ThxEdit
There is a wetek play 2 S as well.... but not till 2017 at least that's acording to wetek on arsebook
Why not call it wetek 3. Confusing.
this the one with icrosata HDD if i mind right ;)
2017 is a bit far to cause wi spec they gave day one lol questions and yah ask the best ;)
- - - Updated - - -
Sorry should have clarified that I was talkng about E2 images.
without the drivers requested by OPENATV to move forward why should we bother ?
Just saying liek
geez the drivers make it worthhile les move forward lets get 5.3 at least :)
still hefty swivering cause i not got a dvb-c wetek tunner yet lol :)
-
whats the situ with other O/S on this one ?
are there newer drivers that can be utilized by the openatv team for example :) or anyone looking into E2 / O/E ect ect
109 euro is that with dvb-? or without ? -
Hi guys. Just got my ubuntu 16.04 server running so going to take a look at installing OSCAM. Standby for a lot of stupid questions please :)
how did you go ? not seen any questions did it work ok just installed 16.04 anah ;)
- - - Updated - - -
Can Confirm this is working under 16.04 :)
big upsDisplay MoreNow you can run the script on ubuntu 14 and 15.
oscam-cccam-script also works now on Ubuntu 14.04 and 15.04 with some adjustments!
I deleted this in the script and performed either manual installation of these:HTMLdeleted:##########################Instal Packages#########################echo "${txtred}Step 8 ${txtrst}"echo "${txtgreen}installing the software needed for cccam/oscam server ${txtrst}"sleep 3apt-get updatesleep 4yes | apt-get install openssh-serversleep 2yes | apt-get install php5 sleep 2yes | apt-get install libpcsclite1sleep 2yes | apt-get install libpcsclite-devsleep 2yes | apt-get install opensslsleep 2yes | apt-get install libssl-devsleep 2yes | apt-get install pcscdsleep 2yes | apt-get install pcsc-toolssleep 2########################Instal Simplebuild########################echo "${txtred}Step 9 ${txtrst}"echo "${txtgreen}Instal Simplebuild for compiling your own oscam ${txtrst}"sleep 3cd /opt/mkdir simplebuildcd simplebuildwget ss4200.homelinux.com/oscam/simplebuildchmod 777 simplebuild./simplebuild debinstallThen installation in telnet, one by one:
HTML
Display Moresudo apt-get update sudo apt-get upgrade apt-get install php5 apt-get install libpcsclite-dev apt-get install libssl-dev apt-get install pcscd apt-get install pcsc-tools cd /opt/ mkdir simplebuild cd simplebuild wget ss4200.homelinux.com/oscam/simplebuild chmod 777 simplebuild ./simplebuild debinstallThen run the script in the usual way and should be seen like this:
HTML
Display More#!/bin/sh #Automated Installation script #Purpose: Installing CCcam & Oscam Ubuntu 64 Bit system. #Originally written by: Youknowhoo (R.I.P) updated by thatfellow, updated to work on ubuntu 14-15 by hacked. # #Requirements: Ubuntu 64Bit # Installation Package. #put the cccamoscam_install_package in /tmp #put this script in /tmp then chmod 755 this script OWNER=$(grep 1000:1000: /etc/passwd|cut -f1 -d':') txtrst=$(tput sgr0) # Text reset txtred=$(tput setab 1) # Red Background textpurple=$(tput setab 5) #Purple Background txtgreen=$(tput bold ; tput setaf 2) # GreenBold arch=$(getconf LONG_BIT) ###################### #Check Files Prestnt## ###################### echo "${txtgreen}Script for automated CCcam/Oscam installation ${txtrst}" sleep 2 chown $OWNER /tmp/cccamoscam_install_package sleep 2 if [ ! -e /tmp/cccamoscam_install_package ] ; then echo "${txtgreen}WARNING !!!!!!! ${txtrst}" echo "${txtgreen}Install package is not in tmp directory ${txtrst}" echo "${txtgreen}please check if its there ${txtrst}" fi ###################### #Check linux x86 x64## ###################### echo "${txtred}Initial OS Test ${txtrst}" echo "${txtgreen}Check linux architecture x32-bit or x64-bit ${txtrst}" echo "${textpurple}$arch-bit OS Detected${txtrst}" echo " " sleep 3 mv /tmp/cccamoscam_install_package/oscam-x$arch /tmp/cccamoscam_install_package/oscam mv /tmp/cccamoscam_install_package/CCcam-x$arch /tmp/cccamoscam_install_package/cccam_2.1.3 ###################### ##Make Directories#### ###################### echo "${txtred}Step 1 ${txtrst}" echo "${txtgreen}make directorys and show them to the owner ${txtrst}" sleep 3 # mkdir /var/etc chown $OWNER /var/etc # mkdir /var/keys chown $OWNER /var/keys # mkdir /var/script chown $OWNER /var/script # mkdir /var/config chown $OWNER /var/config # mkdir /var/backup chown $OWNER /var/backup # mkdir /var/cccamlog chown $OWNER /var/cccamlog # chown $OWNER /usr/local/bin sleep 2 mkdir /var/oscam-configs-backup ###################### ######Move CCcam###### ###################### echo "${txtred}Step 2 ${txtrst}" echo "${txtgreen}Moving CCcam executable to correct folder ${txtrst}" sleep 3 mv /tmp/cccamoscam_install_package/cccam_2.1.3 /usr/local/bin chmod 755 /usr/local/bin/cccam_2.1.3 sleep 2 ###################### ######Move Oscam###### ###################### echo "${txtred}Step 3 ${txtrst}" echo "${txtgreen}Moving oscam executable to correct folder ${txtrst}" sleep 3 mv /tmp/cccamoscam_install_package/oscam /usr/local/bin chmod 755 /usr/local/bin/oscam ###################### #####Move Scripts##### ###################### echo "${txtred}Step 4 ${txtrst}" echo "${txtgreen}Move the scripts to /var/script ${txtrst}" sleep 3 mv /tmp/cccamoscam_install_package/*.sh /var/script ###################### ####Chmod Scripts##### ###################### echo "${txtred}Step 5 ${txtrst}" echo "${txtgreen}chmod 755 the scripts ${txtrst}" sleep 3 chmod 755 /var/script/oscam-backup.sh chmod 755 /var/script/configupdate.sh chmod 755 /var/script/LogCleanUp.sh chmod 755 /var/script/CCcamCheck.sh chmod 755 /var/script/OscamCheck.sh chmod 755 /var/script/keyupdater.sh ###################### ##Autostart rc.local## ###################### echo "${txtred}Step 6 ${txtrst}" echo "${txtgreen}make rc.local for autostart at boot ${txtrst}" sleep 3 chown $OWNER /etc/rc.local rm /etc/rc.local sleep 2 mv /tmp/cccamoscam_install_package/rc.local /etc mv /tmp/cccamoscam_install_package/CCcam.channelinfo /var/etc mv /tmp/cccamoscam_install_package/CCcam.providers /var/etc mv /tmp/cccamoscam_install_package/CCcam.prio /var/etc mv /tmp/cccamoscam_install_package/CCcam.cfg /var/etc/ mv /tmp/cccamoscam_install_package/oscam.conf /usr/local/etc mv /tmp/cccamoscam_install_package/oscam.server /usr/local/etc mv /tmp/cccamoscam_install_package/oscam.user /usr/local/etc mv /tmp/cccamoscam_install_package/oscam.services /usr/local/etc mv /tmp/cccamoscam_install_package/oscam.srvid /usr/local/etc sleep 1 chmod 755 /etc/rc.local sleep 1 chown root /etc/rc.local ###################### ####Setup Crontab##### ###################### echo "${txtred}Step 7 ${txtrst}" echo "${txtgreen}making crontabs in /etc/crontab, remember no crontab -e!!!! ${txtrst}" sleep 3 echo "59 23 * * * root /var/script/oscam-backup.sh" >> /etc/crontab echo "57 06 * * * root killall cccam_2.1.3" >> /etc/crontab echo "57 06 * * * root killall oscam" >> /etc/crontab echo "57 06 * * * root /var/script/configupdate.sh >> /var/cccamlog/configupdate.log" >> /etc/crontab echo "57 06 * * * root /var/script/keyupdater.sh" >> /etc/crontab echo "58 06 * * * root /usr/local/bin/oscam -b" >> /etc/crontab echo "59 06 * * * root /usr/local/bin/cccam_2.1.3" >> /etc/crontab echo "*/5 * * * * root /var/script/CCcamCheck.sh" >> /etc/crontab echo "*/5 * * * * root /var/script/OscamCheck.sh" >> /etc/crontab echo "03 07 * * 6 root /var/script/LogCleanUp.sh >> /var/cccamlog/CleanUp.log" >> /etc/crontab ###################### ####Restart System#### ###################### echo "${txtred}Job Done! Restarting Server ${txtrst}" echo "${txtgreen}cowntdown to restart ${txtrst}" sleep 2 echo "${txtgreen}3 ${txtrst}" sleep 1 echo "${txtgreen}2 ${txtrst}" sleep 1 echo "${txtgreen}1 ${txtrst}" echo "${txtgreen}rebooting now see you in a minute ${txtrst}" rebootIt looks like this:
HTML
Display Moreroot@ubuntu:~# chmod 755 /tmp/CCcamOscamInstall.sh root@ubuntu:~# /tmp/CCcamOscamInstall.sh Script for automated CCcam/Oscam installation Initial OS Test Check linux architecture x32-bit or x64-bit 64-bit OS Detected Step 1 make directorys and show them to the owner Step 2 Moving CCcam executable to correct folder Step 3 Moving oscam executable to correct folder Step 4 Move the scripts to /var/script Step 5 chmod 755 the scripts Step 6 make rc.local for autostart at boot Step 7 making crontabs in /etc/crontab, remember no crontab -e!!!! Job Done! Restarting Server cowntdown to restart 3 2 1 rebooting now see you in a minuteOscam is updated to the latest svn 11182-webif-ssl-libusb-pcsc in script
-
thanx added and the err or is now gone in oscam now to pair up da red card to Hd raciever woop woop lol
and im right in assuming i will need the boxkey with it been a redcard yeah and enter into oscam -
olla all so have new hardware and installed the auito scrift by you know who RIP ;)
this is my lsusb
Code
Display More$ lsusb Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 004 Device 003: ID 076b:3021 OmniKey AG CardMan 3121 Bus 004 Device 002: ID 413c:2106 ******removed*********** Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 003 Device 002: ID 045e:0773 Microsoft Corp. Bus 003 Device 003: ID 104f:0001 WB Electronics Infinity Phoenix Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hubthis is my 2nd reader have a redcard for to access tthe ITV HD as i am still runningh std def on my sub card :)
anyone point me in right direction to get it to reconise the device and stop the error please
probs cant see teh woods for the trees but nether the less i will need em pointe4d out to me :) -
-
ok so i had some hardware fail so was forced to update my server
so decided to integrate a dvb-s2 tevii 464 to my sff i just bought
i was going to install ubuntu 14 or 16 but have noticed that the tevii 464 s2
has stopped working after UBUNTU 12.04 LTSsomething about the driver hanging anyone able to help me install onto 16 or 14
its something to do with v4l-dvb drivers and a older kernal more suited as i can see card in TVH but cant scan nothing :(
there is some stuff online in german but hey my english reading aint that good never mind german lol :)
german ubuntu site below
i have it installed in 16:04 and it tvh sees the card ok but jut cant scan for some reason
-
how about oscam without stream relay??
Thanks
would assume the same ones for play will work there is not much change here bar ram & nand size
-
No problem Honcho will add it to zip.
also any pacethic user names to use on install of ubuntu or ny user name do ?
-
Fix for CCcamRunCount.sh for the single install version. There was a few syntax errors in script for single version
just add the above to the rar file yeah :)
will test when new hardware arrives on ubuntu 16.4
-
also run the Video Calibration to have best fit per device , i find i must run this to set my screen size fully
on most devices i have used :) -
dont think so nope preety sure wetekplay play 2 and play 2s are all duel tuners tbh ;)
just not FBC tuners but realistically they should be looking at this in anyones eyes even as a addon buy separate upgrade -
its not the play2s either as that had a microsata slot for hdd nah ?
-
big ups on the port :)
new name coming soon :P
-
HI peeps can someone please tell me how to install Rat's on my DM800 HD with Blackhole Image please I would be very greatful.
Kind Regards
The Doc
there is a plugin for it in plugin section , look in here for the rats boukets updater plugin and go to last page in work back threw posts for l8est version ,
put into your temp folder or usb stick and install as normal :)this way you can run the plugin and update your regions lists :)
-
try a diff oscam rev on it :)
-
never knew this was coming out thanx
-
200 here since its worst ever :)
lol
-
phonex and anohm iptv wil give yah all bar the buffering ;)
just add anhom iptv to yer naviX fav's ;)
