LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 05-10-2003, 03:55 AM   #1
numismaati
LQ Newbie
 
Registered: May 2003
Location: munich/germany
Distribution: suse 8.2
Posts: 6

Rep: Reputation: 0
rdesktop error message


when trying to start rdesktop with this commandline

rdesktop -u password -g 1024x768+0+0 www.xyz.de

i get the following message:

ERROR: Less than 8 bpp not currently supported.

I did already search in google/groups about that problem but did not get a solution to that problem. Can someone help me, please?


Numismaati
 
Old 05-13-2003, 12:24 PM   #2
trickykid
LQ Guru
 
Registered: Jan 2001
Posts: 24,149

Rep: Reputation: 269Reputation: 269Reputation: 269
Well basically from your command to connect with, you specify the resolution but it appears your not specifying a default color depth. That's why its telling you 8bpp is not supported. Try specifying the default depth instead of most likely using 0.

I'm not familiar of have never used rdesktop but if you type a rdesktop -? it will give you some command line options on where to put the default depth in your command line option.
 
Old 06-03-2003, 07:48 AM   #3
desolat
LQ Newbie
 
Registered: May 2003
Location: Florida
Distribution: suse 10.1
Posts: 23

Rep: Reputation: 15
I have the same exact problem. There's a msg on rdesktops mailing list about it with no replies almost a month old too. The options list isn't all that long nor complicated, but no matter what you use, it always gives you that error. I am running SuSE 8.2 also. I've changed my KDE desktop bit depth around alot to no avail. Also used the geometry option "workarea" which fetches the proper geometry from the system. The 2000 server event viewer from TermServDevices says:

Driver CAPTURE FAX BVRP required for printer CAPTURE FAX BVRP is unknown. Contact the Administrator to install the driver before you log in again.

These messages exactly coincide with my login attempts with rdesktop, and there are no other TermSvcs messages at all. I think what I will try next is to try and find any drivers or options from the 2000 install CD that refer to anything to do with "capture fax bvrp" and install them, then try again I guess. What do any of you gurus think?

Any takers?
 
Old 06-03-2003, 03:22 PM   #4
desolat
LQ Newbie
 
Registered: May 2003
Location: Florida
Distribution: suse 10.1
Posts: 23

Rep: Reputation: 15
Nope, my bad, it appears that TermSvcs event is a random thing, just started today though... hmmmm

Well still having the same issue then with no resolution...
 
Old 07-20-2003, 10:51 PM   #5
Gjallis
LQ Newbie
 
Registered: Jun 2003
Distribution: SuSE Linux 8.2
Posts: 10

Rep: Reputation: 0
AUGH

I have the same problem as well. I believe it would help us all greatly if there was some documentation, or just someone to help out. Thanks anybody!
 
Old 07-21-2003, 07:33 AM   #6
desolat
LQ Newbie
 
Registered: May 2003
Location: Florida
Distribution: suse 10.1
Posts: 23

Rep: Reputation: 15
ya know, I wiped SuSE8.2 and went with RH9 and it installs a working copy of SOMETHING that uses the M$ rdesktop protocol. I can't remember right now but I think it was this program, only they configured it properly and it is just a menu shortcut in my KDE menu. It appears it is using 256 colors, or maybe even 16. It may just be a magical color or resolution setting that it wants to see. I will try to look at the link and tell you what it says. I am on a windoze desktop at work right now. Remind me if you don't hear from me for awhile-- if u post in here, I have the email notification on, so I will see you posted.
 
Old 09-02-2003, 11:57 AM   #7
numismaati
LQ Newbie
 
Registered: May 2003
Location: munich/germany
Distribution: suse 8.2
Posts: 6

Original Poster
Rep: Reputation: 0
Hi desolat!

did you come across a solution for our problem in the meantinme??
 
Old 09-02-2003, 04:58 PM   #8
desolat
LQ Newbie
 
Registered: May 2003
Location: Florida
Distribution: suse 10.1
Posts: 23

Rep: Reputation: 15
RH9 installed a program called tsclient. It is a GUI front-end for rdesktop and vncviewer. Basically with the default options of tsclient set up, it worked first time! Also works under Mandrake 9.1, although I had to install it in that distro. http://www.gnomepro.com/tsclient/
Go get it, install it, and you can play with the settings on it in a GUI interface much quicker than the command line options of rdesktop, PLUS as I said before, with it's default options, it worked for me first time in both RH9 and MDK9.1
 
Old 10-12-2003, 07:08 AM   #9
Sohni
Member
 
Registered: Sep 2003
Location: Planet Earth
Distribution: SuSE Linux 9.0
Posts: 83

Rep: Reputation: 15
People have created several fixes for that problem.

One of them is available by adamh at densi dot com at:
http://gcc.gnu.org/ml/gcc-bugs/2003-02/msg00611.html

Find following lines from xwin.c

pfm = XListPixmapFormats(display, &i);
if (pfm != NULL)
{
/* Use maximum bpp for this depth - this is generally
desirable, e.g. 24 bits->32 bits. */
while (i--)
{
if ((pfm[i].depth == depth) && (pfm[i].bits_per_pixel > bpp))
{
bpp = pfm[i].bits_per_pixel;
}
}
XFree(pfm);
}

if (bpp < 8)
{
error("Less than 8 bpp not currently supported.\n");
XCloseDisplay(display);
return False;
}

Add two lines into that text:

/* Use maximum bpp for this depth - this is generally
desirable, e.g. 24 bits->32 bits. */
+ warning("Real depth: %d, bpp: %d\n", depth, bpp);
while (i--)
{
+ warning("depth %d, bpp %d\n", pfm[i].depth, pfm[i].bits_per_pixel);
if ((pfm[i].depth == depth) && (pfm[i].bits_per_pixel > bpp))
{
bpp = pfm[i].bits_per_pixel;

It worked for me...

There is still one more solution available and it involves mostly in deleting 8bpp part from xwin.c. I cant't get my hands on it right now.
 
Old 11-11-2003, 05:22 AM   #10
Sohni
Member
 
Registered: Sep 2003
Location: Planet Earth
Distribution: SuSE Linux 9.0
Posts: 83

Rep: Reputation: 15
Disregard my previous post

It appear's that there is nothing wrong with rdesktop. It is properly written.

Problem is with gcc compiler in SuSE distribution.

I downloaded source code from www.rdesktop.org. Changed optimization level from O2 to O in makeconf:

CFLAGS = -DKEYMAP_PATH=\"$(KEYMAP_PATH)\" -Wall -O -I/usr/X11R6/include -DWITH_OPENSSL -DWITH_RDPSND

After that ./configure, make, make install and everything worked just fine.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
QMAIL error:554 Transaction failed: message format error mpk25 Linux - Software 1 10-15-2004 12:53 PM
error message when run MRTG: SNMP error zhgalaxy Linux - Newbie 0 02-18-2004 12:08 PM
why this error message is appear in xsession-error file? eye Red Hat 0 10-21-2003 07:51 AM
rdesktop error a_vijaysrinivas Linux - Networking 0 07-09-2003 07:28 AM
error message leeley Linux - Networking 3 02-03-2002 01:00 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking

All times are GMT -5. The time now is 08:20 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration