Discussion:
Ubuntu and RigBlaster Pro Not Keying
mrmarcgw-/E1597aS9LQAvxtiuMwx3w@public.gmane.org [linuxham]
2014-08-07 22:10:42 UTC
Permalink
Kind of at my whits end. Installed Ubuntu 14.04 Lts. Using a rigblaster pro I can't get the radio to key up. I suspect it's a cabling problen then again I don think so. I have used the windows setup with no problems. So this is what lead me hear. Also this is a USB to Serial converter as there is no serial port on the laptop. Any ideas?
using lsusb this is what I get.
Bus 005 Device 002: ID 067b:2303 Prolific Technology, Inc. PL2303 Serial Port

Thanks is advance

Marc
mrmarcgw-/E1597aS9LQAvxtiuMwx3w@public.gmane.org [linuxham]
2014-08-07 22:13:17 UTC
Permalink
I should have added using Fldigi.
Ian Bennett ibennett-m/5qDMzAQIgQrrorzV6ljw@public.gmane.org [linuxham]
2014-08-07 22:14:42 UTC
Permalink
Marc,
What is the output of:
lsmod | grep -i serial

Ian
VK1IAN
Post by mrmarcgw-/***@public.gmane.org [linuxham]
Kind of at my whits end. Installed Ubuntu 14.04 Lts. Using a rigblaster pro I can't get the radio to
key up. I suspect it's a cabling problen then again I don think so. I have used the windows setup
with no problems. So this is what lead me hear. Also this is a USB to Serial converter as there is
no serial port on the laptop. Any ideas?
using lsusb this is what I get.
Bus 005 Device 002: ID 067b:2303 Prolific Technology, Inc. PL2303 Serial Port
Thanks is advance
Marc
------------------------------------
Posted by: Ian Bennett <ibennett-m/***@public.gmane.org>
------------------------------------
Ian Bennett ibennett-m/5qDMzAQIgQrrorzV6ljw@public.gmane.org [linuxham]
2014-08-07 22:35:01 UTC
Permalink
Marc,
Additionally, if you don't see any output from the lsmod command, the usbserial kernel module
hasn't been loaded. First, you'll need to find where the driver is located:

locate ftdi_sio.ko

My Xubuntu 14.04 installation returns:

/lib/modules/3.11.0-19-generic/kernel/drivers/usb/serial/ftdi_sio.ko
/lib/modules/3.13.0-24-generic/kernel/drivers/usb/serial/ftdi_sio.ko

Note I have a couple of kernel versions on my laptop. For me (using the latest kernel), I'd execute:

sudo insmod /lib/modules/3.13.0-24-generic/kernel/drivers/usb/serial/ftdi_sio.ko

If this works, then edit /etc/modules (as root) and add a line that reads:

ftdi_sio

This will ensure the serial module is loaded at boot time, whether your USB serial device is
plugged in or not.
For some reason, the brains trust at Canonical decided to change the way udev works and my old
rules didn't work after I installed 13.10. My rules didn't work with 14.04 either :-(
The above method was the only way I could my USB devices (including my Garmin GPSMap 60CSx) to work.

Ian
VK1IAN

P.S. I'm going away for the weekend so won't be able to respond to any further emails for three days.
Post by mrmarcgw-/***@public.gmane.org [linuxham]
Kind of at my whits end. Installed Ubuntu 14.04 Lts. Using a rigblaster pro I can't get the radio to
key up. I suspect it's a cabling problen then again I don think so. I have used the windows setup
with no problems. So this is what lead me hear. Also this is a USB to Serial converter as there is
no serial port on the laptop. Any ideas?
using lsusb this is what I get.
Bus 005 Device 002: ID 067b:2303 Prolific Technology, Inc. PL2303 Serial Port
Thanks is advance
Marc
------------------------------------
Posted by: Ian Bennett <ibennett-m/***@public.gmane.org>
------------------------------------
Ed autek-Wuw85uim5zDR7s880joybQ@public.gmane.org [linuxham]
2014-08-07 22:56:32 UTC
Permalink
Post by Ian Bennett ibennett-m/***@public.gmane.org [linuxham]
Marc,
Additionally, if you don't see any output from the lsmod command, the
usbserial kernel module
locate ftdi_sio.ko
/lib/modules/3.11.0-19-generic/kernel/drivers/usb/serial/ftdi_sio.ko
/lib/modules/3.13.0-24-generic/kernel/drivers/usb/serial/ftdi_sio.ko
Note I have a couple of kernel versions on my laptop. For me (using the
sudo insmod
/lib/modules/3.13.0-24-generic/kernel/drivers/usb/serial/ftdi_sio.ko
ftdi_sio
This will ensure the serial module is loaded at boot time, whether your
USB serial device is
plugged in or not.
For some reason, the brains trust at Canonical decided to change the way
udev works and my old
rules didn't work after I installed 13.10. My rules didn't work with 14.04 either :-(
The above method was the only way I could my USB devices (including my
Garmin GPSMap 60CSx) to work.
Ian
VK1IAN
Why not do it the simple and accepted way...........Ian, your way off on
this.........

Open a terminal::

sudo adduser (yourusername) dialout

enter your password

log out and log back in.....problem solved.

We are now approaching 3 years with this problem. And this is the simple
direct way to solve it.

Ed W3NR

























------------------------------------
Posted by: Ed <autek-***@public.gmane.org>
------------------------------------
Ian Bennett ibennett-m/5qDMzAQIgQrrorzV6ljw@public.gmane.org [linuxham]
2014-08-07 23:06:55 UTC
Permalink
Forgot about that.
FWIW, adding the user to the dialout group won't load the driver. I had to do this to get my
RigExpert, picaxe USB interface and Garmin GPS to work.
As mentioned, the "load when device is plugged in" method I used to use using udev didn't work.
Post by Ed autek-***@public.gmane.org [linuxham]
Post by Ian Bennett ibennett-m/***@public.gmane.org [linuxham]
Marc,
Additionally, if you don't see any output from the lsmod command, the
usbserial kernel module
locate ftdi_sio.ko
/lib/modules/3.11.0-19-generic/kernel/drivers/usb/serial/ftdi_sio.ko
/lib/modules/3.13.0-24-generic/kernel/drivers/usb/serial/ftdi_sio.ko
Note I have a couple of kernel versions on my laptop. For me (using the
sudo insmod
/lib/modules/3.13.0-24-generic/kernel/drivers/usb/serial/ftdi_sio.ko
ftdi_sio
This will ensure the serial module is loaded at boot time, whether your
USB serial device is
plugged in or not.
For some reason, the brains trust at Canonical decided to change the way
udev works and my old
rules didn't work after I installed 13.10. My rules didn't work with 14.04 either :-(
The above method was the only way I could my USB devices (including my
Garmin GPSMap 60CSx) to work.
Ian
VK1IAN
Why not do it the simple and accepted way...........Ian, your way off on
this.........
sudo adduser (yourusername) dialout
enter your password
log out and log back in.....problem solved.
We are now approaching 3 years with this problem. And this is the simple
direct way to solve it.
Ed W3NR
------------------------------------
Posted by: Ian Bennett <ibennett-m/***@public.gmane.org>
------------------------------------
Geoff NW7GM geoff.nw7gm-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org [linuxham]
2014-08-08 00:20:01 UTC
Permalink
I have yet to see a modern kernel that doesn't load the ftdi or prolific
driver by default.

The most common problem with CAT/CI-V is the user not being in the dialout
group.

Geoff, NW7GM
Seattle, WA
CN87tr
Post by Ian Bennett ibennett-m/***@public.gmane.org [linuxham]
Forgot about that.
FWIW, adding the user to the dialout group won't load the driver. I had to
do this to get my
RigExpert, picaxe USB interface and Garmin GPS to work.
As mentioned, the "load when device is plugged in" method I used to use
using udev didn't work.
Post by Ed autek-***@public.gmane.org [linuxham]
Post by Ian Bennett ibennett-m/***@public.gmane.org [linuxham]
Marc,
Additionally, if you don't see any output from the lsmod command, the
usbserial kernel module
hasn't been loaded. First, you'll need to find where the driver is
locate ftdi_sio.ko
/lib/modules/3.11.0-19-generic/kernel/drivers/usb/serial/ftdi_sio.ko
/lib/modules/3.13.0-24-generic/kernel/drivers/usb/serial/ftdi_sio.ko
Note I have a couple of kernel versions on my laptop. For me (using the
sudo insmod
/lib/modules/3.13.0-24-generic/kernel/drivers/usb/serial/ftdi_sio.ko
If this works, then edit /etc/modules (as root) and add a line that
ftdi_sio
This will ensure the serial module is loaded at boot time, whether your
USB serial device is
plugged in or not.
For some reason, the brains trust at Canonical decided to change the way
udev works and my old
rules didn't work after I installed 13.10. My rules didn't work with 14.04 either :-(
The above method was the only way I could my USB devices (including my
Garmin GPSMap 60CSx) to work.
Ian
VK1IAN
Why not do it the simple and accepted way...........Ian, your way off on
this.........
sudo adduser (yourusername) dialout
enter your password
log out and log back in.....problem solved.
We are now approaching 3 years with this problem. And this is the simple
direct way to solve it.
Ed W3NR
Ed autek-Wuw85uim5zDR7s880joybQ@public.gmane.org [linuxham]
2014-08-08 03:13:13 UTC
Permalink
Post by Ian Bennett ibennett-m/***@public.gmane.org [linuxham]
Forgot about that.
FWIW, adding the user to the dialout group won't load the driver. I had
to do this to get my
RigExpert, picaxe USB interface and Garmin GPS to work.
As mentioned, the "load when device is plugged in" method I used to use
using udev didn't work.
Then why did you even bother to bring it up ??????

Ed W3NR



------------------------------------
Posted by: Ed <autek-***@public.gmane.org>
------------------------------------

Loading...