kellnerp
Mechanical
- Feb 11, 2005
- 1,141
I had to do a presentation last night. I use randr to run my projector and it has worked fine for static screens. However, I had to show a video clip and fortunately I did a dry run. The video showed up as a black rectangle on the projector.
Fortunately there was a solution that was pretty simple.
This command gave me:
This determines the device my machine thinks is the projector screen.
Then I just had to do this:
Which assumes the previous command told me my projector screen was LVDS with a dimension of 1024x768.
I could have used the S-Video cable if I was using my TV as an output device too.
xrandr is a package I loaded previously to enable the external monitor on my laptop.
BTW, this was done on jaunty jackalope. Your mileage may vary on other versions.
TOP
CSWP, BSSE
Phenom IIx6 1100T = 8GB = FX1400 = XP64SP2 = SW2009SP3
"Node news is good news."
Fortunately there was a solution that was pretty simple.
Code:
xrandr -q
This command gave me:
Code:
Screen 0: minimum 320 x 200, current 1024 x 768, maximum 2048 x 768
VGA-0 disconnected (normal left inverted right x axis y axis)
DVI-0 disconnected (normal left inverted right x axis y axis)
LVDS connected 1024x768+0+0 (normal left inverted right x axis y axis) 286mm x 214mm
1024x768 60.0*+ 60.0
800x600 59.9
640x480 59.4
S-video disconnected (normal left inverted right x axis y axis)
This determines the device my machine thinks is the projector screen.
Then I just had to do this:
Code:
xrandr --addmode LVDS 1024x768
xrandr --output LVDS --mode 1024x768
I could have used the S-Video cable if I was using my TV as an output device too.
xrandr is a package I loaded previously to enable the external monitor on my laptop.
Code:
sudo apt-get install xrandr
TOP
CSWP, BSSE
Phenom IIx6 1100T = 8GB = FX1400 = XP64SP2 = SW2009SP3
"Node news is good news."