Intel Video Linux: Difference between revisions

From Hack Sphere Labs Wiki
Jump to navigation Jump to search
Created page with "*https://wiki.archlinux.org/index.php/Intel_Graphics *https://wiki.archlinux.org/index.php/Framebuffer v86d =X= cd /etc/X11/xorg.conf.d/ nano 20-intel.conf <pre> Section..."
 
 
(10 intermediate revisions by the same user not shown)
Line 1: Line 1:
=Intel Desktop Scaling=
Control the scaling of the LCD screen to stretch the screen to use full LCD. (LVDS1)
*http://www.linuxquestions.org/questions/linux-software-2/aspect-ratio-scaling-with-intel-gpu%27s-and-linux-793488/
<pre>
  Setting scaling mode
This can be useful for some full screen applications.
xrandr --output LVDS1 --set PANEL_FITTING param
where param can be
    * center: resolution will be kept exactly as defined, no scaling will be made,
    * full: scale the resolution so it uses the entire screen or
    * full_aspect: scale the resolution to the maximum possible but keep the aspect ratio.
If it does not work, you can try
xrandr --output LVDS1 --set "scaling mode" param
where param is one of "Full", "Center" or "Full aspect".
</pre>
alias intel.stretch='xrandr --output LVDS1 --set "scaling mode" Full'
alias intel.center='xrandr --output LVDS1 --set "scaling mode" Center'
=Intel Video Crash (Archlinux)=
*https://wiki.archlinux.org/index.php/Intel_Graphics
*https://wiki.archlinux.org/index.php/Intel_Graphics


Line 4: Line 34:
  v86d
  v86d


=X=
==X==
  cd /etc/X11/xorg.conf.d/
  cd /etc/X11/xorg.conf.d/
  nano 20-intel.conf
  nano 20-intel.conf
Line 15: Line 45:
EndSection
EndSection
</pre>
</pre>
==Framebuffer Fix Intel GMA and IBM T61==
pacman -Sv v86d
edit /etc/default/grub commenting the GRUB_GFXPAYLOAD_LINUX=keep
Take quite out too (sucks)
grub-mkconfig -o /boot/grub/grub.cfg
nano /etc/mkinitcpio.conf
Add v86d and i915
MODULES="i915"
HOOKS="base udev v86d autodetect modconf block filesystems keyboard fsck"
mkinitcpio -p linux
Reboot the system (unmount if rescue too)
===Optimize Resolution===
cat /sys/bus/platform/drivers/uvesafb/uvesafb.0/vbe_modes
nano /usr/lib/modprobe.d/uvesafb.conf
# cp /usr/lib/modprobe.d/uvesafb.conf /etc/modprobe.d/uvesafb.conf
and then add an entry in the FILES section of /etc/mkinitcpio.conf pointing to your configuration file, like so:
FILES="/etc/modprobe.d/uvesafb.conf"
I kept the default
==Notes==
*https://wiki.archlinux.org/index.php/uvesafb
*Rescue install (make sure to mount boot):  https://bbs.archlinux.org/viewtopic.php?id=76246
*i915 module: https://wiki.archlinux.org/index.php/Intel_Graphics
==Other==
took quiet out of /etc/grub/default
too


=Report=
=Report=


https://www.archlinux.org/packages/?q=xf86-video-intel
https://www.archlinux.org/packages/?q=xf86-video-intel

Latest revision as of 09:55, 13 July 2014

Intel Desktop Scaling

Control the scaling of the LCD screen to stretch the screen to use full LCD. (LVDS1)


  Setting scaling mode

This can be useful for some full screen applications.

xrandr --output LVDS1 --set PANEL_FITTING param

where param can be

    * center: resolution will be kept exactly as defined, no scaling will be made,
    * full: scale the resolution so it uses the entire screen or
    * full_aspect: scale the resolution to the maximum possible but keep the aspect ratio. 

If it does not work, you can try

xrandr --output LVDS1 --set "scaling mode" param

where param is one of "Full", "Center" or "Full aspect".
alias intel.stretch='xrandr --output LVDS1 --set "scaling mode" Full'
alias intel.center='xrandr --output LVDS1 --set "scaling mode" Center'

Intel Video Crash (Archlinux)

v86d

X

cd /etc/X11/xorg.conf.d/
nano 20-intel.conf
Section "Device"
   Identifier "Intel Graphics"
   Driver "intel"
   Option "NoAccel" "True"
EndSection


Framebuffer Fix Intel GMA and IBM T61

pacman -Sv v86d
edit /etc/default/grub commenting the GRUB_GFXPAYLOAD_LINUX=keep

Take quite out too (sucks)

grub-mkconfig -o /boot/grub/grub.cfg
nano /etc/mkinitcpio.conf

Add v86d and i915

MODULES="i915"
HOOKS="base udev v86d autodetect modconf block filesystems keyboard fsck"
mkinitcpio -p linux

Reboot the system (unmount if rescue too)

Optimize Resolution

cat /sys/bus/platform/drivers/uvesafb/uvesafb.0/vbe_modes
nano /usr/lib/modprobe.d/uvesafb.conf
# cp /usr/lib/modprobe.d/uvesafb.conf /etc/modprobe.d/uvesafb.conf

and then add an entry in the FILES section of /etc/mkinitcpio.conf pointing to your configuration file, like so:

FILES="/etc/modprobe.d/uvesafb.conf"

I kept the default

Notes

Other

took quiet out of /etc/grub/default too


Report

https://www.archlinux.org/packages/?q=xf86-video-intel