Re: [arch-general] system time stucks in a loop

2010-10-24 Thread János Illés
On Fri, Oct 22, 2010 at 14:54, Thomas Jost schno...@schnouki.net wrote:
 Hope this helps.

I removed openntpd completely and disabled time sync. The vm still
freezes eventually.
Also, I cannot set clocksource to anything else than acpi_pm

Let's go back to brainstorming mode, i welcome any new ideas.

-- 
János


Re: [arch-general] man page conflict

2010-10-24 Thread Cédric Girard
On Sat, Oct 23, 2010 at 11:00 PM, Caleb Cushing xenoterrac...@gmail.comwrote:

 (6/6) checking for file conflicts
 [] 100%
 error: failed to commit transaction (conflicting files)
 man-pages: /usr/share/man/man3/aio_init.3.gz exists in filesystem

 pacman -Qo /usr/share/man/man3/aio_init.3.gz
  slave-iv
 /usr/share/man/man3/aio_init.3.gz is owned by libaio 0.3.109-1


 so what's the fix here?
 --
 Caleb Cushing

 http://xenoterracide.com



libaio is in AUR. It's this package which should be corrected (ie should not
include this manpage). Also there is already a closed bug report about this:
https://bugs.archlinux.org/task/21430

-- 
Cédric Girard


[arch-general] How to do this

2010-10-24 Thread Christian

Hi all,
I know that I have to use piping for this, but I want to output the 
errors I get while compiling a program into atext file.

What to type after make then?
Many thanks for any help,
Christian


Re: [arch-general] How to do this

2010-10-24 Thread jesse jaara
If you build it in some terminal emulator you might be ableto save the whole
output into file. If i remember right atleast kdes konsole and yakuake can
do that
On 24.10.2010 17.33, Christian christia...@runbox.com wrote:
 Hi all,
 I know that I have to use piping for this, but I want to output the
 errors I get while compiling a program into atext file.
 What to type after make then?
 Many thanks for any help,
 Christian


Re: [arch-general] How to do this

2010-10-24 Thread jesse jaara
I think i miss understoid you, if you wang the output og make to file you
can put /file/path to end if iy
On 24.10.2010 17.36, jesse jaara jesse.ja...@gmail.com wrote:
 If you build it in some terminal emulator you might be ableto save the
whole
 output into file. If i remember right atleast kdes konsole and yakuake can
 do that
 On 24.10.2010 17.33, Christian christia...@runbox.com wrote:
 Hi all,
 I know that I have to use piping for this, but I want to output the
 errors I get while compiling a program into atext file.
 What to type after make then?
 Many thanks for any help,
 Christian


Re: [arch-general] How to do this

2010-10-24 Thread Lukas Fleischer
On Sun, Oct 24, 2010 at 05:38:35PM +0300, jesse jaara wrote:
 I think i miss understoid you, if you wang the output og make to file you
 can put /file/path to end if iy

 won't work since errors are printed to stderr (not stdout) in most
cases. 2 should do the trick. If there are some errors printed to
stdout, you could use `make 21 foo`.


Re: [arch-general] How to do this

2010-10-24 Thread Christian

Hi,
On 2010-10-24 16:45, Lukas Fleischer wrote:

On Sun, Oct 24, 2010 at 05:38:35PM +0300, jesse jaara wrote:

I think i miss understoid you, if you wang the output og make to file you
can put/file/path to end if iy

 won't work since errors are printed to stderr (not stdout) in most
cases. 2 should do the trick. If there are some errors printed to
stdout, you could use `make 21foo`.
Yes, that helped. Many thanks!





[arch-general] devtools:mkarchroot fails under sudo

2010-10-24 Thread Baho Utot
Following Building in a clean chroot I have encountered the following 
issue, which is related to using sudo mkarchroot
The full path is not included (code posted from mkarchroot) should this 
be fixed?

After patching mkarchroot it works with sudo.

BUILD=/home/devtools

