Re: [arch-general] Kernel LTS won't boot properly

2010-03-24 Thread David C. Rankin
On 03/24/2010 12:23 AM, Nilesh Govindarajan wrote:

 Oh YES - that was implied in the reinstall -- sorry. Give it a go. I
 don't know
 why the checksums don't catch this type of corruption, but I had to
 re-download
 and then install with 'pacman -UpkgName'. Hopefully, the 4th time
 will be a
 charm.

 
 I redownloaded it, re mkinitcpio, still the problem persists.
 
 Is there any way to disable the change of screen font after udev ?
 
 Any guesses ? Or re-download from another mirror ?
 

Nilesh,

If you have re-downloaded and reinstalled, then I think you may have 
stumbled
across a bug regarding your chipset and the framebuffer switch that takes place.
That is way beyond me, but there are others here that can help. Before opening a
ticket on it, do a quick wiki search on your gpu chipset and also take a look at
the LTS page to see if there are any notes there. If not, open a ticket with
Arch. That will probably be the fastest way to get this resolved.

What is your hardware setup? Give us the motherboard chipset, CPU and 
GPU
chipset info, and that will help others here help you. Also, if you get any log
info on the boot process up to the time it hangs, that is important. I guess the
way to check for log info would be to boot -- let it fail -- then boot with the
install media and then mount your partition containing /var (usually /) and
check /var/log under the mount-point and see if anything was captured. I don't
know for sure, but it seems like logging would have been enabled well before
Udev is started.

Good luck.

-- 
David C. Rankin, J.D.,P.E.
Rankin Law Firm, PLLC
510 Ochiltree Street
Nacogdoches, Texas 75961
Telephone: (936) 715-9333
Facsimile: (936) 715-9339
www.rankinlawfirm.com


Re: [arch-general] MySQL Starts But Fails to Restart

2010-03-24 Thread Jan de Groot
When you stop MySQL, the kill command completes immediately, while MySQL
is still doing shutdown tasks to make sure the database is in a
consistent state. As MySQL is still running when you try to start it, it
will fail to do so.
There's 2 ways to fix this:
- use mysqladmin shutdown, needs a user in the database with process
privileges, this is the way used by debian
- implement a loop that waits for MySQL to shutdown after executing the
kill command. This is what the upstream MySQL start/stop script does.

On Tue, 2010-03-23 at 22:46 -0400, Carlos Mennens wrote:
 4. I then run the command to restart the daemon for MySQL and it fails...
 
 Code:
 
 [r...@ghost /]# /etc/rc.d/mysqld restart
 :: Stopping MySQL Server
 
 [DONE]
 :: Starting MySQL Server
 
 [FAIL]
 
 I can use the 'start' and 'stop' commands for /etc/rc.d/mysqld but
 'restart' for some reason fails and this concerns me. Can anyone help
 me understand what is wrong?




[arch-general] Battery Monitor Applet (kde4) hangs after s2ram

2010-03-24 Thread Markus Golser
Hi, after I resume from s2ram my battery monitoring applet does not
refresh anymore.
It shows 100% loaded and plugged in all the time.

I have to kill plasma every time in order to get the current charge.

cat /sys/class/power_supply/BAT0/charge_now - shows the correct charge.

Maybe someone can help me.


Notebook = Dell Inspiron 9400


[arch-general] New Using AUR

2010-03-24 Thread Carlos Mennens
I had two questions about using the AUR. I have never done it before
and read of the How-To on the Wiki but could someone please answer the
following two questions I have:

1. If I build a tarball on 'PC1' downloaded from AUR with the 'makepkg
-s' command, can I then transfer the created tarball to 'PC2' and
install it even though PC2 didn't have any of the required packages
used to create the tarball from the AUR?

2. Once a package is installed from the AUR, when I do a system
upgrade via Pacman, will outdated packages I installed via AUR get
automatically upgraded or do I have to do all my AUR packages
manually?


Re: [arch-general] New Using AUR

2010-03-24 Thread Edgar Kalkowski
Am oder ungefähr am Mittwoch, 24. März 2010, schrieb Carlos Mennens:
 I had two questions about using the AUR. I have never done it before
 and read of the How-To on the Wiki but could someone please answer the
 following two questions I have:

Hi Carlos!

 1. If I build a tarball on 'PC1' downloaded from AUR with the 'makepkg
 -s' command, can I then transfer the created tarball to 'PC2' and
 install it even though PC2 didn't have any of the required packages
 used to create the tarball from the AUR?

