Re: [arch-general] kernel 2.6.37 BKL

2011-01-05 Thread Alexander Lam
At this point the BKL doesn't cause much performance loss:

The Big Kernel Lock is a giant lock that was introduced in Linux 2.0,
when Alan Cox introduced SMP support for first time. But it was just
an step to achieve SMP scalability - only one process can run kernel
code at the same time in Linux 2.0, long term the BKL must be replaced
by fine-grained locking to allow multiple processes running kernel
code in parallel. In this version, it is possible to compile a kernel
completely free of BKL support. Note that this doesn't have
performance impact: all the critical Linux codepaths have been
BKL-free for a long time. It still was used in many non-performance
critical places -ioctls, drivers, non-mainstream filesystems, etc-,
which are the ones that are being cleaned up in this version. But the
BKL is being replaced in these places with mutexes, which doesn't
improve parallelism (these places are not performance critical
anyway). 


From
http://kernelnewbies.org/LinuxChanges#head-67c8ee4ffc27a012ae3d5349377b1dc4469ca992

On Wed, Jan 5, 2011 at 8:38 PM, Bernardo Barros
bernardobarr...@gmail.com wrote:
 2011/1/5 Ng Oon-Ee ngoo...@gmail.com:
 At this point in time leaving it enabled for compatibility in kernel26
 is fine IMO. Those who need it disabled for specific reasons (the one I
 can think of is task latency for audio) should already be used to
 compiling patched kernels, so it wouldn't be a big deal for now.

 +1 for patched kernels for audio (including kernel26-rt) in community




-- 
Alexander Lam


Re: [arch-general] [arch-dev-public] [signoff] make-3.82-2

2010-09-27 Thread Alexander Lam
On Mon, Sep 27, 2010 at 11:40 AM, Allan McRae al...@archlinux.org wrote:

 On 28/09/10 01:08, Tobias Powalowski wrote:

 Am Donnerstag 23 September 2010 schrieb Dan McGee:

 On Thu, Sep 23, 2010 at 8:42 AM, Allan McRaeal...@archlinux.org
  wrote:

 Upstream fixes for issues with make-3.82.  This should fix all build
 issues reported due to make-3.82.  Any remaining issues are probably not
 make's fault but need to be addressed in the software being built...

 Signoff both,
 Allan


 Signoff x86_64

 no signoff, kernel26 and kernel26-lts do still fail at firmware stage with
 this
 make version


 Try this:

 http://lkml.indiana.edu/hypermail/linux/kernel/1008.2/00080.html

 As I said, any remaining issues are more than likely the fault of the
 software being built...

 Allan


I'm also having problems with the kernel PKGBUILD not respecting the -j
multiple jobs flag...

-- 
Alexander Lam


Re: [arch-general] [arch-dev-public] [signoff] hdparm-9.32-1

2010-09-26 Thread Alexander Lam
I can't sign off, but I'm happy that this version works with -B (apm
setting). The last few versions didn't work.

On Sun, Sep 26, 2010 at 4:17 AM, Tobias Powalowski t.p...@gmx.de wrote:

 Hi guys,
 please signoff both arches

 greetings
 tpowa
 --
 Tobias Powalowski
 Archlinux Developer  Package Maintainer (tpowa)
 http://www.archlinux.org
 tp...@archlinux.org




-- 
Alexander Lam


[arch-general] Do formulas work in Go-Openoffice?

2010-08-30 Thread Alexander Lam
Hi all,

Are formulas working properly for anybody else using extra/go-openoffice?

I can create formulas just fine, but when I try to copy-paste them, the copy
doesn't show up correctly (it just shows a picture of a plug and the text
Object some number).
The same thing happens to all the formulas if I save the document (as odt)
and try to reopen it.

Is this happening to anybody else?

-- 
Alexander Lam


Re: [arch-general] how to listen to internet radio?