$ sudo mkdir -vp ${BUILD}
mkdir: created directory `/home/devtools'

$ sudo /usr/sbin/mkarchroot ${BUILD}/root base base-devel sudo
:: Synchronizing package databases...

[putolin]

/usr/sbin/mkarchroot: line 178: ldconfig: command not found
/usr/sbin/mkarchroot: line 191: chroot: command not found

/usr/sbin/mkarchroot

line 178:
if [ -d ${working_dir}/lib/modules ]; then
ldconfig -r ${working_dir}
fi

if [ -d ${working_dir}/lib/modules ]; then
/sbin/ldconfig -r ${working_dir}
fi


line 191:
if [ -e ${working_dir}/etc/locale.gen ]; then
echo -e 'en_US.UTF-8 UTF-8\nde_DE.UTF-8 UTF-8'  
${working_dir}/etc/locale.gen

chroot ${working_dir} locale-gen

if [ -e ${working_dir}/etc/locale.gen ]; then
echo -e 'en_US.UTF-8 UTF-8\nde_DE.UTF-8 UTF-8'  
${working_dir}/etc/locale.gen

/usr/sbin/chroot ${working_dir} /usr/sbin/locale-gen



Re: [arch-general] How to do this

2010-10-24 Thread Johannes Held
Christian christia...@runbox.com:
 I know that I have to use piping for this, but I want to output the 
 errors I get while compiling a program into atext file.
 What to type after make then?
You could try tee. man tee.

your_command | tee file_1 file_2


-- 
Gruß, Johannes
http://hehejo.de


signature.asc
Description: PGP signature


Re: [arch-general] How to do this

2010-10-24 Thread Heiko Baums
Am Sun, 24 Oct 2010 16:33:10 +0200
schrieb Christian christia...@runbox.com:

 Hi all,
 I know that I have to use piping for this, but I want to output the 
 errors I get while compiling a program into atext file.
 What to type after make then?
 Many thanks for any help,
 Christian

The easiest way in Arch Linux is building a PKGBUILD, and putting it
to /var/abs/local/packagename.

Then cd to this directory and run `makepkg -L`.

Otherwise run `make  /path/to/logfile 2 /path/to/logfile`. You
probably need to replace  by  and 2 by 2.

Heiko


Re: [arch-general] How to do this

2010-10-24 Thread Baho Utot

On 10/24/10 11:20, Johannes Held wrote:

Christianchristia...@runbox.com:

I know that I have to use piping for this, but I want to output the
errors I get while compiling a program into atext file.
What to type after make then?

You could try tee. man tee.

your_command | tee file_1 file_2




If you need to bail from a calling makefile/bash script if an error 
occurs do this:


LOG=your_log_file

( your_command | tee -a ${LOG}  exit $PIPESTATUS ) # append to a log 
file


( your_command | tee ${LOG}  exit $PIPESTATUS ) # overwrite the log file

Then the calling makefile/bash script will bail on an error and not 
continue.




Re: [arch-general] How to do this

2010-10-24 Thread Matthew Monaco

On 10/24/2010 10:45 AM, Lukas Fleischer wrote:

On Sun, Oct 24, 2010 at 05:38:35PM +0300, jesse jaara wrote:

I think i miss understoid you, if you wang the output og make to file you
can put/file/path to end if iy


 won't work since errors are printed to stderr (not stdout) in most
cases. 2 should do the trick. If there are some errors printed to
stdout, you could use `make 21foo`.



Or just  foo


[arch-general] Kirill Churin wants to stay in touch on LinkedIn

2010-10-24 Thread Kirill Churin
LinkedIn


   
General,

I'd like to add you to my professional network on LinkedIn.

- Kirill Churin

Kirill Churin
Independent Information Technology and Services Professional
Russian Federation

Confirm that you know Kirill Churin
https://www.linkedin.com/e/j2jirp-gfoo3eku-30/isd/1819051422/B-ZHSOlx/


 
-- 
(c) 2010, LinkedIn Corporation


Re: [arch-general] Kirill Churin wants to stay in touch on LinkedIn

2010-10-24 Thread Jeffrey Lynn Parke Jr.
On Sun, Oct 24, 2010 at 8:26 PM, Kirill Churin reflex...@reflexing.ruwrote:

 LinkedIn
 


 General,

 I'd like to add you to my professional network on LinkedIn.

 - Kirill Churin

 Kirill Churin
 Independent Information Technology and Services Professional
 Russian Federation

 Confirm that you know Kirill Churin
 https://www.linkedin.com/e/j2jirp-gfoo3eku-30/isd/1819051422/B-ZHSOlx/



 --
 (c) 2010, LinkedIn Corporation



mass communication at it's best


Re: [arch-general] Kirill Churin wants to stay in touch on LinkedIn

2010-10-24 Thread Kirill Churin
On Mon, Oct 25, 2010 at 8:06 AM, Jeffrey Lynn Parke Jr. 
jeffrey.pa...@gmail.com wrote:

 On Sun, Oct 24, 2010 at 8:26 PM, Kirill Churin reflex...@reflexing.ru
 wrote:

  LinkedIn
  
 
 
  General,
 
  I'd like to add you to my professional network on LinkedIn.
 
  - Kirill Churin
 
  Kirill Churin
  Independent Information Technology and Services Professional
  Russian Federation
 
  Confirm that you know Kirill Churin
  https://www.linkedin.com/e/j2jirp-gfoo3eku-30/isd/1819051422/B-ZHSOlx/
 
 
 
  --
  (c) 2010, LinkedIn Corporation
 


 mass communication at it's best


Please, please, please, sorry for this dumb spam :(

-- 
Kirill Churin
Jabber: reflex...@reflexing.ru, ICQ: 8163230, Skype on demand.

In a world *without walls* or fences, *who needs windows and gates?*


Re: [arch-general] Kirill Churin wants to stay in touch on LinkedIn

2010-10-24 Thread Kyle Bassett
Kirill is about to be a popular guy...

;-)

On Sun, Oct 24, 2010 at 10:06 PM, Jeffrey Lynn Parke Jr. 
jeffrey.pa...@gmail.com wrote:

 On Sun, Oct 24, 2010 at 8:26 PM, Kirill Churin reflex...@reflexing.ru
 wrote:

  LinkedIn
  
 
 
  General,
 
  I'd like to add you to my professional network on LinkedIn.
 
  - Kirill Churin
 
  Kirill Churin
  Independent Information Technology and Services Professional
  Russian Federation
 
  Confirm that you know Kirill Churin
  https://www.linkedin.com/e/j2jirp-gfoo3eku-30/isd/1819051422/B-ZHSOlx/
 
 
 
  --
  (c) 2010, LinkedIn Corporation
 


 mass communication at it's best