There are two different types of dependencies defined for packages in the AUR: 
build time dependencies are needed to build a package using some PKGBUILD, 
package dependencies are required to run the program that is contained in the 
package. The first type of dependency is not needed on PC2, the second type 
will be needed and will be installed by pacman if you install the package from 
the tarball on PC2.

 2. Once a package is installed from the AUR, when I do a system
 upgrade via Pacman, will outdated packages I installed via AUR get
 automatically upgraded or do I have to do all my AUR packages
 manually?

This is something pacman itself cannot do. However there are some wrapper 
scripts for pacman that can do this. One is called yaourt and can be found on 
the aur. I myself have written a small script that checks all installed 
packages (including those from the AUR) for updates but does not do any 
automatic update attempt like yaourt does. If you’d like to check it out it can 
be found at http://edgar-kalkowski.de/aurupdate.

I hope this helps! :)

Edgar



signature.asc
Description: This is a digitally signed message part.


[arch-general] Chromium default browser

2010-03-24 Thread Nilesh Govindarajan

How to make Chromium as default browser ?

I'm using KDE.

But I'll like to have the same setting in GNOME too.

I changed the command at systemsettings from 'firefox' to 'chromium'

It although opens chromium, but doesn't open the link in it.

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


Re: [arch-general] New Using AUR

2010-03-24 Thread David Rosenstrauch

On 03/24/2010 09:34 AM, Carlos Mennens wrote:

2. Once a package is installed from the AUR, when I do a system
upgrade via Pacman, will outdated packages I installed via AUR get
automatically upgraded or do I have to do all my AUR packages
manually?


Pacman does not upgrade AUR packages.  Only packages from core, extra, 
or community.  So you need to manually update AUR packages.


So what you should do is create an account for yourself on the AUR, then 
log in to the site, go to the page for that package, and click notify. 
 Then you'll be notified when new messages appear on that package's AUR 
page - and so you'll find out when the PKGBUILD has been upgraded to a 
new version.


DR


Re: [arch-general] New Using AUR

2010-03-24 Thread Samuel Martín Moro
you should take a look at packer, or yaourt
both of them are (AUR) package manager, dealing with both pacman *and* AUR
repositories.

packer is not perfect (we can not just do -Sy, but have to -Syu, for
example)
but yaourt is very slow (other programming language, don't know exactly, but
even on a core i7, it's shocking to see how long it took to do simple
things...)

so... make your choice :)

Samuel Martín Moro
{EPITECH.} tek4
CamTrace S.A.S

Nobody wants to say how this works.
 Maybe nobody knows ...
 Xorg.conf(5)


On Wed, Mar 24, 2010 at 3:24 PM, David Rosenstrauch dar...@darose.netwrote:

 re, extra, or community.


Re: [arch-general] New Using AUR

2010-03-24 Thread Heiko Baums
Am Wed, 24 Mar 2010 10:24:23 -0400
schrieb David Rosenstrauch dar...@darose.net:

 Pacman does not upgrade AUR packages.  Only packages from core,
 extra, or community.  So you need to manually update AUR packages.

Those dependencies need to be built and installed on PC1 from AUR
before the main AUR package is built anyway. So they can also be
moved to PC2 as binary packages and should be installed automatically
by pacman when the main package is installed on PC2.

 So what you should do is create an account for yourself on the AUR,
 then log in to the site, go to the page for that package, and click
 notify. Then you'll be notified when new messages appear on that
 package's AUR page - and so you'll find out when the PKGBUILD has
 been upgraded to a new version.

Usually you're not informed by the notify feature when an AUR package
is updated, because most maintainers don't write comments, when they
update their package. So you should use one of the wrapper scripts like
yaourt, aurbuild etc. to search for updates.

Heiko


Re: [arch-general] New Using AUR

2010-03-24 Thread Priit Kivisoo

On 24.03.2010 16:24, David Rosenstrauch wrote:

On 03/24/2010 09:34 AM, Carlos Mennens wrote:

2. Once a package is installed from the AUR, when I do a system
upgrade via Pacman, will outdated packages I installed via AUR get
automatically upgraded or do I have to do all my AUR packages
manually?




You can always install yaourt and upgrade packages with yaourt -Syu –-aur

Priit


[arch-general] Vim Syntax Highlighter

2010-03-24 Thread Carlos Mennens
I noticed today when editing a config file for Postfix in Vim that one
value was listed in white text only and everything else was in color.
This lead me to beleive the value or parameter was wrong or not being
recognized by Postfix configuration but it is. I asked Postfix and the
said:

