How to properly install USB display driver for Fresco Logic FL2000DX on Ubuntu?

Clash Royale CLAN TAG#URR8PPP
up vote
4
down vote
favorite
I need to connect additional monitors on my computer and I get Fresco Logic FL2000DX USB display adapters. This adapters works perfect on Windows but I need to use on my development machine based on Ubuntu 16.04.
I find this on git hub: https://github.com/fresco-fl2000/fl2000 and try to install it but installation fail. Can anyone help me regarding this?
Thanks!
ubuntu drivers display-settings proprietary-drivers
add a comment |Â
up vote
4
down vote
favorite
I need to connect additional monitors on my computer and I get Fresco Logic FL2000DX USB display adapters. This adapters works perfect on Windows but I need to use on my development machine based on Ubuntu 16.04.
I find this on git hub: https://github.com/fresco-fl2000/fl2000 and try to install it but installation fail. Can anyone help me regarding this?
Thanks!
ubuntu drivers display-settings proprietary-drivers
add a comment |Â
up vote
4
down vote
favorite
up vote
4
down vote
favorite
I need to connect additional monitors on my computer and I get Fresco Logic FL2000DX USB display adapters. This adapters works perfect on Windows but I need to use on my development machine based on Ubuntu 16.04.
I find this on git hub: https://github.com/fresco-fl2000/fl2000 and try to install it but installation fail. Can anyone help me regarding this?
Thanks!
ubuntu drivers display-settings proprietary-drivers
I need to connect additional monitors on my computer and I get Fresco Logic FL2000DX USB display adapters. This adapters works perfect on Windows but I need to use on my development machine based on Ubuntu 16.04.
I find this on git hub: https://github.com/fresco-fl2000/fl2000 and try to install it but installation fail. Can anyone help me regarding this?
Thanks!
ubuntu drivers display-settings proprietary-drivers
ubuntu drivers display-settings proprietary-drivers
asked Aug 16 '17 at 16:42
Ivijan Stefan StipiÃÂ
14216
14216
add a comment |Â
add a comment |Â
3 Answers
3
active
oldest
votes
up vote
2
down vote
accepted
You should use Ubuntu 14 LTS instead of 16 LTS
This information is from https://github.com/fresco-fl2000/fl2000
On which kernel versions does this driver work?
This driver is tested on Ubuntu 14 LTS as well as some Android platforms with kernel version 3.10.x. This driver source might not compile on newer kernels (eg. 4.0 or above) because of the fast-moving API changes in the mainstream kernel. You might need to adapt it for your own use.
1
That mean I need to downgrade my Ubuntu?
â Ivijan Stefan StipiÃÂ
Aug 17 '17 at 6:45
1
Is there a way to recode this driver to work on 16 LTS?
â Ivijan Stefan StipiÃÂ
Aug 17 '17 at 6:45
@IvijanStefanStipiÃÂ To get the driver work on Ubuntu 16 you need to compile a custom kernel from kernel.org . The 3.10.107 kernel version should work as motioned
â GAD3R
Aug 17 '17 at 7:59
add a comment |Â
up vote
2
down vote
Telling the full story so all the keywords will be included in my response for future searchablity:
I've been looking everywhere for a driver or chipset info for the unbranded "Mini HD USB 3.0 HDMI Adapter" for years. I finally dug though enough duck duck go results to find a page that claims it uses the Fresco logic USB display driver, which brought me here.
I was able to get the driver to work using Linux Mint 18.2 "Sonya" with linux-headers-4.13.0-45-generic, but the instructions on git hub were not perfect.
- Clone the repository
git clone https://github.com/FrescoLogic/FL2000.git(If you don't have git installed you can install it withsudo apt install git) - Navigate to src:
cd FL2000/src/ - Run
make(contrary to the instructions, you don't need to editKERNEL_PATHas the bug was fixed) - Insert the module
sudo insmod f12000.ko - Change to sample
cd ../sample/ - Run
make(I got an error here, but was able to test the driver and see an image despite the error) - Run
sudo ./fltest 0
This crashed the first time I ran it but worked when I re-ran it a second time. Running it a 3rd time, it hangs my system.
Rebooting with the device plugged into the USB port seems to help. It will work at first launch. However, during shutdown my system is unable to disconnect from it's built in RAMDrive and will hang, ctrl-alt-del will move it a few steps further, but then it hangs again forcing me to do a hard shutdown.
I'm not sure if fixing the error when running make in the sample directory make: /opt/hi3798/arm-hisiv200-linux/bin/arm-hisiv200-linux-gnueabi-gcc: Command not found would make this any more stable.
I googled and came across this thread saying I "need to add head file <sys/ioctl.h>" -- I didn't know how to do that so I followed the recommendation in this thread mentioning I should install some gcc packages:
sudo apt-get install gcc-arm-none-eabi gcc-arm-linux-gnueabi
After installing, make progressed further, but I am now getting a make: /opt/hi3798/arm-hisiv200-linux/bin/arm-hisiv20/opt/hi3798/arm-hisiv200-linux/bin/arm-hisiv200-linux-gnueabi-gcc: Command not found error.
Installing ia32-libs hasn't helped.
1
This is not the full driver, so even though it is able to display static images, something else is needed for it to work with display managers etc: github.com/FrescoLogic/FL2000/issues/12
â prusswan
Jul 6 at 5:13
Just a heads up to KDE users, during my installing and uninstalling of drivers to get this proof of concept working I lost the ability to grab and resize windows. Apparentlykwingot uninstalled somewhere along the way;sudo apt install kwinfixed it.
â virtualxtc
Jul 6 at 6:32
1
BTW, one good way to identify USB devices is to look at the vendor and device id (vialsusbordmesg) and then google in the form1234:5678. Unbranded devices in particular often just keep the ids of the generic chips.
â dirkt
Jul 6 at 6:41
add a comment |Â
up vote
0
down vote
Is anyone getting this error?
sudo insmod fl2000.ko
[sudo] password for *********11:
insmod: ERROR: could not insert module fl2000.ko: Required key not available
New contributor
Jobin Thomas is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |Â
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
You should use Ubuntu 14 LTS instead of 16 LTS
This information is from https://github.com/fresco-fl2000/fl2000
On which kernel versions does this driver work?
This driver is tested on Ubuntu 14 LTS as well as some Android platforms with kernel version 3.10.x. This driver source might not compile on newer kernels (eg. 4.0 or above) because of the fast-moving API changes in the mainstream kernel. You might need to adapt it for your own use.
1
That mean I need to downgrade my Ubuntu?
â Ivijan Stefan StipiÃÂ
Aug 17 '17 at 6:45
1
Is there a way to recode this driver to work on 16 LTS?
â Ivijan Stefan StipiÃÂ
Aug 17 '17 at 6:45
@IvijanStefanStipiÃÂ To get the driver work on Ubuntu 16 you need to compile a custom kernel from kernel.org . The 3.10.107 kernel version should work as motioned
â GAD3R
Aug 17 '17 at 7:59
add a comment |Â
up vote
2
down vote
accepted
You should use Ubuntu 14 LTS instead of 16 LTS
This information is from https://github.com/fresco-fl2000/fl2000
On which kernel versions does this driver work?
This driver is tested on Ubuntu 14 LTS as well as some Android platforms with kernel version 3.10.x. This driver source might not compile on newer kernels (eg. 4.0 or above) because of the fast-moving API changes in the mainstream kernel. You might need to adapt it for your own use.
1
That mean I need to downgrade my Ubuntu?
â Ivijan Stefan StipiÃÂ
Aug 17 '17 at 6:45
1
Is there a way to recode this driver to work on 16 LTS?
â Ivijan Stefan StipiÃÂ
Aug 17 '17 at 6:45
@IvijanStefanStipiÃÂ To get the driver work on Ubuntu 16 you need to compile a custom kernel from kernel.org . The 3.10.107 kernel version should work as motioned
â GAD3R
Aug 17 '17 at 7:59
add a comment |Â
up vote
2
down vote
accepted
up vote
2
down vote
accepted
You should use Ubuntu 14 LTS instead of 16 LTS
This information is from https://github.com/fresco-fl2000/fl2000
On which kernel versions does this driver work?
This driver is tested on Ubuntu 14 LTS as well as some Android platforms with kernel version 3.10.x. This driver source might not compile on newer kernels (eg. 4.0 or above) because of the fast-moving API changes in the mainstream kernel. You might need to adapt it for your own use.
You should use Ubuntu 14 LTS instead of 16 LTS
This information is from https://github.com/fresco-fl2000/fl2000
On which kernel versions does this driver work?
This driver is tested on Ubuntu 14 LTS as well as some Android platforms with kernel version 3.10.x. This driver source might not compile on newer kernels (eg. 4.0 or above) because of the fast-moving API changes in the mainstream kernel. You might need to adapt it for your own use.
answered Aug 16 '17 at 19:59
GAD3R
23.7k1648100
23.7k1648100
1
That mean I need to downgrade my Ubuntu?
â Ivijan Stefan StipiÃÂ
Aug 17 '17 at 6:45
1
Is there a way to recode this driver to work on 16 LTS?
â Ivijan Stefan StipiÃÂ
Aug 17 '17 at 6:45
@IvijanStefanStipiÃÂ To get the driver work on Ubuntu 16 you need to compile a custom kernel from kernel.org . The 3.10.107 kernel version should work as motioned
â GAD3R
Aug 17 '17 at 7:59
add a comment |Â
1
That mean I need to downgrade my Ubuntu?
â Ivijan Stefan StipiÃÂ
Aug 17 '17 at 6:45
1
Is there a way to recode this driver to work on 16 LTS?
â Ivijan Stefan StipiÃÂ
Aug 17 '17 at 6:45
@IvijanStefanStipiÃÂ To get the driver work on Ubuntu 16 you need to compile a custom kernel from kernel.org . The 3.10.107 kernel version should work as motioned
â GAD3R
Aug 17 '17 at 7:59
1
1
That mean I need to downgrade my Ubuntu?
â Ivijan Stefan StipiÃÂ
Aug 17 '17 at 6:45
That mean I need to downgrade my Ubuntu?
â Ivijan Stefan StipiÃÂ
Aug 17 '17 at 6:45
1
1
Is there a way to recode this driver to work on 16 LTS?
â Ivijan Stefan StipiÃÂ
Aug 17 '17 at 6:45
Is there a way to recode this driver to work on 16 LTS?
â Ivijan Stefan StipiÃÂ
Aug 17 '17 at 6:45
@IvijanStefanStipiÃÂ To get the driver work on Ubuntu 16 you need to compile a custom kernel from kernel.org . The 3.10.107 kernel version should work as motioned
â GAD3R
Aug 17 '17 at 7:59
@IvijanStefanStipiÃÂ To get the driver work on Ubuntu 16 you need to compile a custom kernel from kernel.org . The 3.10.107 kernel version should work as motioned
â GAD3R
Aug 17 '17 at 7:59
add a comment |Â
up vote
2
down vote
Telling the full story so all the keywords will be included in my response for future searchablity:
I've been looking everywhere for a driver or chipset info for the unbranded "Mini HD USB 3.0 HDMI Adapter" for years. I finally dug though enough duck duck go results to find a page that claims it uses the Fresco logic USB display driver, which brought me here.
I was able to get the driver to work using Linux Mint 18.2 "Sonya" with linux-headers-4.13.0-45-generic, but the instructions on git hub were not perfect.
- Clone the repository
git clone https://github.com/FrescoLogic/FL2000.git(If you don't have git installed you can install it withsudo apt install git) - Navigate to src:
cd FL2000/src/ - Run
make(contrary to the instructions, you don't need to editKERNEL_PATHas the bug was fixed) - Insert the module
sudo insmod f12000.ko - Change to sample
cd ../sample/ - Run
make(I got an error here, but was able to test the driver and see an image despite the error) - Run
sudo ./fltest 0
This crashed the first time I ran it but worked when I re-ran it a second time. Running it a 3rd time, it hangs my system.
Rebooting with the device plugged into the USB port seems to help. It will work at first launch. However, during shutdown my system is unable to disconnect from it's built in RAMDrive and will hang, ctrl-alt-del will move it a few steps further, but then it hangs again forcing me to do a hard shutdown.
I'm not sure if fixing the error when running make in the sample directory make: /opt/hi3798/arm-hisiv200-linux/bin/arm-hisiv200-linux-gnueabi-gcc: Command not found would make this any more stable.
I googled and came across this thread saying I "need to add head file <sys/ioctl.h>" -- I didn't know how to do that so I followed the recommendation in this thread mentioning I should install some gcc packages:
sudo apt-get install gcc-arm-none-eabi gcc-arm-linux-gnueabi
After installing, make progressed further, but I am now getting a make: /opt/hi3798/arm-hisiv200-linux/bin/arm-hisiv20/opt/hi3798/arm-hisiv200-linux/bin/arm-hisiv200-linux-gnueabi-gcc: Command not found error.
Installing ia32-libs hasn't helped.
1
This is not the full driver, so even though it is able to display static images, something else is needed for it to work with display managers etc: github.com/FrescoLogic/FL2000/issues/12
â prusswan
Jul 6 at 5:13
Just a heads up to KDE users, during my installing and uninstalling of drivers to get this proof of concept working I lost the ability to grab and resize windows. Apparentlykwingot uninstalled somewhere along the way;sudo apt install kwinfixed it.
â virtualxtc
Jul 6 at 6:32
1
BTW, one good way to identify USB devices is to look at the vendor and device id (vialsusbordmesg) and then google in the form1234:5678. Unbranded devices in particular often just keep the ids of the generic chips.
â dirkt
Jul 6 at 6:41
add a comment |Â
up vote
2
down vote
Telling the full story so all the keywords will be included in my response for future searchablity:
I've been looking everywhere for a driver or chipset info for the unbranded "Mini HD USB 3.0 HDMI Adapter" for years. I finally dug though enough duck duck go results to find a page that claims it uses the Fresco logic USB display driver, which brought me here.
I was able to get the driver to work using Linux Mint 18.2 "Sonya" with linux-headers-4.13.0-45-generic, but the instructions on git hub were not perfect.
- Clone the repository
git clone https://github.com/FrescoLogic/FL2000.git(If you don't have git installed you can install it withsudo apt install git) - Navigate to src:
cd FL2000/src/ - Run
make(contrary to the instructions, you don't need to editKERNEL_PATHas the bug was fixed) - Insert the module
sudo insmod f12000.ko - Change to sample
cd ../sample/ - Run
make(I got an error here, but was able to test the driver and see an image despite the error) - Run
sudo ./fltest 0
This crashed the first time I ran it but worked when I re-ran it a second time. Running it a 3rd time, it hangs my system.
Rebooting with the device plugged into the USB port seems to help. It will work at first launch. However, during shutdown my system is unable to disconnect from it's built in RAMDrive and will hang, ctrl-alt-del will move it a few steps further, but then it hangs again forcing me to do a hard shutdown.
I'm not sure if fixing the error when running make in the sample directory make: /opt/hi3798/arm-hisiv200-linux/bin/arm-hisiv200-linux-gnueabi-gcc: Command not found would make this any more stable.
I googled and came across this thread saying I "need to add head file <sys/ioctl.h>" -- I didn't know how to do that so I followed the recommendation in this thread mentioning I should install some gcc packages:
sudo apt-get install gcc-arm-none-eabi gcc-arm-linux-gnueabi
After installing, make progressed further, but I am now getting a make: /opt/hi3798/arm-hisiv200-linux/bin/arm-hisiv20/opt/hi3798/arm-hisiv200-linux/bin/arm-hisiv200-linux-gnueabi-gcc: Command not found error.
Installing ia32-libs hasn't helped.
1
This is not the full driver, so even though it is able to display static images, something else is needed for it to work with display managers etc: github.com/FrescoLogic/FL2000/issues/12
â prusswan
Jul 6 at 5:13
Just a heads up to KDE users, during my installing and uninstalling of drivers to get this proof of concept working I lost the ability to grab and resize windows. Apparentlykwingot uninstalled somewhere along the way;sudo apt install kwinfixed it.
â virtualxtc
Jul 6 at 6:32
1
BTW, one good way to identify USB devices is to look at the vendor and device id (vialsusbordmesg) and then google in the form1234:5678. Unbranded devices in particular often just keep the ids of the generic chips.
â dirkt
Jul 6 at 6:41
add a comment |Â
up vote
2
down vote
up vote
2
down vote
Telling the full story so all the keywords will be included in my response for future searchablity:
I've been looking everywhere for a driver or chipset info for the unbranded "Mini HD USB 3.0 HDMI Adapter" for years. I finally dug though enough duck duck go results to find a page that claims it uses the Fresco logic USB display driver, which brought me here.
I was able to get the driver to work using Linux Mint 18.2 "Sonya" with linux-headers-4.13.0-45-generic, but the instructions on git hub were not perfect.
- Clone the repository
git clone https://github.com/FrescoLogic/FL2000.git(If you don't have git installed you can install it withsudo apt install git) - Navigate to src:
cd FL2000/src/ - Run
make(contrary to the instructions, you don't need to editKERNEL_PATHas the bug was fixed) - Insert the module
sudo insmod f12000.ko - Change to sample
cd ../sample/ - Run
make(I got an error here, but was able to test the driver and see an image despite the error) - Run
sudo ./fltest 0
This crashed the first time I ran it but worked when I re-ran it a second time. Running it a 3rd time, it hangs my system.
Rebooting with the device plugged into the USB port seems to help. It will work at first launch. However, during shutdown my system is unable to disconnect from it's built in RAMDrive and will hang, ctrl-alt-del will move it a few steps further, but then it hangs again forcing me to do a hard shutdown.
I'm not sure if fixing the error when running make in the sample directory make: /opt/hi3798/arm-hisiv200-linux/bin/arm-hisiv200-linux-gnueabi-gcc: Command not found would make this any more stable.
I googled and came across this thread saying I "need to add head file <sys/ioctl.h>" -- I didn't know how to do that so I followed the recommendation in this thread mentioning I should install some gcc packages:
sudo apt-get install gcc-arm-none-eabi gcc-arm-linux-gnueabi
After installing, make progressed further, but I am now getting a make: /opt/hi3798/arm-hisiv200-linux/bin/arm-hisiv20/opt/hi3798/arm-hisiv200-linux/bin/arm-hisiv200-linux-gnueabi-gcc: Command not found error.
Installing ia32-libs hasn't helped.
Telling the full story so all the keywords will be included in my response for future searchablity:
I've been looking everywhere for a driver or chipset info for the unbranded "Mini HD USB 3.0 HDMI Adapter" for years. I finally dug though enough duck duck go results to find a page that claims it uses the Fresco logic USB display driver, which brought me here.
I was able to get the driver to work using Linux Mint 18.2 "Sonya" with linux-headers-4.13.0-45-generic, but the instructions on git hub were not perfect.
- Clone the repository
git clone https://github.com/FrescoLogic/FL2000.git(If you don't have git installed you can install it withsudo apt install git) - Navigate to src:
cd FL2000/src/ - Run
make(contrary to the instructions, you don't need to editKERNEL_PATHas the bug was fixed) - Insert the module
sudo insmod f12000.ko - Change to sample
cd ../sample/ - Run
make(I got an error here, but was able to test the driver and see an image despite the error) - Run
sudo ./fltest 0
This crashed the first time I ran it but worked when I re-ran it a second time. Running it a 3rd time, it hangs my system.
Rebooting with the device plugged into the USB port seems to help. It will work at first launch. However, during shutdown my system is unable to disconnect from it's built in RAMDrive and will hang, ctrl-alt-del will move it a few steps further, but then it hangs again forcing me to do a hard shutdown.
I'm not sure if fixing the error when running make in the sample directory make: /opt/hi3798/arm-hisiv200-linux/bin/arm-hisiv200-linux-gnueabi-gcc: Command not found would make this any more stable.
I googled and came across this thread saying I "need to add head file <sys/ioctl.h>" -- I didn't know how to do that so I followed the recommendation in this thread mentioning I should install some gcc packages:
sudo apt-get install gcc-arm-none-eabi gcc-arm-linux-gnueabi
After installing, make progressed further, but I am now getting a make: /opt/hi3798/arm-hisiv200-linux/bin/arm-hisiv20/opt/hi3798/arm-hisiv200-linux/bin/arm-hisiv200-linux-gnueabi-gcc: Command not found error.
Installing ia32-libs hasn't helped.
edited Jul 6 at 6:43
answered Jul 6 at 3:20
virtualxtc
564621
564621
1
This is not the full driver, so even though it is able to display static images, something else is needed for it to work with display managers etc: github.com/FrescoLogic/FL2000/issues/12
â prusswan
Jul 6 at 5:13
Just a heads up to KDE users, during my installing and uninstalling of drivers to get this proof of concept working I lost the ability to grab and resize windows. Apparentlykwingot uninstalled somewhere along the way;sudo apt install kwinfixed it.
â virtualxtc
Jul 6 at 6:32
1
BTW, one good way to identify USB devices is to look at the vendor and device id (vialsusbordmesg) and then google in the form1234:5678. Unbranded devices in particular often just keep the ids of the generic chips.
â dirkt
Jul 6 at 6:41
add a comment |Â
1
This is not the full driver, so even though it is able to display static images, something else is needed for it to work with display managers etc: github.com/FrescoLogic/FL2000/issues/12
â prusswan
Jul 6 at 5:13
Just a heads up to KDE users, during my installing and uninstalling of drivers to get this proof of concept working I lost the ability to grab and resize windows. Apparentlykwingot uninstalled somewhere along the way;sudo apt install kwinfixed it.
â virtualxtc
Jul 6 at 6:32
1
BTW, one good way to identify USB devices is to look at the vendor and device id (vialsusbordmesg) and then google in the form1234:5678. Unbranded devices in particular often just keep the ids of the generic chips.
â dirkt
Jul 6 at 6:41
1
1
This is not the full driver, so even though it is able to display static images, something else is needed for it to work with display managers etc: github.com/FrescoLogic/FL2000/issues/12
â prusswan
Jul 6 at 5:13
This is not the full driver, so even though it is able to display static images, something else is needed for it to work with display managers etc: github.com/FrescoLogic/FL2000/issues/12
â prusswan
Jul 6 at 5:13
Just a heads up to KDE users, during my installing and uninstalling of drivers to get this proof of concept working I lost the ability to grab and resize windows. Apparently
kwin got uninstalled somewhere along the way; sudo apt install kwin fixed it.â virtualxtc
Jul 6 at 6:32
Just a heads up to KDE users, during my installing and uninstalling of drivers to get this proof of concept working I lost the ability to grab and resize windows. Apparently
kwin got uninstalled somewhere along the way; sudo apt install kwin fixed it.â virtualxtc
Jul 6 at 6:32
1
1
BTW, one good way to identify USB devices is to look at the vendor and device id (via
lsusb or dmesg) and then google in the form 1234:5678. Unbranded devices in particular often just keep the ids of the generic chips.â dirkt
Jul 6 at 6:41
BTW, one good way to identify USB devices is to look at the vendor and device id (via
lsusb or dmesg) and then google in the form 1234:5678. Unbranded devices in particular often just keep the ids of the generic chips.â dirkt
Jul 6 at 6:41
add a comment |Â
up vote
0
down vote
Is anyone getting this error?
sudo insmod fl2000.ko
[sudo] password for *********11:
insmod: ERROR: could not insert module fl2000.ko: Required key not available
New contributor
Jobin Thomas is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |Â
up vote
0
down vote
Is anyone getting this error?
sudo insmod fl2000.ko
[sudo] password for *********11:
insmod: ERROR: could not insert module fl2000.ko: Required key not available
New contributor
Jobin Thomas is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |Â
up vote
0
down vote
up vote
0
down vote
Is anyone getting this error?
sudo insmod fl2000.ko
[sudo] password for *********11:
insmod: ERROR: could not insert module fl2000.ko: Required key not available
New contributor
Jobin Thomas is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Is anyone getting this error?
sudo insmod fl2000.ko
[sudo] password for *********11:
insmod: ERROR: could not insert module fl2000.ko: Required key not available
New contributor
Jobin Thomas is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Jobin Thomas is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
answered 7 mins ago
Jobin Thomas
1
1
New contributor
Jobin Thomas is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Jobin Thomas is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Jobin Thomas is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f386485%2fhow-to-properly-install-usb-display-driver-for-fresco-logic-fl2000dx-on-ubuntu%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password