Gentoo Archives: gentoo-user

From: Harry Putnam <reader@×××××××.com>
To: gentoo-user@l.g.o
Subject: [gentoo-user] Re: scrapping hal
Date: Sat, 30 Oct 2010 14:41:26
Message-Id: 87pqurd9ry.fsf@newsguy.com
In Reply to: Re: [gentoo-user] Re: scrapping hal by Paul Colquhoun
1 Paul Colquhoun <paulcol@×××××××××××××××××.au> writes:
2
3 > On Thu, 28 Oct 2010 14:54:51 Harry Putnam wrote:
4 >> Paul Hartman <paul.hartman+gentoo@×××××.com> writes:
5 >> > On Wed, Oct 27, 2010 at 4:06 PM, Harry Putnam <reader@×××××××.com> wrote:
6 >> >> I'm also guessing there is some kind of replacement that I need to
7 >> >> learn about if it effects my longtime reliance on xorg.conf to keep
8 >> >> using my huge desktops I like to use. For yrs I've
9 >> >> used.
10 >> >>
11 >> >> Subsection "Display"
12 >> >> Depth 24
13 >> >> Modes "1280x1024" #"1024x768" "800x600" "640x480"
14 >> >> Virtual 2048 1536
15 >> >> ViewPort 0 0
16 >> >> EndSubsection
17 >> >> EndSection
18 >> >>
19 >> >> in /etc/X11/xorg.conf
20 >> >> To get a 2048x1536 desktop to flop around on.
21 >> >>
22 >> >> I've never seen or heard of a way to get that without using xorg.conf.
23 >> >
24 >> > I think you would use xrandr to set it, or your desktop environment's
25 >> > GUI settings panel (or equivalent).
26 >>
27 >> I may be using xrandr wrong but it doesn't do the trick used like
28 >> this:
29 >>
30 >> I'm running an `emerge world' so didn't want to close down X so I used
31 >> Ctrl-alt F1 to leave X and then Ctrl-alt F2 to login on a different
32 >> virtual terminal.
33 >>
34 >> Then commented out the `Virtual' line in xorg.conf:
35 >>
36 >> EndSubsection
37 >> Subsection "Display"
38 >> Depth 24
39 >> Modes "1280x1024" #"1024x768" "800x600" "640x480"
40 >> # Virtual 2048 1536
41 >> ViewPort 0 0
42 >> EndSubsection
43 >> EndSection
44 >>
45 >>
46 >> Then startx on a different display.
47 >>
48 >> startx -- :1
49 >>
50 >> Once X is up:
51 >>
52 >> xrandr <no args>
53 >> shows 1280x1024 as being the highest resolution.
54 >>
55 >>
56 >> xrandr -s 2048x1536 shows:
57 >>
58 >> Size 2048x1536 not found in available modes
59 >>
60 >> The xfce display setting tool also shows 1280 as the highest possible
61 >> setting.
62 >>
63 >> I've asked before where else this might be set... in more than 1
64 >> forum. I think you may find its not all that easy to set a Resolution
65 >> way higher than your card supports.
66 >
67 >
68 > Did you look at the man page for xrandr?
69
70 Yes, but failed to notice that long complex command
71
72 I saw -s <size> and thought I'd found the right switch.
73
74 > I think you need the "--fb" & "--panning" options. There is even an example
75 > towards the end of the man page.
76
77 I guess you mean this monstrosity?
78
79 Have one small 1280x800 LVDS screen showing a small version of a huge
80 3200x2000 desktop, and have a big VGA screen display the surrounding of
81 the mouse at normal size.
82 xrandr --fb 3200x2000 --output LVDS --scale 2.5x2.5 --output VGA
83 --pos 0x0 --panning 3200x2000+0+0/3200x2000+0+0/64/64/64/64
84
85
86 Thanks... I'll try that