How to install driver for DVB-T2 USB TUNER EVOLVEO SIGMA T2 on UBUNTU 17.10 (or newer ubuntu rls.)?

Clash Royale CLAN TAG#URR8PPP up vote
2
down vote
favorite
When i connect my EVOLVEO SIGMA T2
and type lsusb in terminal,
linux identifies new device as ID ID 0572:c68a Conexant Systems (Rockwell), Inc.
but w_scan command returns only error
w_scan version 20170107 (compiled for DVB API 5.10)
using settings for CZECH REPUBLIC
DVB aerial
DVB-T Europe
scan type TERRESTRIAL, channellist 4
output format vlc xspf playlist
output charset 'ISO-8859-1'
Info: using DVB adapter auto detection.
main:4007: FATAL: ***** NO USEABLE TERRESTRIAL CARD FOUND. *****
Please check wether dvb driver is loaded and
verify that no dvb application (i.e. vdr) is running.
How can I install driver for EVOLVEO SIGMA T2 and then successfuly scan for dvb-t & dvb-t2 channels ?
drivers 17.10 18.04 dvb dvb-t
add a comment |Â
up vote
2
down vote
favorite
When i connect my EVOLVEO SIGMA T2
and type lsusb in terminal,
linux identifies new device as ID ID 0572:c68a Conexant Systems (Rockwell), Inc.
but w_scan command returns only error
w_scan version 20170107 (compiled for DVB API 5.10)
using settings for CZECH REPUBLIC
DVB aerial
DVB-T Europe
scan type TERRESTRIAL, channellist 4
output format vlc xspf playlist
output charset 'ISO-8859-1'
Info: using DVB adapter auto detection.
main:4007: FATAL: ***** NO USEABLE TERRESTRIAL CARD FOUND. *****
Please check wether dvb driver is loaded and
verify that no dvb application (i.e. vdr) is running.
How can I install driver for EVOLVEO SIGMA T2 and then successfuly scan for dvb-t & dvb-t2 channels ?
drivers 17.10 18.04 dvb dvb-t
so, ID 0572:c68a is equal to "Geniatech T230C2" ... evolveo is propably just local rebranding
â Jià Âà Doubravský
Apr 10 at 17:34
add a comment |Â
up vote
2
down vote
favorite
up vote
2
down vote
favorite
When i connect my EVOLVEO SIGMA T2
and type lsusb in terminal,
linux identifies new device as ID ID 0572:c68a Conexant Systems (Rockwell), Inc.
but w_scan command returns only error
w_scan version 20170107 (compiled for DVB API 5.10)
using settings for CZECH REPUBLIC
DVB aerial
DVB-T Europe
scan type TERRESTRIAL, channellist 4
output format vlc xspf playlist
output charset 'ISO-8859-1'
Info: using DVB adapter auto detection.
main:4007: FATAL: ***** NO USEABLE TERRESTRIAL CARD FOUND. *****
Please check wether dvb driver is loaded and
verify that no dvb application (i.e. vdr) is running.
How can I install driver for EVOLVEO SIGMA T2 and then successfuly scan for dvb-t & dvb-t2 channels ?
drivers 17.10 18.04 dvb dvb-t
When i connect my EVOLVEO SIGMA T2
and type lsusb in terminal,
linux identifies new device as ID ID 0572:c68a Conexant Systems (Rockwell), Inc.
but w_scan command returns only error
w_scan version 20170107 (compiled for DVB API 5.10)
using settings for CZECH REPUBLIC
DVB aerial
DVB-T Europe
scan type TERRESTRIAL, channellist 4
output format vlc xspf playlist
output charset 'ISO-8859-1'
Info: using DVB adapter auto detection.
main:4007: FATAL: ***** NO USEABLE TERRESTRIAL CARD FOUND. *****
Please check wether dvb driver is loaded and
verify that no dvb application (i.e. vdr) is running.
How can I install driver for EVOLVEO SIGMA T2 and then successfuly scan for dvb-t & dvb-t2 channels ?
drivers 17.10 18.04 dvb dvb-t
drivers 17.10 18.04 dvb dvb-t
edited Apr 10 at 16:43
asked Apr 10 at 15:43
Jià Âà Doubravský
6473924
6473924
so, ID 0572:c68a is equal to "Geniatech T230C2" ... evolveo is propably just local rebranding
â Jià Âà Doubravský
Apr 10 at 17:34
add a comment |Â
so, ID 0572:c68a is equal to "Geniatech T230C2" ... evolveo is propably just local rebranding
â Jià Âà Doubravský
Apr 10 at 17:34
so, ID 0572:c68a is equal to "Geniatech T230C2" ... evolveo is propably just local rebranding
â Jià Âà Doubravský
Apr 10 at 17:34
so, ID 0572:c68a is equal to "Geniatech T230C2" ... evolveo is propably just local rebranding
â Jià Âà Doubravský
Apr 10 at 17:34
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
Your device 0572:c68a is supposed to be covered by the driver dvb-usb-cxusb, however, the exact usb.id isn't included yet in the version included in the latest stable Ubuntu version, 17.10 and, therefore, earlier. Let's build a newer driver.
Please try this with a working internet connection:
sudo apt-get update
sudo apt-get install -y git build-essential
git clone https://bitbucket.org/CrazyCat/media_build.git
cd media_build
./build --git https://github.com/crazycat69/linux_media latest
sudo make install
It builds with a few possibly harmless warnings for me. The new driver reports:
$ modinfo dvb-usb-cxusb | grep C68
alias: usb:v0572pC68Ad*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v0572pC689d*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v0572pC688d*dc*dsc*dp*ic*isc*ip*in*
As you can see, your device is included. As a part of the install process, the needed firmware is also installed.
Reboot and tell us if there is any improvement. I will have a few more instructions.
EDIT: You have compiled the driver for your current kernel version only. When Update Manager installs a later kernel version, also known as linux-image, after the required reboot, recompile:
cd media_build
make distclean
git pull
./build
sudo make install
Amazing, after i finished descriebed procedure and rebooted my PC.w_scansuccesfully found all DVB-T channels and then automaticaly found all DVB-T2 channels too ... it works as expected now :-) Thank you. Btw, here is my fullw_scanoutput justpaste.it/1jhq3
â Jià Âà Doubravský
Apr 11 at 16:02
1
Awesome! Glad it's working. Please see my edit above in a few minutes.
â chili555
Apr 11 at 16:14
ERROR 404 github.com/crazycat69/linux_media repository not found
â Jià Âà Doubravský
Jul 12 at 15:31
1
Please see my edit above.
â chili555
Jul 16 at 21:36
add a comment |Â
protected by Community⦠Jul 8 at 15:16
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
Your device 0572:c68a is supposed to be covered by the driver dvb-usb-cxusb, however, the exact usb.id isn't included yet in the version included in the latest stable Ubuntu version, 17.10 and, therefore, earlier. Let's build a newer driver.
Please try this with a working internet connection:
sudo apt-get update
sudo apt-get install -y git build-essential
git clone https://bitbucket.org/CrazyCat/media_build.git
cd media_build
./build --git https://github.com/crazycat69/linux_media latest
sudo make install
It builds with a few possibly harmless warnings for me. The new driver reports:
$ modinfo dvb-usb-cxusb | grep C68
alias: usb:v0572pC68Ad*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v0572pC689d*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v0572pC688d*dc*dsc*dp*ic*isc*ip*in*
As you can see, your device is included. As a part of the install process, the needed firmware is also installed.
Reboot and tell us if there is any improvement. I will have a few more instructions.
EDIT: You have compiled the driver for your current kernel version only. When Update Manager installs a later kernel version, also known as linux-image, after the required reboot, recompile:
cd media_build
make distclean
git pull
./build
sudo make install
Amazing, after i finished descriebed procedure and rebooted my PC.w_scansuccesfully found all DVB-T channels and then automaticaly found all DVB-T2 channels too ... it works as expected now :-) Thank you. Btw, here is my fullw_scanoutput justpaste.it/1jhq3
â Jià Âà Doubravský
Apr 11 at 16:02
1
Awesome! Glad it's working. Please see my edit above in a few minutes.
â chili555
Apr 11 at 16:14
ERROR 404 github.com/crazycat69/linux_media repository not found
â Jià Âà Doubravský
Jul 12 at 15:31
1
Please see my edit above.
â chili555
Jul 16 at 21:36
add a comment |Â
up vote
1
down vote
accepted
Your device 0572:c68a is supposed to be covered by the driver dvb-usb-cxusb, however, the exact usb.id isn't included yet in the version included in the latest stable Ubuntu version, 17.10 and, therefore, earlier. Let's build a newer driver.
Please try this with a working internet connection:
sudo apt-get update
sudo apt-get install -y git build-essential
git clone https://bitbucket.org/CrazyCat/media_build.git
cd media_build
./build --git https://github.com/crazycat69/linux_media latest
sudo make install
It builds with a few possibly harmless warnings for me. The new driver reports:
$ modinfo dvb-usb-cxusb | grep C68
alias: usb:v0572pC68Ad*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v0572pC689d*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v0572pC688d*dc*dsc*dp*ic*isc*ip*in*
As you can see, your device is included. As a part of the install process, the needed firmware is also installed.
Reboot and tell us if there is any improvement. I will have a few more instructions.
EDIT: You have compiled the driver for your current kernel version only. When Update Manager installs a later kernel version, also known as linux-image, after the required reboot, recompile:
cd media_build
make distclean
git pull
./build
sudo make install
Amazing, after i finished descriebed procedure and rebooted my PC.w_scansuccesfully found all DVB-T channels and then automaticaly found all DVB-T2 channels too ... it works as expected now :-) Thank you. Btw, here is my fullw_scanoutput justpaste.it/1jhq3
â Jià Âà Doubravský
Apr 11 at 16:02
1
Awesome! Glad it's working. Please see my edit above in a few minutes.
â chili555
Apr 11 at 16:14
ERROR 404 github.com/crazycat69/linux_media repository not found
â Jià Âà Doubravský
Jul 12 at 15:31
1
Please see my edit above.
â chili555
Jul 16 at 21:36
add a comment |Â
up vote
1
down vote
accepted
up vote
1
down vote
accepted
Your device 0572:c68a is supposed to be covered by the driver dvb-usb-cxusb, however, the exact usb.id isn't included yet in the version included in the latest stable Ubuntu version, 17.10 and, therefore, earlier. Let's build a newer driver.
Please try this with a working internet connection:
sudo apt-get update
sudo apt-get install -y git build-essential
git clone https://bitbucket.org/CrazyCat/media_build.git
cd media_build
./build --git https://github.com/crazycat69/linux_media latest
sudo make install
It builds with a few possibly harmless warnings for me. The new driver reports:
$ modinfo dvb-usb-cxusb | grep C68
alias: usb:v0572pC68Ad*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v0572pC689d*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v0572pC688d*dc*dsc*dp*ic*isc*ip*in*
As you can see, your device is included. As a part of the install process, the needed firmware is also installed.
Reboot and tell us if there is any improvement. I will have a few more instructions.
EDIT: You have compiled the driver for your current kernel version only. When Update Manager installs a later kernel version, also known as linux-image, after the required reboot, recompile:
cd media_build
make distclean
git pull
./build
sudo make install
Your device 0572:c68a is supposed to be covered by the driver dvb-usb-cxusb, however, the exact usb.id isn't included yet in the version included in the latest stable Ubuntu version, 17.10 and, therefore, earlier. Let's build a newer driver.
Please try this with a working internet connection:
sudo apt-get update
sudo apt-get install -y git build-essential
git clone https://bitbucket.org/CrazyCat/media_build.git
cd media_build
./build --git https://github.com/crazycat69/linux_media latest
sudo make install
It builds with a few possibly harmless warnings for me. The new driver reports:
$ modinfo dvb-usb-cxusb | grep C68
alias: usb:v0572pC68Ad*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v0572pC689d*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v0572pC688d*dc*dsc*dp*ic*isc*ip*in*
As you can see, your device is included. As a part of the install process, the needed firmware is also installed.
Reboot and tell us if there is any improvement. I will have a few more instructions.
EDIT: You have compiled the driver for your current kernel version only. When Update Manager installs a later kernel version, also known as linux-image, after the required reboot, recompile:
cd media_build
make distclean
git pull
./build
sudo make install
edited Jul 16 at 21:39
answered Apr 10 at 20:28
chili555
36.5k54776
36.5k54776
Amazing, after i finished descriebed procedure and rebooted my PC.w_scansuccesfully found all DVB-T channels and then automaticaly found all DVB-T2 channels too ... it works as expected now :-) Thank you. Btw, here is my fullw_scanoutput justpaste.it/1jhq3
â Jià Âà Doubravský
Apr 11 at 16:02
1
Awesome! Glad it's working. Please see my edit above in a few minutes.
â chili555
Apr 11 at 16:14
ERROR 404 github.com/crazycat69/linux_media repository not found
â Jià Âà Doubravský
Jul 12 at 15:31
1
Please see my edit above.
â chili555
Jul 16 at 21:36
add a comment |Â
Amazing, after i finished descriebed procedure and rebooted my PC.w_scansuccesfully found all DVB-T channels and then automaticaly found all DVB-T2 channels too ... it works as expected now :-) Thank you. Btw, here is my fullw_scanoutput justpaste.it/1jhq3
â Jià Âà Doubravský
Apr 11 at 16:02
1
Awesome! Glad it's working. Please see my edit above in a few minutes.
â chili555
Apr 11 at 16:14
ERROR 404 github.com/crazycat69/linux_media repository not found
â Jià Âà Doubravský
Jul 12 at 15:31
1
Please see my edit above.
â chili555
Jul 16 at 21:36
Amazing, after i finished descriebed procedure and rebooted my PC.
w_scan succesfully found all DVB-T channels and then automaticaly found all DVB-T2 channels too ... it works as expected now :-) Thank you. Btw, here is my full w_scan output justpaste.it/1jhq3â Jià Âà Doubravský
Apr 11 at 16:02
Amazing, after i finished descriebed procedure and rebooted my PC.
w_scan succesfully found all DVB-T channels and then automaticaly found all DVB-T2 channels too ... it works as expected now :-) Thank you. Btw, here is my full w_scan output justpaste.it/1jhq3â Jià Âà Doubravský
Apr 11 at 16:02
1
1
Awesome! Glad it's working. Please see my edit above in a few minutes.
â chili555
Apr 11 at 16:14
Awesome! Glad it's working. Please see my edit above in a few minutes.
â chili555
Apr 11 at 16:14
ERROR 404 github.com/crazycat69/linux_media repository not found
â Jià Âà Doubravský
Jul 12 at 15:31
ERROR 404 github.com/crazycat69/linux_media repository not found
â Jià Âà Doubravský
Jul 12 at 15:31
1
1
Please see my edit above.
â chili555
Jul 16 at 21:36
Please see my edit above.
â chili555
Jul 16 at 21:36
add a comment |Â
protected by Community⦠Jul 8 at 15:16
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
so, ID 0572:c68a is equal to "Geniatech T230C2" ... evolveo is propably just local rebranding
â Jià Âà Doubravský
Apr 10 at 17:34