Using a LilyPad USB on a Linux machine with CentOs

I am running CentOs 6.6.
I am trying to be able to upload code to a LilyPad USB microcontroller. I have the arduino software downloaded. I have also installed the drivers from here VCP Drivers - FTDI. My computer seems to be recognizing the LilyPad USB board. I have attached a text file that shows the results of the lsusb command on the right bus and device of my usb bus. I have also forwarded the port using the command sudo ln -sf /dev/bus/usb/002/003 /dev/ttyUSB1.
When I do this, and run the arduino software in sudo mode, the software seems to recognize the board as well. I have included a picture of what I see in the software.
But when I try to upload the code to the board, I get an error like this:

avrdude: ser_open(): can't set attributes for device "/dev/ttyUSB1" : Inappropriate ioctl for device
ioctl("TIOCMGET"): Bad file descriptor

I have looked up a few answers and have tried them, but nothing has worked.
I tried adding my user account to the dialout group

I have also tried to use a windows machine running windows 7. I am able to get that to work fine, but I would prefer to use my linux computer because the windows machine is not mine.

Do you have any suggestions of things that I could try doing to fix this problem?

usb23info.txt (3.28 KB)

Sorry, the picture I talked about was too big. Here is a screenshot of what I can see in my Arduino enviornment.

Try this.
http://playground.arduino.cc/Linux/CentOS6

If no joy look at.
http://playground.arduino.cc/Linux/Fedora

You will also need to belong to the group that has access to /dev/ttyACM?, on ubuntu that is dialout on centOS who knows. The Lillypad does not resolve as /dev/ttyUSB?. With the lillypad plugged in run ls -l /dev/ttyACM? that should show the owner (root) and the group (those are lowercase L's by the way).

Thank you for your help. I tried what you said, but I couldn't get it to work. I had the same errors. I just gave up and I am using one of my old windows laptops and it is working fine. Thank you!