Sponsored Content
Operating Systems Linux dual head setup for laptop in docking station Post 302258305 by osulinux on Friday 14th of November 2008 10:02:53 AM
Old 11-14-2008
dual head setup for laptop in docking station

I have a thinkpad laptop which I run in a docking station at work. I have two LCD monitors, unfortunately one is wide screen and the other isn't. I want to get dual head working, but have not been successful. I've verified the setup works in Windows so its not a HW issue.

Here is my latest attempt at xorg.conf:
Code:
  1 # 
  2 
  3 Section "ServerLayout"
  4     Identifier     "Default Layout"
  5     Screen         "Screen0"
  6     Screen         "Screen1" RightOf "Screen0"
  7     InputDevice    "Keyboard0" "CoreKeyboard"
  8     Option         "xinerama" "on"
  9     #Option        "clone" "off"
 10 EndSection
 11 
 12 Section "InputDevice"
 13 # keyboard added by rhpxl
 14     Identifier  "Keyboard0"
 15     Driver      "kbd"
 16     Option      "XkbModel" "pc105"
 17     Option      "XkbLayout" "us"
 18 EndSection
 19 
 20 Section "Device"
 21     Identifier  "Videocard0"
 22     Driver      "intel"
 23     #BusID      "PCI:00:02.0"
 24         Screen 0
 25 EndSection
 26 
 27 Section "Device"
 28     Identifier "Videocard1"
 29         Driver     "intel"
 30     #BusID     "PCI:00:02.1"
 31     Screen 1
 32 EndSection
 33 
 34 Section "Monitor"
 35     Identifier "Monitor0"
 36 EndSection
 37 
 38 Section "Monitor"
 39     Identifier "Monitor1"
 40 EndSection
 41 
 42 Section "Screen"
 43     Identifier "Screen0"
 44     Device     "Videocard0"
 45     DefaultDepth     24
 46     SubSection "Display"
 47         Viewport   0 0
 48         Depth     24
 49        # Modes "1440x900"
 50     EndSubSection
 51 EndSection
 52 
 53 Section "Screen"
 54     Identifier "Screen1"
 55     Device     "Videocard1"
 56     DefaultDepth     24
 57     SubSection "Display"
 58         Viewport   0 0
 59         Depth     24
 60        # Modes "1280x1024"
 61     EndSubSection
 62 EndSection

 

8 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

redhat 7.2 dual head video card

HI. i have two monitor and two video card in one system, i want use both of the monitor, i am currently using redhat 7.2 and solaris 8, i was wondering if someone can help me set my system as a dual monitor, basically it called dual head in redhat but i dont' know what it called in sun. Im tring... (4 Replies)
Discussion started by: souldier
4 Replies

2. UNIX for Dummies Questions & Answers

18Gb HD with Sparc Station 5 ?

Hello all, A quick question on Sparc Station 5. Can I use 18GB hard disk with Sparc Station 5 ?. I searched sunsolve documentation. It gives info only upto 4.2 GB for sparcstaton 5. The OS is SunOS 5.5.1 Thank You, (3 Replies)
Discussion started by: shibz
3 Replies

3. Shell Programming and Scripting

find station from where is logged in

for secure access purposes I want to know where somebody logs in working in K shell I have who am i= giving user and terminal =gxb pts/4 Jan 22 15:0 finger user => gives all sessions of user = Login name: gxb Directory: /home/gxb ... (17 Replies)
Discussion started by: ghislain
17 Replies

4. UNIX Desktop Questions & Answers

CDE: Docking menu in front panel.

Hi community, Situation: at work I maintain the CDE dtRootMenu for our team. It holds all the different machines, divided in submenu's for development / acceptance / production and within each submenu several defined ssh sessions to said machines. From a centralised server, they push a CDE... (1 Reply)
Discussion started by: spufi
1 Replies

5. Ubuntu

Connect 2 laptops with RJ45 cable (Ubuntu 10.10 laptop with Windows 7 laptop)

Hi to all, I have the problem that a laptops with windows XP cannot startup even in safe mode nor using last good known configuration. I have a Ubuntu 10.10 Live CD and booting from it I can read the Hard Drive. I need to do a backup the Hard Drive from XP laptop and I want to connect this... (5 Replies)
Discussion started by: cgkmal
5 Replies

6. Hardware

Fedora 16 dual monitor - dual head - automatic monitor shutdown

Hi, I am experiencing troubles with dual monitors in fedora 16. During boot time both monitors are working, but when system starts one monitor automatically shut down. It happend out of the blue. Some time before when I updated system this happend but then I booted older kernel release and... (0 Replies)
Discussion started by: wakatana
0 Replies

7. What is on Your Mind?

Home broadcasting station

Hi all, I have been searching application for setup a home broadcasting station via Internet. Follows are my search result; Freevo, GeeXboX, Auto-RadioX, Red5, CeBIT, Open Broadcaster etc. I haven't had any experience on their selection. Please shed me some light. Besides where can I find... (3 Replies)
Discussion started by: satimis
3 Replies

8. Ubuntu

Laptop to laptop transfer files

Dear all, I would like to transfer my old laptop documents/files etc to the new laptop without using any external hard disk. Please let me know if its possible via any way. Thank in advance, emily (3 Replies)
Discussion started by: emily
3 Replies
GET_ROBUST_LIST(2)						Linux System Calls						GET_ROBUST_LIST(2)

NAME
get_robust_list, set_robust_list - get/set list of robust futexes SYNOPSIS
#include <linux/futex.h> #include <sys/types.h> #include <syscall.h> long get_robust_list(int pid, struct robust_list_head **head_ptr, size_t *len_ptr); long set_robust_list(struct robust_list_head *head, size_t len); Note: There are no glibc wrappers for these system calls; see NOTES. DESCRIPTION
The robust futex implementation needs to maintain per-thread lists of robust futexes which are unlocked when the thread exits. These lists are managed in user space; the kernel is notified about only the location of the head of the list. The get_robust_list() system call returns the head of the robust futex list of the thread whose thread ID is specified in pid. If pid is 0, the head of the list for the calling thread is returned. The list head is stored in the location pointed to by head_ptr. The size of the object pointed to by **head_ptr is stored in len_ptr. The set_robust_list() system call requests the kernel to record the head of the list of robust futexes owned by the calling thread. The head argument is the list head to record. The len argument should be sizeof(*head). RETURN VALUE
The set_robust_list() and get_robust_list() system calls return zero when the operation is successful, an error code otherwise. ERRORS
The set_robust_list() system call can fail with the following error: EINVAL len does not match the size of structure struct robust_list_head expected by kernel. The get_robust_list() system call can fail with the following errors: EPERM The calling process does not have permission to see the robust futex list of the thread with the thread ID pid, and does not have the CAP_SYS_PTRACE capability. ESRCH No thread with the thread ID pid could be found. EFAULT The head of the robust futex list can't be stored at the location head. VERSIONS
These system calls were added in Linux 2.6.17. NOTES
These system calls are not needed by normal applications. No support for them is provided in glibc. In the unlikely event that you want to call them directly, use syscall(2). A thread can have only one robust futex list; therefore applications that wish to use this functionality should use the robust mutexes pro- vided by glibc. SEE ALSO
futex(2) Documentation/robust-futexes.txt and Documentation/robust-futex-ABI.txt in the Linux kernel source tree Linux 2015-01-22 GET_ROBUST_LIST(2)
All times are GMT -4. The time now is 05:02 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy