Computing/Linux/Ubuntu: Difference between revisions

From OpenWetWare
Jump to navigationJump to search
Line 47: Line 47:
==Additional software repositories==
==Additional software repositories==
*[http://ubuntu.media.mit.edu/ MIT Media Lab Ubuntu mirror] - contains the various Ubuntu releases
*[http://ubuntu.media.mit.edu/ MIT Media Lab Ubuntu mirror] - contains the various Ubuntu releases
*[https://help.ubuntu.com/community/Medibuntu Medibuntu] (Multimedia, Entertainment & Distractions In Ubuntu) is a repository of packages that cannot be included into the Ubuntu distribution for legal reasons (e.g., libdvdcss, VideoLAN, Mplayer, xine, etc); [https://help.ubuntu.com/community/Medibuntu#head-7486ed038a9becc1dff10a24cc07a38a00d70e9f adding repositories]


*<tt>/etc/apt/sources.list</tt>:
*<tt>/etc/apt/sources.list</tt>:
 
  deb http://download.skype.com/linux/repos/debian/ stable non-free
## PLF REPOSITORY (Unsupported.  May contain illegal packages.  Use at own risk.)
  deb http://dl.google.com/linux/deb/ stable non-free
## Medibuntu - Ubuntu 7.04 "feisty fawn" (Acroread, Google Earth, etc)
## Please report any bug on https://launchpad.net/products/medibuntu/+bugs
  deb http://medibuntu.sos-sts.com/repo/ feisty free non-free
  #deb-src http://medibuntu.sos-sts.com/repo/ feisty free non-free
 
  ## CANONICAL COMMERCIAL REPOSITORY (Hosted on Canonical servers, not Ubuntu
  ## CANONICAL COMMERCIAL REPOSITORY (Hosted on Canonical servers, not Ubuntu
  ## servers. RealPlayer10, Opera, DesktopSecure and more to come.)  
  ## servers. RealPlayer10, Opera, DesktopSecure and more to come.)  
  deb http://archive.canonical.com/ubuntu feisty-commercial main
  deb http://archive.canonical.com/ubuntu gutsy partner


==Miscellaneous==
==Miscellaneous==

Revision as of 16:03, 29 October 2007

Reference

Downloading

Gutsy Gibbon

Installation notes

Graphics

ATI

Hitachi CML174SXW

xorg.conf entry:

Section "Monitor"
Identifier "CML174SXW"
HorizSync 64.0 - 80.0
VertRefresh 60.0 - 75.0
# V-freq: 75.00 Hz // h-freq: 80.42 KHz
Modeline "1280x1024" 151.83 1280 1360 1544 1888 1024 1024 1027 1072

Additional software repositories

  • Medibuntu (Multimedia, Entertainment & Distractions In Ubuntu) is a repository of packages that cannot be included into the Ubuntu distribution for legal reasons (e.g., libdvdcss, VideoLAN, Mplayer, xine, etc); adding repositories
  • /etc/apt/sources.list:
deb http://download.skype.com/linux/repos/debian/ stable non-free
deb http://dl.google.com/linux/deb/ stable non-free
## CANONICAL COMMERCIAL REPOSITORY (Hosted on Canonical servers, not Ubuntu
## servers. RealPlayer10, Opera, DesktopSecure and more to come.) 
deb http://archive.canonical.com/ubuntu gutsy partner

Miscellaneous

update-alternatives - maintain symbolic links determining default commands

Hardware

Config file locations:

/etc/modprobe.d/blacklist
/etc/default/linux-restricted-modules-common

Troubleshooting

  • Problem: CDRW is not recognized
Error message in /var/log/messages: ata2.00: failed to set xfermode (err_mask=0x4)
Add the word 'irqpoll' (without quotes) to the kernel line in /boot/grub/menu.lst
  • Problem: Xorg starts up but no DRI with ATI Radeon 9600 Pro, Intel i875P chipset, Ubuntu Feisty
Error in /var/log/messages: unable to acquire AGP, error "xf86_ENODEV", cannot init AGP
# rmmod i82875p_edac
# rmmod edac_mc
# rmmod fglrx
# rmmod intel-agp (or another appropriate module from /lib/modules/`uname -r`/kernel/drivers/char/agp)
# rmmod agpgart
# modprobe agpgart
# modprobe intel-agp (or another appropriate module from /lib/modules/`uname -r`/kernel/drivers/char/agp)
# modprobe fglrx
blacklist the modules e7xxx_edac and edac_mc; e.g., add the following two lines at the beginning of /etc/modprobe.d/blacklist:
blacklist i82875p_edac
blacklist edac_mc