Here is a tutorial on the installation and configuration of CCcam on the Vu+ decoder under a OpenDROID 6.8 image.
- Cccam 2.3.0 download, software free
- Cccam 2.3.0 Download Software Windows 10
- Cccam 2.3.0 Download Software
IMPORTANT: This tutorial is valid for all versions of OpenDROID 6.X.
For this tutorial you need.
Free Cccam 2.3.0 for Dreambox Download, Cccam 2.3.0 for Dreambox Download. The Best Provider CCCAM And IPTV with all Packages, get over 1000 plus Channels Full HD3D more option VOD with cheap price and accept all payment methods. 0 E1 Config Download, CCcam 2. E1 Config Download. 0 for Dreambox Download, Cccam 2. Voice Recorder Software For Windows. Dreambox Download.
Material:
Vu + ZERO, UNO, DUO, DUO 2, ULTIMO, SOLO, SOLO 2, SOLO SE, zero 4K, Uno 4k, solo 4k, Ultimo 4k, DUO 4K, UNO 4K SE.
Software:
Winscp
CCCAM 2.3.9
A CCcam subscription – If you do not have a CCcam subscription you can order it here
1- Installing the CCcam 2.3.0 plugin
– Launch WINSCP in the home window
File protocol: FTP
Hot name: 192.168.1.100 (ip address of your VU+ )
Cccam 2.3.0 download, software free
User name: root
Password: “empty” by default the root password in OpenDROID is empty (no password)
After clicking on Login
Select the ipk file and drag between the two windows to the /tmp folder.
Press GREEN BUTTONbutton to launch OpenDROID Green Pannel
Next press RED BUTTON to launch Ipk Tools
Choose Manually install ipk package
Choose the ipk and press OK
Choose YES to confirm installation
Please wait while installing CCCAM softcam
After installation done, presse exit
2. Copy of the CCCam subscription
Copy subscription files from your PC to the /usr/keys path of your receiver.
CCcam.cfg
CCcam.prio
CCcam.channelinfo
Cccam 2.3.0 Download Software Windows 10
3. Starting CCCam
Press the bluebutton on the remote control to launch EMU MANAGER
then choose the CCcam 2.3.0 softcam, press OK to start it
Please wait while starting CCcam 2.3.0
CCCAM is active
Cccam 2.3.0 Download Software
# Copyright 1999-2014 Gentoo Foundation |
# Distributed under the terms of the GNU General Public License v2 |
# $Header: |
EAPI=4 |
inherit eutils linux-info multilib systemd |
DESCRIPTION='The CCcam emulator for cardsharing' |
HOMEPAGE='http://www.cccam.co/' |
SRC_URI='http://dvb.oppserver.net/cams/cccam/${P}.zip' |
LICENSE='' |
SLOT='0' |
KEYWORDS='~amd64 ~arm ~ppc ~x86' |
IUSE='-oscam -systemd' |
RESTRICT='nomirror' |
DEPEND='oscam? ( media-tv/oscam ) |
systemd? ( sys-apps/gentoo-systemd-integration |
>=sys-apps/systemd-204-r1 )' |
RDEPEND='>=app-arch/unzip-6.0-r3' |
CCCAM_CONF='/var/etc' |
CCCAM_KEYS='/var/keys' |
CCCAM_PREFIX='/usr/bin' |
src_unpack() { |
unpack ${A} |
cd'${S}' |
} |
pkg_setup() { |
if use systemd ;then |
if! linux_config_exists;then |
eerror 'Kernel configuration file doesn't exist' |
elif! linux_chkconfig_present GENTOO_LINUX_INIT_SYSTEMD;then |
eerror 'WARNING : GENTOO_LINUX_INIT_SYSTEMD not enabled in kernel' |
fi |
fi |
} |
src_install () { |
einfo |
if use amd64 && has_multilib_profile ;then |
einfo 'Install x86 binary (On amd64 multilib)' |
dobin CCcam.x86 || die 'dobin failed !' |
dosym ${CCCAM_PREFIX}/CCcam.x86 ${CCCAM_PREFIX}/${PN} |
fi |
if use arm ;then |
einfo 'Install arm binary' |
dobin CCcam.armeb || die 'dobin failed !' |
dosym ${CCCAM_PREFIX}/CCcam.armeb ${CCCAM_PREFIX}/${PN} |
fi |
if use ppc ;then |
einfo 'Install ppc binary' |
dobin CCcam.ppc || die 'dobin failed !' |
dosym ${CCCAM_PREFIX}/CCcam.ppc ${CCCAM_PREFIX}/${PN} |
fi |
if use x86 ;then |
einfo 'Install x86 binary' |
dobin CCcam.x86 || die 'dobin failed !' |
dosym ${CCCAM_PREFIX}/CCcam.x86 ${CCCAM_PREFIX}/${PN} |
fi |
einfo 'Copying configuration files' |
insinto ${CCCAM_CONF} |
doins CCcam.cfg || die 'doins failed !' |
einfo 'Copying ChangeLog' |
dodoc ChangeLog || die 'dodoc failed !' |
einfo 'Creating folder for keys' |
dodir ${CCCAM_KEYS}|| die 'dodir failed !' |
if use systemd ;then |
einfo 'Install systemd unit' |
systemd_dounit '${FILESDIR}/${PN}.service'|| die 'dounit failed !' |
else |
einfo 'Install init runscript' |
doinitd '${FILESDIR}/${PN}'|| die 'doinitd failed !' |
fi |
einfo |
} |
pkg_postinst() { |
einfo |
einfo 'CCcam version ${PV} was successfully installed !' |
einfo |
} |