LinuxQuestions.org
Visit Jeremy's Blog.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Server
User Name
Password
Linux - Server This forum is for the discussion of Linux Software used in a server related context.

Notices


Reply
  Search this Thread
Old 02-10-2008, 06:09 PM   #16
Pyro In A Cage
LQ Newbie
 
Registered: Feb 2006
Posts: 18

Original Poster
Rep: Reputation: 0

liquidfx is running windows, not linux. It won't work for some reason.

Quote:
skyler@bench ~ $ scp skyler@bench:/etc/X11/xorg.conf C:
ssh: bench: Name or service not known
 
Old 02-10-2008, 09:51 PM   #17
JimBass
Senior Member
 
Registered: Oct 2003
Location: New York City
Distribution: Debian Sid 2.6.32
Posts: 2,100

Rep: Reputation: 49
Well you can't run the scp command from linux to windows, because you need a ssh server running to use scp. You could issue the command from liquidfx, while ssh'd into bench, but not from bench to liquidfx.

Here's a windows scp client that should allow you to copy files from the bench to your windows machine.

http://winscp.net/eng/index.php

Peace,
JimBass
 
Old 02-11-2008, 02:24 AM   #18
Pyro In A Cage
LQ Newbie
 
Registered: Feb 2006
Posts: 18

Original Poster
Rep: Reputation: 0
That's what I'm trying to do. I'm ssh'd into bench, from liquidfx.

But okay I'll get that scp client.


And thanks for helping me btw.
 
Old 02-11-2008, 01:54 PM   #19
JimBass
Senior Member
 
Registered: Oct 2003
Location: New York City
Distribution: Debian Sid 2.6.32
Posts: 2,100

Rep: Reputation: 49
No problem for the help.

The scp command is not done from within a ssh session, it is done outside of it. That command was not to be issued from the bench, but from liquidfx. Once you said liquidfx was windows and not linux, that forces you to use that winscp program.

Peace,
JimBass
 
Old 02-11-2008, 08:58 PM   #20
Pyro In A Cage
LQ Newbie
 
Registered: Feb 2006
Posts: 18

Original Poster
Rep: Reputation: 0
Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
RgbPath "/usr/share/X11/rgb"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts/misc/"
FontPath "/usr/share/fonts/TTF/"
FontPath "/usr/share/fonts/OTF"
FontPath "/usr/share/fonts/Type1/"
FontPath "/usr/share/fonts/100dpi/"
FontPath "/usr/share/fonts/75dpi/"
EndSection

Section "Module"
Load "GLcore"
Load "dbe"
Load "glx"
Load "extmod"
Load "dri"
Load "xtrap"
Load "record"
Load "freetype"
Load "type1"
EndSection

Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
EndSection

Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
#DisplaySize 400 300 # mm
Identifier "Monitor0"
VendorName "DEL"
ModelName "DELL P1130"
### Comment all HorizSync and VertRefresh values to use DDC:
HorizSync 30.0 - 130.0
VertRefresh 48.0 - 170.0
Option "DPMS"
EndSection

Section "Device"
### Available Driver options are:-
### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
### [arg]: arg optional
#Option "NoAccel" # [<bool>]
#Option "SWcursor" # [<bool>]
#Option "ColorKey" # <i>
#Option "CacheLines" # <i>
#Option "Dac6Bit" # [<bool>]
#Option "DRI" # [<bool>]
#Option "NoDDC" # [<bool>]
#Option "ShowCache" # [<bool>]
#Option "XvMCSurfaces" # <i>
#Option "PageFlip" # [<bool>]
Identifier "Card0"
Driver "vesa" #intel
VendorName "Intel Corporation"
BoardName "82815 CGC [Chipset Graphics Controller]"
BusID "PCI:0:2:0"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
SubSection "Display"
Viewport 0 0
Depth 1
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 4
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 8
EndSubSection
# SubSection "Display"
# Viewport 0 0
# Depth 15
# EndSubSection
# SubSection "Display"
# Viewport 0 0
# Depth 16
# EndSubSection
# SubSection "Display"
# Viewport 0 0
# Depth 24
# EndSubSection
EndSection
 
Old 02-12-2008, 10:44 PM   #21
JimBass
Senior Member
 
Registered: Oct 2003
Location: New York City
Distribution: Debian Sid 2.6.32
Posts: 2,100

Rep: Reputation: 49
I don't see anything troubling in that file. I'm far from being an expert at the way xorg.conf should look though. I don't see where that AIGLX error is coming from.

Peace,
JimBass
 
Old 02-13-2008, 11:17 AM   #22
Pyro In A Cage
LQ Newbie
 
Registered: Feb 2006
Posts: 18

Original Poster
Rep: Reputation: 0
Shit...I dunno what to do. :\

Well thanks for trying man
 
Old 02-13-2008, 11:29 AM   #23
farslayer
LQ Guru
 
Registered: Oct 2005
Location: Northeast Ohio
Distribution: linuxdebian
Posts: 7,249
Blog Entries: 5

Rep: Reputation: 191Reputation: 191
Code:
Section "Module"
        Load    "bitmap"
        Load    "ddc"
#        Load    "dri"
        Load    "extmod"
        Load    "freetype"
        Load    "glx"
        Load    "int10"
        Load    "vbe"
EndSection
If the screen is not dri capable, try commenting out the Load "dri" line in the config.


AIGLX - Accelerated Indirect GLX - allows accelerated indirect GLX rendering capabilities to X.Org and DRI drivers. For use with nvidia, ATI, and Intel GPU's

Last edited by farslayer; 02-13-2008 at 01:05 PM.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
startx command not found Deelk Debian 3 04-08-2006 05:22 AM
Debian startx Fatal Error : Failed to initialize core devices TextBrowserAddict Debian 2 08-21-2005 10:42 PM
startX 'command not found' ? phil81 Debian 20 01-05-2005 08:59 AM
startx not found xibitz Linux - Newbie 9 08-09-2004 12:49 PM
startx command not found desluscious Linux - Newbie 6 08-25-2003 06:57 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Server

All times are GMT -5. The time now is 02:59 AM.

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