Your VIM syntax highlighter is out of date

Can anyone tell me if there is a way to update this manually if I have
the latest version of Vim in my Arch repo?


Re: [arch-general] New Using AUR

2010-03-24 Thread Thanos Zygouris
On Wed, Mar 24, 2010 at 17:17, Priit Kivisoo pr...@kivisoo.eu wrote:

 On 24.03.2010 16:24, David Rosenstrauch wrote:

 On 03/24/2010 09:34 AM, Carlos Mennens wrote:

 2. Once a package is installed from the AUR, when I do a system
 upgrade via Pacman, will outdated packages I installed via AUR get
 automatically upgraded or do I have to do all my AUR packages
 manually?



 You can always install yaourt and upgrade packages with yaourt -Syu –-aur

 Priit


Or, you can install packer (in aur) and do a packer -Syu


Re: [arch-general] New Using AUR

2010-03-24 Thread Helgi Kristvin Sigurbjarnarson
On Wed, Mar 24, 2010 at 09:34:27AM -0400, Carlos Mennens wrote:
 2. Once a package is installed from the AUR, when I do a system
 upgrade via Pacman, will outdated packages I installed via AUR get
 automatically upgraded or do I have to do all my AUR packages
 manually?

Some people have mentioned yaourt and other tools to automate this,
but yaourt is extremly slow. I'd recommend you try clyde (it's in AUR).

It's in early stages, but it can be used just like pacman, and handles
AUR, and AUR dependencies if a package is not found in the official
repos.

-- 
Helgi Kristvin Sigurbjarnarson helgikrs (at) gmail (dot) com


pgpdOrtJRbtg1.pgp
Description: PGP signature


Re: [arch-general] Chromium default browser

2010-03-24 Thread Nilesh Govindarajan

On 03/24/2010 08:56 PM, Gaurish Sharma wrote:

On Wednesday 24 Mar 2010 7:40:32 pm Nilesh Govindarajan wrote:

How to make Chromium as default browser ?

I'm using KDE.

But I'll like to have the same setting in GNOME too.

I changed the command at systemsettings from 'firefox' to 'chromium'

It although opens chromium, but doesn't open the link in it.

Hi,
Systemsettings --   Default Applications --  Web broswer

Works for me, It opens all links into chrome.



What did you type in it ?

I typed simply chromium where I previously had firefox.

Further, to test, I created a bash script which records the parameters 
passed to it in a file.


I have Pastebin on my desktop, which notified me 'Open Browser', it the 
file in which I recorded parameters was blank.


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


Re: [arch-general] New Using AUR

2010-03-24 Thread Vincent Van Houtte
  2. Once a package is installed from the AUR, when I do a system
  upgrade via Pacman, will outdated packages I installed via AUR get
  automatically upgraded or do I have to do all my AUR packages
  manually?
 
  You can always install yaourt and upgrade packages with yaourt -Syu –-aur
 
  Priit
 

 Or, you can install packer (in aur) and do a packer -Syu


In short:
- pacman does not provide such functionality
- there are other utilities (pacman/aur helpers) that do provide this
functionality. Check the wiki or 'community contribution'-section on the
forum for all of them.


Re: [arch-general] Chromium default browser

2010-03-24 Thread Bram Schoenmakers
2010/3/24 Nilesh Govindarajan li...@itech7.com:

Hi,

 Works for me, It opens all links into chrome.


 What did you type in it ?

 I typed simply chromium where I previously had firefox.

I have nothing but the executable name in there ('chromium' for the
package from [extra] or 'chromium-browser for the chromium-browser-bin
from AUR).

Kind regards,

-- 
Bram Schoenmakers

What is mind? No matter. What is matter? Never mind.
(Punch, 1855)


Re: [arch-general] Chromium default browser

2010-03-24 Thread Nilesh Govindarajan
Seems like its a pastebin bug. It works if I click a link other than set 
by pastebin.


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


[arch-general] Issue with man

2010-03-24 Thread Damien Churchill
I've got a rather confusing issue with man. Whenever I try and view a
man page I just end up with a blank screen.

http://www.imagebam.com/image/41dd5973332829

This occurs for any page, even for local ones. I was wondering if
anyone would be able to shed any light on why this is occuring?

Thanks,

Damien


Re: [arch-general] New Using AUR

2010-03-24 Thread Pierre Chapuis
On Wed, 24 Mar 2010 15:34:01 +0100, Samuel Martín Moro faus...@gmail.com
wrote:

 but yaourt is very slow (other programming language, don't know exactly,
 but
 even on a core i7, it's shocking to see how long it took to do simple
 things...)