2010-07-29 Thread Alexander Lam
On the shoutcast website, go to help-settings
Set it to use your default player.
Back on the browsing pages of shoutcast, right click the play icon and
choose copy URL or similar. That is the URL of the playlist.

On Thu, Jul 29, 2010 at 12:26 PM, Madhurya Kakati mkakati2...@gmail.com wrote:
 On Thu, Jul 29, 2010 at 9:54 PM, Rafael Beraldo
 rafaelluisbera...@gmail.com wrote:
 2010/7/29 Madhurya Kakati mkakati2...@gmail.com

 Is there any good native linux app for streaming online radio? I
 prefer shoutcast.
 Thanks


 mplayer does it very well. For instance:

 $ mplayer http://www.radio.ufscar.br:8000/radioufscar_96.ogg

 Sometimes you will need to use the flag -playlist

 --
 Rafael Beraldo
 http://cabaladada.org


 how do i get the playlist for shoutcast?




-- 
Alexander Lam


Re: [arch-general] nVidia MCP79

2010-07-18 Thread Alexander Lam
Hello,

On Sun, Jul 18, 2010 at 6:29 PM, Rafael Beraldo
rafaelluisbera...@gmail.com wrote:
 2010/7/15 Alexander Lam lambchop...@gmail.com

 Sorry for the late response, I've been away.
 I've actually been trying to make my own ALC268 louder, so I've read
 up on hda architecture :P
 (I haven't been successful though)

 card0 is a single HDA controller. an HDA controller is basically a dma
 controller that sends audio data to a codec connected to the HDA bus
 on that card.
 In this instance, you have two codecs connected to the same HDA
 controller, which means...

 You won't see two sound cards in lspci because both sound codecs are
 on the same pci device.

 This may be the fault of your terminal.
 Did you try amixer instead?


 Well, amixer doesn't seem to show nothing relevant. Here is the output:
 http://pastebin.com/e7Xx7Gce. I don't see anything that I can't control with
 alsamixer. Also, everything is set to 100%.



 Anyway, I highly recommend using reading
 http://www.alsa-project.org/main/index.php/Help_To_Debug_Intel_HDA and
 using the HDA-Analyzer utility mentioned there - you can mess with
 your codecs manually to try to get louder sound.


 I've read it quickly... What should I look for? What should I tweak? I don't
 know those things very well. Anyway, right know I'm downloading Ubuntu to
 see if the sound is louder in this distribution. I haven't tested any OS but
 Arch Linux.

In the HDA-Analyzer, you should look for EAPD, which is External
Amplifier Power Down. Also, the sliders are essentially directly
hooked up to the sound card's hardware mixers. Just play around with
it.

 --
 Alexander Lam


 --
 Rafael Beraldo
 http://cabaladada.org




-- 
Alexander Lam


Re: [arch-general] nVidia MCP79

2010-07-18 Thread Alexander Lam
On Sun, Jul 18, 2010 at 9:15 PM, Rafael Beraldo
rafaelluisbera...@gmail.com wrote:
 2010/7/18 Rafael Beraldo rafaelluisbera...@gmail.com


 I couldn't find the EAPD... And all sliders are set to maximum volume.


 Actually, I found it in the Node[0x14] and Node[0x15]. If I disable it, the
 headphone still with sound but when I remove it there is no sound in the
 speakers.

If that's the case I don't have any other ideas. My alc268 had an
amplifier on the headphone out, and with the amplifier off (eapd not
checked), the headphones were very quiet (alsa turns the amplifier
on).
You probably should think about emailing the alsa mailing lists if
you're really in need.
http://www.alsa-project.org/main/index.php/Mailing-lists

It is possible to get the datasheets for your audio codec, but you
need to be able to interpret them to use them.
http://www.realtek.cz/realtek-datasheet.php?datasheet=ALC269
 --
 Rafael Beraldo
 http://cabaladada.org




-- 
Alexander Lam


Re: [arch-general] nVidia MCP79

2010-07-15 Thread Alexander Lam
Sorry for the late response, I've been away.
I've actually been trying to make my own ALC268 louder, so I've read
up on hda architecture :P
(I haven't been successful though)

On Sun, Jul 11, 2010 at 11:02 AM, Rafael Beraldo
rafaelluisbera...@gmail.com wrote:

 2010/7/11 Rafael Beraldo rafaelluisbera...@gmail.com

 
   $  cat /proc/asound/card0/codec#* | grep Codec
  Codec: Realtek ALC269
  Codec: Nvidia MCP79/7A HDMI

card0 is a single HDA controller. an HDA controller is basically a dma
controller that sends audio data to a codec connected to the HDA bus
on that card.
In this instance, you have two codecs connected to the same HDA
controller, which means...


  Which, I think, means that MCP79 only controls HDMI audio output. I was
  looking at the wrong place all this time. This card is not shown when I run
  lspci. Anyway, I quickly searched the web and found nothing relevant but
You won't see two sound cards in lspci because both sound codecs are
on the same pci device.
  that:
  http://lists.alioth.debian.org/pipermail/debian-eeepc-devel/2010-February/003320.html.
  However, this error doesn't exist in the current kernel.
 
  I'll try the parameters for ALC269. There are a few in that link, including
  two related to eeepc, and no parameters to MCP79.
 
  --
  Rafael Beraldo
  http://cabaladada.org
 

 I tested all parameters. Two of them give me interesting results: quanta
 gives me control not only of the internal mic but also of the external mic
 and basic gives me control of all of it and the front speaker. In both cases
 alsa daemon gives and error related to the NVIDIA chipset but everything
 works.

 Sound volume didn't change with any parameters.

 Also, alsamixer says it is using the NVIDIA MCP79 and I can't change the
 sound card by typing F6.
This may be the fault of your terminal.
Did you try amixer instead?

 Now I'm just confused and again wondering if the sound isn't just that loud.

 --
 Rafael Beraldo
 http://cabaladada.org


Anyway, I highly recommend using reading
http://www.alsa-project.org/main/index.php/Help_To_Debug_Intel_HDA and
using the HDA-Analyzer utility mentioned there - you can mess with
your codecs manually to try to get louder sound.


--
Alexander Lam


Re: [arch-general] [arch-dev-public] dropping flashplugin x86_64

2010-06-15 Thread Alexander Lam
Hello,

On Tue, Jun 15, 2010 at 7:57 PM, Caleb Cushing xenoterrac...@gmail.com wrote:
 On Tue, Jun 15, 2010 at 7:40 PM, C Anthony Risinger anth...@extof.me wrote:
 let's just all chant together in hopes that flash video will endure a
 quick, fiery demise, and webm/VP8 will rise from the ashes to claim
 it's place.

 meh! flash works... I don't think I've tried the webm stuff... but I
 did try the youtube html5 beta and it just didn't work well. flash
 does more than just video anyways. I'll be ok with html5 video if it
 works as good as flash for the purpose... but flash does so much more,

Javascript+HTML5 does a lot of what flash can do now (all of these
HTML5 demos work in firefox):
http://craftymind.com/factory/html5video/CanvasVideo.html

And an asteroids game:
http://www.kevs3d.co.uk/dev/asteroids/


 and it will certainly is better than going back to the days of
 'proprietary plugins, and codecs'.

 --
 Caleb Cushing

 http://xenoterracide.blogspot.com



-- 
Alexander Lam


Re: [arch-general] Checkgmail doesn't work with perl 5.12 from testing

2010-05-28 Thread Alexander Lam
On Wed, May 12, 2010 at 5:01 AM, Firmicus firmi...@gmx.net wrote:
 On 12/05/2010 07:17, Caleb Cushing wrote:

 On Tue, May 11, 2010 at 6:12 PM, Firmicusfirmi...@gmx.net  wrote:


 Certainly this is because glib-perl needs to be recompiled with perl
 5.12.
 Other perl packages that include binary libraries may need to be
 recompiled
 too. We need a TODO list for such perl packages...



 any package that's not arch any needs to be rebuilt. also watch for
 actual compiling...

 Right, all non-any perl packages should be rebuilt. I'll send Kevin a
 preliminary TODO list for such packages in extra and community (I found 209
 of them... yerk! but as you say there must be many that are actually
 arch=any). Most probably we also need to rebuild all packages that use
 libperl.so. Last year the list of such pkgs was:

snip
 F


Hi all,

Did this perl rebuild get lost or something? (I currently have perl on
my IgnorePkg list because glib-perl hasn't been updated for 5.12
yet)

-- 
Alexander Lam


Re: [arch-general] intel video amp; suspend

2010-05-26 Thread Alexander Lam
On Wed, May 26, 2010 at 4:55 AM, Sara Fauzia s...@archlinux.us wrote:
 Now from time to time (≈ once a week) when I wake it up, the screen
 remains black in both X and text console. Nothing can bring it back,
 but everything else works just fine. No errors in logs either.

 I am having the same problem on my Fujitsu T900, 64-bit ArchLinux. Tried
 both pm-suspend and s2ram, and while s2ram *appeared* to not cause this
 problem as much, it still happened. At first I thought my screen was entirely
 blank, but on closer inspection realized my screen was simply very 
 dim--flashing
 a flashlight at the screen helped a lot. Was able to navigate to my brightness
 settings, and the brightness was on max, as it was before suspend. I have the
 testing repo enabled, and everything is up-to-date. I don't know if this 
 problem
 occurred with older kernel versions on the Fujitsu, as this is a recent 
 install.

 Sara



You should try looking into vbetool.
It can turn the backlight on if necessary.

-- 
Alexander Lam


Re: [arch-general] troubles with resume after hibernate

2010-05-15 Thread Alexander Lam
I've known about this issue, but worked around it by not loading i915
before the resume from hibernate occurs - this is done by not
including i915.ko in the initrd and not building i915 into the kernel.

Additionally, I have highmem off (netbook with 1GB memory), but I
don't know if that affects anything.

I strongly advise you to fsck your disks now because the memory
corruption might have screwed them up.


Re: [arch-general] Is preload really working ??

2010-05-06 Thread Alexander Lam
On Thu, May 6, 2010 at 10:40 AM, Nilesh Govindarajan li...@itech7.com wrote:
 On 05/06/2010 01:58 PM, Johannes Held wrote:

 solsTiCe d'Hiversolstice.dhi...@gmail.com:

 One of the ways to speed up firefox is to put your ~/.mozilla in a tmpfs
 (doing it the right way, else you loose your data). This have been
 discussed somewhere I think.
 How else ?

 You mean that wikientry?
 http://wiki.archlinux.org/index.php/Speed-up_Firefox_using_tmpfs


 I did this to test how well tmpfs works for me:

 mv .mozilla /dev/shm/moz
 ln -s /dev/shm/moz .mozilla

 There was some difference, but not too much as expected.

 --
 Nilesh Govindarajan
 Site  Server Administrator
 www.itech7.com
 मेरा भारत महान !
 मम भारत: महत्तम भवतु !


You should look into the Vacuum Places Improved addon for Firefox
It defrags the sqlite places file.

https://addons.mozilla.org/en-US/firefox/addon/13878

-- 
Alexander Lam


Re: [arch-general] [arch-dev-public] lts kernel bump to .32 series?

2010-05-05 Thread Alexander Lam
 If I remember correctly, the .32 series has a bug with Intel cards that
 causes screen flickering and the patch that corrects this was only merged in
 the .33 series

 During the .32 series I tried a few arch releases and they all caused the
 flickering in my laptop,
 so I rolled back and went from .31 to .33 when it was released.

For .32 did you try setting i915's powersave parameter to 0?


-- 
Alexander Lam


Re: [arch-general] Emerald crashing on theme change or edit in Gnome

2010-04-11 Thread Alexander Lam
On Sun, Apr 11, 2010 at 6:31 PM, David C. Rankin
drankina...@suddenlinkmail.com wrote:
 Guys,

        For some reason, emerald has started crashing when changing themes in 
 Gnome. It
 changes the theme just fine, but then crashes. (disappears - no error shown or
 in any logs). The crash occurs as soon as you click on a new theme to change 
 it.
 This happens when you select the first theme 3/4 of the time. Other times, you
 can click on two, or maybe even three themes looking for the one you want 
 before
 the crash occurs at other times. The result is the same, emerald-theme-manager
 just disappears into thin air. A restart restores emerald without error as 
 well.


Same issue here - compiz standalone setup


-- 
Alexander Lam


Re: [arch-general] xf86-video-intel and KMS

2010-02-11 Thread Alexander Lam
On Thu, Feb 11, 2010 at 7:30 AM, Pierre Chapuis catw...@archlinux.us wrote:
 I saw on arch-announce that xf86-video-intel now only supports KMS, and I
 wanted to ask: is there still a way to specify the resolution of virtual
 consoles, like we used to do with vga=XXX in kernel options?

 --
 catwell


vga=INPUT:RESOLUTION

example:

video=VGA-1:800x600
video=LVDS-1:1280x800

-- 
Alexander Lam


Re: [arch-general] pacman too slow on reboot

2010-02-10 Thread Alexander Lam
On Wed, Feb 10, 2010 at 9:49 AM, Nilesh Govindarajan li...@itech7.com wrote:
 Hi,

 Recently I'm facing a funny problem. pacman (and even packer) is t slow
 to search -Ss (db+aur) or -Qs (db). I see a lot of HDD activity going on.
 But when I run pacman-optimize, it gets fixed.

 This happens at every boot. Any ideas ?

 --
 Nilesh Govindarajan
 Site  Server Adminstrator
 www.itech7.com


Short:
This happens because the pacman db isn't in the cache yet after a
reboot, but after running pacman-optimize, the db is in the cache.

Long:
The cache is unused RAM used to store recent accessed files. When a
file gets read from disk or written out to disk, it is also placed in
the cache, and taken out when more memory is needed for new cache
entries or applications need want more memory.

Since the db is made up of a bunch of small files, this causes the hdd
to have to move its arm around the disk. Linux file systems, unlike
Windows, tries to reduce fragmentation by allocating space for each
file evenly across the disk. The problem with this shows itself with
pacman. The db files are scattered through the disk and the hdd has to
seek (slow operation) to find all of them. So, once all these files
are in cache, the hard drive doesn't need to be accessed to get the
db. Memory is fast at random access (like the hard drive's seek
operation).


 I suggest you look this:

 http://bbs.archlinux.org/viewtopic.php?id=20385

 It uses one single file to store all pacman's db tree, mounting it via
 loop device, so it gets faster than the native filesystem. I use it
 and the difference is impressive.

 HTH.

Thus, with a single file, the Linux file system will try to store it
as a contiguous block on the hard drive, and the hard drive won't have
to seek around, greatly increasing throughput.
-- 
Alexander Lam


Re: [arch-general] Pacman trigger

2010-02-06 Thread Alexander Lam
On Sat, Feb 6, 2010 at 9:29 AM, Jim Pryor
lists+arch-gene...@jimpryor.net wrote:
 On Sat, Feb 06, 2010 at 11:36:59PM +1000, Allan McRae wrote:
 On 06/02/10 23:31, Nilesh Govindarajan wrote:
 Is there some app that will do some actions on updating some software ?
 
 Like for example, I want that in
 /usr/lib/firefox-version/defaults/preferences/firefox.js user agent is
 set to Firefox/version instead of its brand name ?
 
 Or copy the previous version of kernel to /boot/stable before update ?

 Not yet.  There are some plans
 (http://wiki.archlinux.org/index.php/User:Allan/Pacman_Hooks) but
 that has not progressed much further than the wiki page...

 The customizepkg-new package doesn't yet handle .install files. But it
 does enable you to tweak a PKGBUILD, add extra files to the source
 array, and so on. When used with a pacman-wrapper that knows about it,
 such as yaourt, every time you try to install a package for which you've
 scripted these mods, it will be built from source with your mods.

 Once the script is expanded to handle .install files---which would not
 be hard---this will do what you want. The downside is you'd have to
 build all such packages from source yourself. A cooperating pacman
 wrapper will make that happen automatically, but you might well decide
 it's still more trouble than you're looking for.
Actually, if customizepkg handles PKGBUILDS, you could just add a sed
command to the PKGBUILD to change the .install file. (see the kernel26
PKGBUILD for an example)


 (I submitted a bunch of changes to customizepkg-new a few months ago but
 I don't think they've been folded in yet.)

 --
 Jim Pryor
 prof...@jimpryor.net




-- 
Alexander Lam


Re: [arch-general] dynex USB microphone extremely quiet

2010-01-31 Thread Alexander Lam
On Sun, Jan 31, 2010 at 3:32 AM, Samuel Baldwin
recursive.for...@gmail.com wrote:

 The topic says it all. I've got a new microphone, and whereas it
 works, it's rather quiet when I try to record it wtih audacity. Most
 people on skype complain that my voice is rather quiet as well, and I
 have to basically put the mic in my mouth for them to hear to hear me
 properly.

 Nothing's showed up on dmesg since I've plugged it in, strangely, but
 it shows up as a selection in audacity and skype (AK5370 :USB Audio
 (hw:1,0)).

 I've got mic boost, capture volume, capture 1, and digital turned all
 the way up, and those seem to be the only relevant options in
 alsamixer.

 I'm a bit confused, any input?

 --
 Samuel Baldwin - logik.li

Starting with the obvious.
did you select the right device in alsamixer? (use F6)


Re: [arch-general] Firefox 3.5.7 not support eh !??

2010-01-31 Thread Alexander Lam
On Sun, Jan 31, 2010 at 6:42 AM, Giuseppe Turrisi
giuseppeturr...@gmail.com wrote:
 Il 31/01/2010 12:30, Jan de Groot ha scritto:

 On Sun, 2010-01-31 at 16:58 +0530, Nilesh Govindarajan wrote:

 Something is seriously funny going on here with FF 3.5.7 (Shiretoko).

 I'm using it from the arch repos, but on visiting Google Help or Orkut,
 it says Browser not supported ?

 And the supported browser list says FF 1.5+

 Something is wrong with the arch build ?

 There's nothing wrong with our firefox package, it's buggy browser
 detection done by these websites. You might want to change the user
 agent string through about:config to get Firefox in the name.

 Websites with browser detection like this are plain stupid, you should
 complain about it and advise them to check for a gecko engine version.


 you can also use an add-ons like this:
 https://addons.mozilla.org/en-US/firefox/addon/59

 --
 Il Software Libero è una questione di libertà, non di prezzo.


or you could go into the Firefox config (URL: about:config) and change
the value of general.useragent.extra.firefox to Firefox/3.5.7

-- 
Alexander Lam


Re: [arch-general] Netcfg after resume from suspend

2010-01-29 Thread Alexander Lam
On Thu, Jan 28, 2010 at 8:42 PM, Ng Oon-Ee ngoo...@gmail.com wrote:
 Hi all, I'm using netcfg and recently have been noticing the following.

 When I resume from suspend I call 'netcfg home' which tries to connect
 to my home's wifi network. ESSID and WEP key are correctly set. It
 exist with a 'could not obtain IP address error, this is the dmesg:-

 Registered led device: iwl-phy0::radio
 Registered led device: iwl-phy0::assoc
 Registered led device: iwl-phy0::RX
 Registered led device: iwl-phy0::TX
 ADDRCONF(NETDEV_UP): wlan0: link is not ready
 wlan0: direct probe to AP 00:14:7c:be:39:ac (try 1)
 wlan0: direct probe responded
 wlan0: authenticate with AP 00:14:7c:be:39:ac (try 1)
 wlan0: authenticated
 wlan0: associate with AP 00:14:7c:be:39:ac (try 1)
 wlan0: RX AssocResp from 00:14:7c:be:39:ac (capab=0x471 status=0 aid=1)
 wlan0: associated
 ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
 wlan0: no IPv6 routers present
 wlan0: deauthenticating from 00:14:7c:be:39:ac by local choice (reason=3)

 The weird thing is that when I run 'iwconfig wlan0 essid MYESSID key
 MYKEY', then run 'netcfg home' again it works no problem. Suggestions
 for what I can check out are welcome. This happens both on stock
 kernel and my custom -ice kernel, am up-to-date (without testing for
 now, due to my openoffice variant not being done yet).


Perhaps you need to change DHCP_TIMEOUT in the network profile to be longer?


Re: [arch-general] Startup scripts

2010-01-15 Thread Alexander Lam
Tom,

I just tried Control-C during a regularly scheduled fsck on my system and it
stopped the fsck and booted normally, so that should have worked for you.


Re: [arch-general] [arch-dev-public] kernel 2.6.32-1

2009-12-12 Thread Alexander Lam
I have an Acer aspire one (945gse) and I don't have these problemsbut
perhaps a temporary workaround is to set the module parameter powersave = 0

i915.powersave=0

On Mon, Dec 7, 2009 at 11:23 PM, Emmanuel Benisty benist...@gmail.comwrote:

 On Tue, Dec 8, 2009 at 5:02 AM, Daenyth Blank 
 daenyth+a...@gmail.comdaenyth%2ba...@gmail.com
 wrote:
  On Mon, Dec 7, 2009 at 17:01, Thomas Bächler tho...@archlinux.org
 wrote:
  This is on the intel-gfx list and has been replied to by one of the
 devs.
 
 
 
  Sweet :D
 

 actually, the thread is dead silent since my
 melt-your-cpu-git-bisecting result but I keep the faith :) in the
 meantime, attached is the patch to revert this commit if anyone is
 interested (it's not a proper bugfix, just a revert patch)




-- 
Alexander Lam


[arch-general] Fwd: [arch-dev-public] kernel 2.6.32-1

2009-12-12 Thread Alexander Lam
I have an Acer aspire one (945gse) and I don't have these problemsbut
perhaps a temporary workaround is to set the module parameter powersave = 0

i915.powersave=0

-- Forwarded message --
From: Emmanuel Benisty benist...@gmail.com
Date: Mon, Dec 7, 2009 at 11:23 PM
Subject: Re: [arch-general] [arch-dev-public] kernel 2.6.32-1
To: General Discusson about Arch Linux arch-general@archlinux.org


On Tue, Dec 8, 2009 at 5:02 AM, Daenyth Blank
daenyth+a...@gmail.comdaenyth%2ba...@gmail.com
wrote:
 On Mon, Dec 7, 2009 at 17:01, Thomas Bächler tho...@archlinux.org wrote:
 This is on the intel-gfx list and has been replied to by one of the devs.



 Sweet :D


actually, the thread is dead silent since my
melt-your-cpu-git-bisecting result but I keep the faith :) in the
meantime, attached is the patch to revert this commit if anyone is
interested (it's not a proper bugfix, just a revert patch)



-- 
Alexander Lam


no_flickr.patch
Description: Binary data


Re: [arch-general] [arch-dev-public] Load_Cycle_Count and storage-fixup

2009-10-18 Thread Alexander Lam
laptop-mode by itself won't do it, but laptop-mode-tools will.

However, some users (such as I) see laptop-mode-tools as bloat because it
comes with all this other stuff for controlling other aspects of power
consumption.


Re: [arch-general] how to migrate installs between hard drives?

2009-07-26 Thread Alexander Lam
On Sun, Jul 26, 2009 at 2:17 PM, Will Siddall will.sidd...@gmail.comwrote:

 1 question I do have is if I dd the entire disk (parition table and
 all) then reapply to a larger disk, would that keep everything intact
 or am I gonna run into the same problem?


Okay:

A - The disk that already has an installation but is smaller
B - The disk that that you want to put the installation on

if you dd A onto B, B will get the partition structure from A and appear
smaller. However, you can edit the partition sizes using gparted like Dan
said, and make the partitions fill up the whole B disk.


-- 
Alexander Lam


Re: [arch-general] speakers don't turn off when headphones inserted

2009-06-02 Thread Alexander Lam
Have you tried other module settings for the Realtek ALC883?

the linux kernel documentation
(linux-sources/Documentation/sound/alsa/HD-Audio-Models.txt)
says that these other options are valid:

ALC883/888
==
  3stack-dig3-jack with SPDIF I/O
  6stack-dig6-jack digital with SPDIF I/O
  3stack-6ch3-jack 6-channel
  3stack-6ch-dig 3-jack 6-channel with SPDIF I/O
  6stack-dig-demo  6-jack digital for Intel demo board
  acer  Acer laptops (Travelmate 3012WTMi, Aspire 5600, etc)
  acer-aspire   Acer Aspire 9810
  acer-aspire-4930g Acer Aspire 4930G
  medionMedion Laptops
  medion-md2Medion MD2
  targa-dig Targa/MSI
  targa-2ch-dig Targs/MSI with 2-channel
  laptop-eapd   3-jack with SPDIF I/O and EAPD (Clevo M540JE, M550JE)
  lenovo-101e   Lenovo 101E
  lenovo-nb0763 Lenovo NB0763
  lenovo-ms7195-dig Lenovo MS7195
  lenovo-skyLenovo Sky
  haier-w66 Haier W66
  3stack-hp HP machines with 3stack (Lucknow, Samba boards)
  6stack-dell   Dell machines with 6stack (Inspiron 530)
  mitac Mitac 8252D
  clevo-m720Clevo M720 laptop series
  fujitsu-pi2515 Fujitsu AMILO Pi2515
  fujitsu-xa3530 Fujitsu AMILO XA3530
  3stack-6ch-intel Intel DG33* boards
  auto  auto-config reading BIOS (default)


On Tue, Jun 2, 2009 at 8:53 PM, Alexandre Moreira alexandr...@gmail.comwrote:

 2008/6/11 Gustavo A. Gómez Farhat gustavo.gomez.far...@gmail.com:
  I have the same problem. I have a HDA Intel card with a Realtek ALC883
 chip.
  My `lspci | grep Audio`:
 
  00:1b.0 Audio device: Intel Corporation 82801H (ICH8 Family) HD Audio
  Controller (rev 03)
 
  To be able to control each one of the speakers (internal and headphones),
 I
  have this in /etc/modprobe.conf:
 
  options snd_hda_intel model=3stack-6ch
 
  But my longing is to connect the headphones and that the internal
 speakers
  mute automatically.

 Yeah, same problem here also.
 00:1b.0 Audio device: Intel Corporation 82801H (ICH8 Family) HD Audio
 Controller (rev 03)

 Anyone got a solution for this yet? I can't seem to remember if I ever
 made this sound card (I usually don't install sound drivers, I don't
 use them that much) to work on Linux, but I can't remember having this
 problem before.

 Regards,
 Alexandre Moreira




-- 
Alexander Lam
ATCS 2010

AIM: lambchops468
GTALK: lambchop...@gmail.com

Archlinux User -