It used to be slow mainly because it did a lot of parsing with Bash and
Unix tools. Its experimental branch [1] relies on a new, external tool
in C and is much faster.

[1] http://aur.archlinux.org/packages.php?ID=35479



Re: [arch-general] Kernel LTS won't boot properly

2010-03-24 Thread Andreas Radke
Am Sun, 21 Mar 2010 13:34:40 +0530
schrieb Nilesh Govindarajan li...@itech7.com:

 I installed kernel26-lts.
 
 It will boot properly upto Udev then screen will flicker and then 
 nothing shows up, but it seems like the boot is going on.
 
 Its just after when INIT changes the screen font.
 

Does it mean you are trying to use KMS for screen resolution? It's an
Intel card? Udev is probably loading either a kms module or some custom
framebuffer module.

-Andy


Re: [arch-general] [OT] New Using AUR

2010-03-24 Thread Edgar Kalkowski
 Nobody wants to say how this works.
  Maybe nobody knows ...
  Xorg.conf(5)

This is a really great quote! A friend and me laughted our asses off just now 
when we found that this is really included in `man xorg.conf`! :D

This is why I like Linux so much! This would not happen with *indows. :)


signature.asc
Description: This is a digitally signed message part.


[arch-general] upcoming Xiph releases

2010-03-24 Thread Ray Kohler
Just a heads-up to package owners that there will be several xiph.org
releases very soon now. libao appears to be the only thing with a
soname bump (2.1.3 - 4.0.0). I don't think the rebuild list for it
should be very long. See below.


-- Forwarded message --
From:  xiphm...@xiph.org
Date: Wed, Mar 24, 2010 at 4:18 PM
Subject: Re: [Vorbis-dev] upcoming releases (was: adding directory
contents to ogg123 playing in sorted order?)
To: Ray Kohler ataraxia...@gmail.com


On Wed, Mar 24, 2010 at 4:00 PM, Ray Kohler ataraxia...@gmail.com wrote:

 Can I take it that the releases of libao and vorbis-tools are
 imminent, then? The doc updates from the last day have that feel to
 them also.

 I ask because I'd like to give a heads-up to the Arch devs since the
 libao release will have a soname bump, and thus they'll have some
 rebuilding to plan. (And is libvorbis getting a release soon as well?)

I will be releasing libogg, libvorbis, libao and vorbis-tools by the
end of the week (I hope).  Schedule is actually 'tomorrow', but some
small amount of slippage is traditional.

Monty


Re: [arch-general] Issue with man

2010-03-24 Thread Linas
Damien Churchill wrote:
 I've got a rather confusing issue with man. Whenever I try and view a
 man page I just end up with a blank screen.

 http://www.imagebam.com/image/41dd5973332829

 This occurs for any page, even for local ones. I was wondering if
 anyone would be able to shed any light on why this is occuring?

 Thanks,

 Damien
   
Does less work with other files?
What happens if you use a different pager? Eg.  PAGER=more man ls

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


Re: [arch-general] Issue with man

2010-03-24 Thread Damien Churchill
On 24 March 2010 23:52, Linas linas...@ymail.com wrote:
 Damien Churchill wrote:
 I've got a rather confusing issue with man. Whenever I try and view a
 man page I just end up with a blank screen.

 http://www.imagebam.com/image/41dd5973332829

 This occurs for any page, even for local ones. I was wondering if
 anyone would be able to shed any light on why this is occuring?

 Thanks,

 Damien

 Does less work with other files?
 What happens if you use a different pager? Eg.  PAGER=more man ls


Hmm no that doesn't work, it just exits immediately without displaying
anything. I also just tried man -Hchromium ls, and that displays a
blank webpage.


Re: [arch-general] Kernel LTS won't boot properly

2010-03-24 Thread Nilesh Govindarajan

On 03/25/2010 02:29 AM, Andreas Radke wrote:

Am Sun, 21 Mar 2010 13:34:40 +0530
schrieb Nilesh Govindarajanli...@itech7.com:


I installed kernel26-lts.

It will boot properly upto Udev then screen will flicker and then
nothing shows up, but it seems like the boot is going on.

Its just after when INIT changes the screen font.



Does it mean you are trying to use KMS for screen resolution? It's an
Intel card? Udev is probably loading either a kms module or some custom
framebuffer module.

-Andy


I have an Intel Mobo and onboard Intel VGA, Sound, USB, Network.

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