You are not logged in.

#26 2014-01-09 19:37:39

lolilolicon
Member
Registered: 2009-03-05
Posts: 1,722

Re: Format of pacman.log

CONCLUSION

Either file is broken, or file is broken.


This silver ladybug at line 28...

Offline

#27 2014-01-09 20:01:12

alphaniner
Member
From: Ancapistan
Registered: 2010-07-12
Posts: 2,810

Re: Format of pacman.log

lolilolicon wrote:
n=1; while read -r line; do [[ -z $line ]] && continue; printf "%s: %s\n" "$(( n++ ))" "$(printf '%s\n' "$line" | file -bi -)"; done < /var/log/pacman.log

Better yet:

while read -r line; do [[ -z $line ]] && continue; printf '%s\n' "$line" | file -bi -; done < /var/log/pacman.log |sort |uniq
text/plain; charset=iso-8859-1
text/plain; charset=us-ascii
text/plain; charset=utf-8

Edit: also, LOL.

Last edited by alphaniner (2014-01-09 20:01:30)


But whether the Constitution really be one thing, or another, this much is certain - that it has either authorized such a government as we have had, or has been powerless to prevent it. In either case, it is unfit to exist.
-Lysander Spooner

Offline

#28 2014-01-09 20:01:51

Trilby
Inspector Parrot
Registered: 2011-11-29
Posts: 30,459
Website

Re: Format of pacman.log

lolilolicon, your test was not very well designed.  Read will read up to newlines or null bytes.  So anything after any null byte in any line was discarded.  So all that shows is that halo's log is all plain text in every line ... up until it isn't plain text in a line.


"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman

Online

#29 2014-01-09 20:45:11

lolilolicon
Member
Registered: 2009-03-05
Posts: 1,722

Re: Format of pacman.log

Trilby wrote:

lolilolicon, your test was not very well designed.  Read will read up to newlines or null bytes.  So anything after any null byte in any line was discarded.  So all that shows is that halo's log is all plain text in every line ... up until it isn't plain text in a line.

Right, I wasn't being strict. Indeed, the bash `read` will stop at NULL (although the zsh `read` doesn't). The other thing my code missed was when the last line of the log file is missing a newline. Probably other edge cases too. And unsuprising, because `read` is designed to deal with text not binary.

This would make up for when the code hits the NULL case...

grep -Pa '\x00' /var/log/pacman.log | cat -v

@halo, try this^ too?

Last edited by lolilolicon (2014-01-09 20:48:06)


This silver ladybug at line 28...

Offline

#30 2014-01-09 23:07:28

halo
Member
From: Denver
Registered: 2013-12-27
Posts: 32

Re: Format of pacman.log

[halo@ArchNemesis ~]$ sudo su
[sudo] password for halo: 
[root@ArchNemesis halo]# grep -Pa '\x00' /var/log/pacman.log | cat -v
^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@[2014-01-01 07:12] [PACMAN] Running 'pacman -Syu'
[root@ArchNemesis halo]# 

^Voodoo

Last edited by halo (2014-01-09 23:11:07)


I am up to neither good nor bad, but what serves me.

Offline

#31 2014-01-10 06:32:34

x33a
Forum Fellow
Registered: 2009-08-15
Posts: 4,587

Re: Format of pacman.log

lolilolicon wrote:

Gets me curious... What if you run `file` on the log line by line?

n=1; while read -r line; do [[ -z $line ]] && continue; printf "%s: %s\n" "$(( n++ ))" "$(printf '%s\n' "$line" | file -bi -)"; done < /var/log/pacman.log

Is there any line that's not "text/plain; charset=us-ascii" or "text/plain; charset=utf-8"?

Thanks, found the culprit:

[2012-11-08 20:36] [m[1m[34m:: [m[1mStopping BIND Extension daemon[m    [m[1m[34m[[m[36mBUSY[m[1m[34m][m    [m[1m[34m[[m[1m[31mFAIL[m[1m[34m][m 
[2012-11-08 20:36] [m[1m[34m:: [m[1mStopping Apple Darwin Multicast DNS / DNS Service Discovery daemon[m    [m[1m[34m[[m[36mBUSY[m[1m[34m][m    [m[1m[34m[[m[1m[31mFAIL[m[1m[34m][m 

id20dLF.png

Bash colour codes...

After removing these lines, file yields:

UTF-8 Unicode text, with very long lines

Now, I can sleep peacefully tongue

Offline

#32 2014-01-10 10:33:31

lolilolicon
Member
Registered: 2009-03-05
Posts: 1,722

Re: Format of pacman.log

@x33a, is that vim? Is it "^0" or "^O"? "^O" should be the SI (shift in) character (which does seem to make `file` detect it as binary), but what is "^0"?!

halo wrote:
[halo@ArchNemesis ~]$ sudo su
[sudo] password for halo: 
[root@ArchNemesis halo]# grep -Pa '\x00' /var/log/pacman.log | cat -v
^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@[2014-01-01 07:12] [PACMAN] Running 'pacman -Syu'
[root@ArchNemesis halo]# 

^Voodoo

Wow, how come, it's like a new year's day present for you... Any clue as to the cause? What happens in the lines before this line?


This silver ladybug at line 28...

Offline

#33 2014-01-10 13:24:23

x33a
Forum Fellow
Registered: 2009-08-15
Posts: 4,587

Re: Format of pacman.log

lolilolicon wrote:

@x33a, is that vim? Is it "^0" or "^O"? "^O" should be the SI (shift in) character (which does seem to make `file` detect it as binary), but what is "^0"?!

Yeah, it's Vim. I am not sure if it's zero or capital 'o', thanks to my font ttf-droid. And, since I deleted the offending lines, I cannot confirm it using a different font hmm

Edit: Found a copy of pacman.log in a backup! I can confirm that it is the 'SHIFT IN' character.

BrBEHqA.png

Last edited by x33a (2014-01-10 13:41:20)

Offline

#34 2014-01-10 14:52:21

halo
Member
From: Denver
Registered: 2013-12-27
Posts: 32

Re: Format of pacman.log

halo wrote:
[halo@ArchNemesis ~]$ sudo su
[sudo] password for halo: 
[root@ArchNemesis halo]# grep -Pa '\x00' /var/log/pacman.log | cat -v
^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@[2014-01-01 07:12] [PACMAN] Running 'pacman -Syu'
[root@ArchNemesis halo]# 

^Voodoo

Wow, how come, it's like a new year's day present for you... Any clue as to the cause? What happens in the lines before this line?

I have no idea. I just put in your script, and this is what popped out. Nothing else happens in the lines before this. This the complete output of the commands given.


I am up to neither good nor bad, but what serves me.

Offline

#35 2014-01-10 15:02:34

lolilolicon
Member
Registered: 2009-03-05
Posts: 1,722

Re: Format of pacman.log

@x33a Yeah, AFAIK there is no caret notation "^0", but there should be a difference between '0' and 'O' in any font D:

@halo No I mean what are the lines before this line in pacman.log?

Last edited by lolilolicon (2014-01-10 15:03:51)


This silver ladybug at line 28...

Offline

#36 2014-01-10 21:32:01

halo
Member
From: Denver
Registered: 2013-12-27
Posts: 32

Re: Format of pacman.log

lolilolicon wrote:

@x33a Yeah, AFAIK there is no caret notation "^0", but there should be a difference between '0' and 'O' in any font D:

@halo No I mean what are the lines before this line in pacman.log?


I can't scroll up that far in term or rxvt.


I am up to neither good nor bad, but what serves me.

Offline

#37 2014-01-10 23:06:33

Inxsible
Forum Fellow
From: Chicago
Registered: 2008-06-09
Posts: 9,183

Re: Format of pacman.log

halo, use nano, more, less or any other text editor


Forum Rules

There's no such thing as a stupid question, but there sure are a lot of inquisitive idiots !

Offline

#38 2014-01-10 23:49:10

halo
Member
From: Denver
Registered: 2013-12-27
Posts: 32

Re: Format of pacman.log

The issue is that my file isn't recognized as ascii and in turns just considers a "data"  format so it will not open up in a text editor. That's part of why we are here in the first place. I'll try nano again.


I am up to neither good nor bad, but what serves me.

Offline

#39 2014-01-11 00:06:03

halo
Member
From: Denver
Registered: 2013-12-27
Posts: 32

Re: Format of pacman.log

OK. Nano opened it this time.

But it is near impossible to cut and paste all of that page after page even setting markers at the beginning and alt+t to the end, it still only wants to do it page by page.

I have my limits of mindless activity. I don't think the results would even be worth the work.


I am up to neither good nor bad, but what serves me.

Offline

#40 2014-01-11 07:45:43

halo
Member
From: Denver
Registered: 2013-12-27
Posts: 32

Re: Format of pacman.log

Well this is no longer an issue (for me) after renaming to pacman.log.bak. It started a new log that is ascii formated instead of seeing it as a "data" file.


I am up to neither good nor bad, but what serves me.

Offline

#41 2014-01-11 08:16:43

lolilolicon
Member
Registered: 2009-03-05
Posts: 1,722

Re: Format of pacman.log

@halo a simple way to do it is

grep -Pa -B10 '\x00' /var/log/pacman.log.bak | cat -v

which also prints 10 lines before that matching line.

Bonus hint: you don't need to manually copy-paste, but use `xsel` instead:

foo | xsel -bi

Also, your trouble with nano seems to suggest a better text editor (such as vim) is in order. BTW you could have used `less` (a "pager") as suggested by Inxsible. It may complain about file being binary, but it will allow you to view it anyway.

Last edited by lolilolicon (2014-01-11 08:21:10)


This silver ladybug at line 28...

Offline

#42 2014-01-11 10:05:11

x33a
Forum Fellow
Registered: 2009-08-15
Posts: 4,587

Re: Format of pacman.log

lolilolicon wrote:

BTW you could have used `less` (a "pager") as suggested by Inxsible. It may complain about file being binary, but it will allow you to view it anyway.

Or `strings`.

Offline

#43 2014-01-11 10:11:45

lolilolicon
Member
Registered: 2009-03-05
Posts: 1,722

Re: Format of pacman.log

No strings will would filter things out, while we want the raw stuff...


This silver ladybug at line 28...

Offline

#44 2014-01-11 17:47:40

halo
Member
From: Denver
Registered: 2013-12-27
Posts: 32

Re: Format of pacman.log

[halo@ArchNemesis ~]$ grep -Pa -B1000 '\x00' /var/log/pacman.log.bak | cat -v
[2013-12-31 08:14] [PACMAN] Running 'pacman -r /mnt -Sy --cachedir=/mnt/var/cache/pacman/pkg base'
[2013-12-31 08:14] [PACMAN] synchronizing package lists
[2013-12-31 08:21] [PACMAN] installed linux-api-headers (3.12.4-1)
[2013-12-31 08:21] [PACMAN] installed tzdata (2013i-1)
[2013-12-31 08:21] [PACMAN] installed iana-etc (2.30-4)
[2013-12-31 08:21] [PACMAN] installed filesystem (2013.05-2)
[2013-12-31 08:21] [PACMAN] installed glibc (2.18-11)
[2013-12-31 08:21] [PACMAN] installed ncurses (5.9-6)
[2013-12-31 08:21] [PACMAN] installed readline (6.2.004-2)
[2013-12-31 08:21] [PACMAN] installed bash (4.2.045-5)
[2013-12-31 08:21] [PACMAN] installed bzip2 (1.0.6-5)
[2013-12-31 08:21] [PACMAN] installed gcc-libs (4.8.2-7)
[2013-12-31 08:21] [PACMAN] installed db (5.3.28-1)
[2013-12-31 08:21] [PACMAN] installed zlib (1.2.8-3)
[2013-12-31 08:21] [PACMAN] installed cracklib (2.9.0-2)
[2013-12-31 08:21] [PACMAN] installed libgssglue (0.4-2)
[2013-12-31 08:21] [PACMAN] installed libtirpc (0.2.3-2)
[2013-12-31 08:21] [PACMAN] installed pambase (20130928-1)
[2013-12-31 08:21] [PACMAN] installed pam (1.1.8-2)
[2013-12-31 08:21] [PACMAN] installed attr (2.4.47-1)
[2013-12-31 08:21] [PACMAN] installed acl (2.2.52-2)
[2013-12-31 08:21] [PACMAN] installed gmp (5.1.3-2)
[2013-12-31 08:21] [PACMAN] installed libcap (2.22-5)
[2013-12-31 08:21] [PACMAN] installed gdbm (1.10-3)
[2013-12-31 08:21] [PACMAN] installed perl (5.18.1-1)
[2013-12-31 08:21] [PACMAN] installed openssl (1.0.1.e-5)
[2013-12-31 08:21] [PACMAN] installed coreutils (8.22-2)
[2013-12-31 08:21] [PACMAN] installed run-parts (4.4-1)
[2013-12-31 08:21] [PACMAN] installed cronie (1.4.11-1)
[2013-12-31 08:21] [PACMAN] installed expat (2.1.0-3)
[2013-12-31 08:21] [PACMAN] installed dbus (1.6.18-1)
[2013-12-31 08:21] [PACMAN] installed pcre (8.34-1)
[2013-12-31 08:21] [PACMAN] installed libffi (3.0.13-4)
[2013-12-31 08:21] [PACMAN] installed glib2 (2.38.2-1)
[2013-12-31 08:21] [PACMAN] installed kbd (2.0.1-1)
[2013-12-31 08:21] [PACMAN] installed kmod (15-1)
[2013-12-31 08:21] [PACMAN] installed hwids (20130915.1-1)
[2013-12-31 08:21] [PACMAN] installed libgpg-error (1.12-1)
[2013-12-31 08:21] [PACMAN] installed libgcrypt (1.5.3-1)
[2013-12-31 08:21] [PACMAN] installed shadow (4.1.5.1-7)
[2013-12-31 08:21] [PACMAN] installed util-linux (2.24-2)
[2013-12-31 08:21] [PACMAN] installed xz (5.0.5-2)
[2013-12-31 08:21] [ALPM-SCRIPTLET] Initializing machine ID from random generator.
[2013-12-31 08:21] [ALPM-SCRIPTLET] ln -s '/usr/lib/systemd/system/getty@.service' '/etc/systemd/system/getty.target.wants/getty@tty1.service'
[2013-12-31 08:21] [ALPM-SCRIPTLET] :: Append 'init=/usr/lib/systemd/systemd' to your kernel command line in your
[2013-12-31 08:21] [ALPM-SCRIPTLET]    bootloader to replace sysvinit with systemd, or install systemd-sysvcompat
[2013-12-31 08:21] [PACMAN] installed systemd (208-3)
[2013-12-31 08:21] [PACMAN] installed device-mapper (2.02.104-1)
[2013-12-31 08:21] [PACMAN] installed popt (1.16-7)
[2013-12-31 08:21] [PACMAN] installed cryptsetup (1.6.3-1)
[2013-12-31 08:21] [PACMAN] installed dhcpcd (6.1.0-1)
[2013-12-31 08:21] [PACMAN] installed diffutils (3.3-1)
[2013-12-31 08:21] [PACMAN] installed e2fsprogs (1.42.8-2)
[2013-12-31 08:21] [PACMAN] installed file (5.16-1)
[2013-12-31 08:21] [PACMAN] installed findutils (4.4.2-5)
[2013-12-31 08:21] [PACMAN] installed mpfr (3.1.2.p5-1)
[2013-12-31 08:21] [PACMAN] installed gawk (4.1.0-2)
[2013-12-31 08:21] [PACMAN] installed libunistring (0.9.3-6)
[2013-12-31 08:21] [PACMAN] installed gettext (0.18.3.1-2)
[2013-12-31 08:21] [PACMAN] installed grep (2.15-1)
[2013-12-31 08:21] [PACMAN] installed less (458-1)
[2013-12-31 08:21] [PACMAN] installed gzip (1.6-1)
[2013-12-31 08:21] [PACMAN] installed inetutils (1.9.1.341-2)
[2013-12-31 08:21] [PACMAN] installed iptables (1.4.20-1)
[2013-12-31 08:21] [PACMAN] installed iproute2 (3.11.0-1)
[2013-12-31 08:21] [PACMAN] installed sysfsutils (2.1.0-8)
[2013-12-31 08:21] [PACMAN] installed iputils (20121221-3)
[2013-12-31 08:21] [PACMAN] installed jfsutils (1.1.15-4)
[2013-12-31 08:21] [PACMAN] installed licenses (20130203-1)
[2013-12-31 08:21] [PACMAN] installed linux-firmware (20131013.7d0c7a8-1)
[2013-12-31 08:21] [PACMAN] installed mkinitcpio-busybox (1.21.1-2)
[2013-12-31 08:21] [PACMAN] installed lzo2 (2.06-3)
[2013-12-31 08:21] [PACMAN] installed libarchive (3.1.2-4)
[2013-12-31 08:21] [PACMAN] installed mkinitcpio (16-2)
[2013-12-31 08:22] [ALPM-SCRIPTLET] >>> Updating module dependencies. Please wait ...
[2013-12-31 08:22] [ALPM-SCRIPTLET] >>> Generating initial ramdisk, using mkinitcpio.  Please wait...
[2013-12-31 08:22] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'default'
[2013-12-31 08:22] [ALPM-SCRIPTLET]   -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
[2013-12-31 08:22] [ALPM-SCRIPTLET] ==> Starting build: 3.12.6-1-ARCH
[2013-12-31 08:22] [ALPM-SCRIPTLET]   -> Running build hook: [base]
[2013-12-31 08:22] [ALPM-SCRIPTLET]   -> Running build hook: [udev]
[2013-12-31 08:22] [ALPM-SCRIPTLET]   -> Running build hook: [autodetect]
[2013-12-31 08:22] [ALPM-SCRIPTLET]   -> Running build hook: [modconf]
[2013-12-31 08:22] [ALPM-SCRIPTLET]   -> Running build hook: [block]
[2013-12-31 08:22] [ALPM-SCRIPTLET]   -> Running build hook: [filesystems]
[2013-12-31 08:22] [ALPM-SCRIPTLET]   -> Running build hook: [keyboard]
[2013-12-31 08:22] [ALPM-SCRIPTLET]   -> Running build hook: [fsck]
[2013-12-31 08:22] [ALPM-SCRIPTLET] ==> Generating module dependencies
[2013-12-31 08:22] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux.img
[2013-12-31 08:22] [ALPM-SCRIPTLET] ==> Image generation successful
[2013-12-31 08:22] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'fallback'
[2013-12-31 08:22] [ALPM-SCRIPTLET]   -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
[2013-12-31 08:22] [ALPM-SCRIPTLET] ==> Starting build: 3.12.6-1-ARCH
[2013-12-31 08:22] [ALPM-SCRIPTLET]   -> Running build hook: [base]
[2013-12-31 08:22] [ALPM-SCRIPTLET]   -> Running build hook: [udev]
[2013-12-31 08:22] [ALPM-SCRIPTLET]   -> Running build hook: [modconf]
[2013-12-31 08:22] [ALPM-SCRIPTLET]   -> Running build hook: [block]
[2013-12-31 08:22] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: aic94xx
[2013-12-31 08:22] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: smsmdtv
[2013-12-31 08:22] [ALPM-SCRIPTLET]   -> Running build hook: [filesystems]
[2013-12-31 08:22] [ALPM-SCRIPTLET]   -> Running build hook: [keyboard]
[2013-12-31 08:22] [ALPM-SCRIPTLET]   -> Running build hook: [fsck]
[2013-12-31 08:22] [ALPM-SCRIPTLET] ==> Generating module dependencies
[2013-12-31 08:22] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
[2013-12-31 08:22] [ALPM-SCRIPTLET] ==> Image generation successful
[2013-12-31 08:22] [PACMAN] installed linux (3.12.6-1)
[2013-12-31 08:22] [PACMAN] installed logrotate (3.8.7-1)
[2013-12-31 08:22] [PACMAN] installed lvm2 (2.02.104-1)
[2013-12-31 08:22] [PACMAN] installed groff (1.22.2-5)
[2013-12-31 08:22] [PACMAN] installed libpipeline (1.2.6-1)
[2013-12-31 08:22] [ALPM-SCRIPTLET] it's recommended to create an initial
[2013-12-31 08:22] [ALPM-SCRIPTLET] database running as root:
[2013-12-31 08:22] [ALPM-SCRIPTLET] "/usr/bin/mandb --quiet"
[2013-12-31 08:22] [PACMAN] installed man-db (2.6.5-1)
[2013-12-31 08:22] [PACMAN] installed man-pages (3.55-1)
[2013-12-31 08:22] [PACMAN] installed mdadm (3.3-2)
[2013-12-31 08:22] [PACMAN] installed nano (2.2.6-2)
[2013-12-31 08:22] [PACMAN] installed openresolv (3.5.6-1)
[2013-12-31 08:22] [PACMAN] installed netctl (1.4-2)
[2013-12-31 08:22] [PACMAN] installed sed (4.2.2-3)
[2013-12-31 08:22] [PACMAN] installed ca-certificates (20130906-1)
[2013-12-31 08:22] [PACMAN] installed libssh2 (1.4.3-2)
[2013-12-31 08:22] [PACMAN] installed curl (7.34.0-1)
[2013-12-31 08:22] [PACMAN] installed pth (2.0.7-4)
[2013-12-31 08:22] [PACMAN] installed libksba (1.3.0-1)
[2013-12-31 08:22] [PACMAN] installed libassuan (2.1.1-1)
[2013-12-31 08:22] [PACMAN] installed pinentry (0.8.3-1)
[2013-12-31 08:22] [PACMAN] installed libsasl (2.1.26-6)
[2013-12-31 08:22] [PACMAN] installed libldap (2.4.38-1)
[2013-12-31 08:22] [PACMAN] installed dirmngr (1.1.1-1)
[2013-12-31 08:22] [PACMAN] installed gnupg (2.0.22-1)
[2013-12-31 08:22] [PACMAN] installed gpgme (1.4.3-1)
[2013-12-31 08:22] [PACMAN] installed pacman-mirrorlist (20130830-1)
[2013-12-31 08:22] [PACMAN] installed archlinux-keyring (20131027-1)
[2013-12-31 08:22] [PACMAN] installed pacman (4.1.2-4)
[2013-12-31 08:22] [PACMAN] installed pciutils (3.2.0-4)
[2013-12-31 08:22] [PACMAN] installed pcmciautils (018-7)
[2013-12-31 08:22] [PACMAN] installed procps-ng (3.3.9-1)
[2013-12-31 08:22] [PACMAN] installed psmisc (22.20-1)
[2013-12-31 08:22] [PACMAN] installed reiserfsprogs (3.6.24-1)
[2013-12-31 08:22] [PACMAN] installed s-nail (14.5-1)
[2013-12-31 08:22] [PACMAN] installed systemd-sysvcompat (208-3)
[2013-12-31 08:22] [PACMAN] installed tar (1.27.1-1)
[2013-12-31 08:22] [PACMAN] installed texinfo (5.2-2)
[2013-12-31 08:22] [PACMAN] installed libusbx (1.0.17-1)
[2013-12-31 08:22] [PACMAN] installed usbutils (007-1)
[2013-12-31 08:22] [PACMAN] installed vi (1:050325-3)
[2013-12-31 08:22] [PACMAN] installed which (2.20-6)
[2013-12-31 08:22] [PACMAN] installed xfsprogs (3.1.11-2)
[2013-12-31 08:32] [PACMAN] Running 'pacman -S iw wpa_supplicant'
[2013-12-31 08:32] [PACMAN] installed libnl (3.2.23-1)
[2013-12-31 08:32] [PACMAN] installed iw (3.11-1)
[2013-12-31 08:32] [PACMAN] installed wpa_supplicant (2.0-4)
[2013-12-31 08:33] [PACMAN] Running 'pacman -S dialog'
[2013-12-31 08:33] [PACMAN] installed dialog (1:1.2_20130928-1)
[2013-12-31 08:34] [PACMAN] Running 'pacman -S grub'
[2013-12-31 08:34] [ALPM-SCRIPTLET] Generating grub.cfg.example config file...
[2013-12-31 08:34] [ALPM-SCRIPTLET] This may fail on some machines running a custom kernel.
[2013-12-31 08:34] [ALPM-SCRIPTLET] done.
[2013-12-31 08:34] [PACMAN] installed grub (1:2.00.1282.g5ae5c54-1)
[2013-12-31 08:35] [PACMAN] Running 'pacman -S os-prober'
[2013-12-31 08:35] [PACMAN] installed os-prober (1.58-1)
[2013-12-31 08:59] [PACMAN] Running 'pacman -S wpa_actiond'
[2013-12-31 08:59] [PACMAN] installed wpa_actiond (1.4-2)
[2013-12-31 09:03] [PACMAN] Running 'pacman -S xorg-sever xorg-server-utild xorg-xinit mesa'
[2013-12-31 09:04] [PACMAN] Running 'pacman -S xorg-server xorg-server-utils xorg-xinit mesa'
[2013-12-31 09:06] [PACMAN] installed xproto (7.0.25-1)
[2013-12-31 09:06] [PACMAN] installed libxdmcp (1.1.1-1)
[2013-12-31 09:06] [PACMAN] installed libpng (1.6.7-1)
[2013-12-31 09:06] [PACMAN] installed freetype2 (2.5.2-1)
[2013-12-31 09:06] [PACMAN] installed libfontenc (1.1.2-1)
[2013-12-31 09:06] [PACMAN] installed fontsproto (2.1.2-1)
[2013-12-31 09:06] [PACMAN] installed libxfont (1.4.6-1)
[2013-12-31 09:06] [PACMAN] installed libpciaccess (0.13.2-2)
[2013-12-31 09:06] [PACMAN] installed libdrm (2.4.50-1)
[2013-12-31 09:06] [PACMAN] installed pixman (0.32.4-1)
[2013-12-31 09:06] [PACMAN] installed libxau (1.0.8-2)
[2013-12-31 09:06] [PACMAN] installed xkeyboard-config (2.10.1-1)
[2013-12-31 09:06] [PACMAN] installed xcb-proto (1.10-1)
[2013-12-31 09:06] [PACMAN] installed libxcb (1.10-1)
[2013-12-31 09:06] [PACMAN] installed kbproto (1.0.6-1)
[2013-12-31 09:06] [PACMAN] installed libx11 (1.6.2-1)
[2013-12-31 09:06] [PACMAN] installed libxkbfile (1.0.8-1)
[2013-12-31 09:06] [PACMAN] installed xorg-xkbcomp (1.2.4-1)
[2013-12-31 09:06] [PACMAN] installed xorg-setxkbmap (1.3.0-1)
[2013-12-31 09:06] [PACMAN] installed xorg-fonts-encodings (1.0.4-3)
[2013-12-31 09:06] [PACMAN] installed xorg-fonts-alias (1.0.3-1)
[2013-12-31 09:06] [PACMAN] installed xorg-bdftopcf (1.0.4-1)
[2013-12-31 09:06] [PACMAN] installed xorg-mkfontscale (1.1.1-1)
[2013-12-31 09:06] [PACMAN] installed xorg-mkfontdir (1.0.7-1)
[2013-12-31 09:06] [PACMAN] installed xorg-font-util (1.3.0-1)
[2013-12-31 09:06] [PACMAN] installed xorg-font-utils (7.6-3)
[2013-12-31 09:06] [ALPM-SCRIPTLET]   
[2013-12-31 09:06] [ALPM-SCRIPTLET]   Fontconfig configuration is done via /etc/fonts/conf.avail and conf.d.
[2013-12-31 09:06] [ALPM-SCRIPTLET]   Read /etc/fonts/conf.d/README for more information.
[2013-12-31 09:06] [ALPM-SCRIPTLET] 
[2013-12-31 09:06] [ALPM-SCRIPTLET]   Configuration via /etc/fonts/local.conf is still possible,
[2013-12-31 09:06] [ALPM-SCRIPTLET]   but is no longer recommended for options available in conf.avail.
[2013-12-31 09:06] [ALPM-SCRIPTLET] 
[2013-12-31 09:06] [ALPM-SCRIPTLET]   Main systemwide configuration should be done by symlinks
[2013-12-31 09:06] [ALPM-SCRIPTLET]   (especially for autohinting, sub-pixel and lcdfilter):
[2013-12-31 09:06] [ALPM-SCRIPTLET]   
[2013-12-31 09:06] [ALPM-SCRIPTLET]   cd /etc/fonts/conf.d
[2013-12-31 09:06] [ALPM-SCRIPTLET]   ln -s ../conf.avail/XX-foo.conf
[2013-12-31 09:06] [ALPM-SCRIPTLET]   
[2013-12-31 09:06] [ALPM-SCRIPTLET]   Check also https://wiki.archlinux.org/index.php/Font_Configuration
[2013-12-31 09:06] [ALPM-SCRIPTLET]   and https://wiki.archlinux.org/index.php/Fonts.
[2013-12-31 09:06] [ALPM-SCRIPTLET] 
[2013-12-31 09:06] [ALPM-SCRIPTLET] updating font cache... done.
[2013-12-31 09:06] [PACMAN] installed fontconfig (2.11.0-1)
[2013-12-31 09:06] [ALPM-SCRIPTLET] Updating font cache... done.
[2013-12-31 09:06] [PACMAN] installed xorg-fonts-misc (1.0.1-2)
[2013-12-31 09:06] [PACMAN] installed xorg-server-common (1.14.5-1)
[2013-12-31 09:06] [PACMAN] installed mtdev (1.1.4-1)
[2013-12-31 09:06] [PACMAN] installed xf86-input-evdev (2.8.2-1)
[2013-12-31 09:06] [PACMAN] installed xorg-server (1.14.5-1)
[2013-12-31 09:06] [PACMAN] installed libice (1.0.8-2)
[2013-12-31 09:06] [PACMAN] installed xorg-iceauth (1.0.6-1)
[2013-12-31 09:06] [PACMAN] installed xorg-sessreg (1.0.8-1)
[2013-12-31 09:06] [PACMAN] installed xorg-xcmsdb (1.0.4-1)
[2013-12-31 09:06] [PACMAN] installed xcb-util (0.3.9-1)
[2013-12-31 09:06] [PACMAN] installed xorg-xbacklight (1.2.0-1)
[2013-12-31 09:06] [PACMAN] installed xextproto (7.2.1-1)
[2013-12-31 09:06] [PACMAN] installed libxext (1.3.2-1)
[2013-12-31 09:06] [PACMAN] installed xf86vidmodeproto (2.3.1-2)
[2013-12-31 09:06] [PACMAN] installed libxxf86vm (1.1.3-1)
[2013-12-31 09:06] [PACMAN] installed xorg-xgamma (1.0.5-1)
[2013-12-31 09:06] [PACMAN] installed libsm (1.2.2-2)
[2013-12-31 09:06] [PACMAN] installed libxt (1.1.4-1)
[2013-12-31 09:06] [PACMAN] installed libxmu (1.1.2-1)
[2013-12-31 09:06] [PACMAN] installed xorg-xhost (1.0.6-1)
[2013-12-31 09:06] [PACMAN] installed inputproto (2.3-1)
[2013-12-31 09:06] [PACMAN] installed libxi (1.7.2-1)
[2013-12-31 09:06] [PACMAN] installed renderproto (0.11.1-2)
[2013-12-31 09:06] [PACMAN] installed libxrender (0.9.8-1)
[2013-12-31 09:06] [PACMAN] installed randrproto (1.4.0-1)
[2013-12-31 09:06] [PACMAN] installed libxrandr (1.4.2-2)
[2013-12-31 09:06] [PACMAN] installed xorg-xrandr (1.4.1-1)
[2013-12-31 09:06] [PACMAN] installed xineramaproto (1.2.1-2)
[2013-12-31 09:06] [PACMAN] installed libxinerama (1.1.3-2)
[2013-12-31 09:06] [PACMAN] installed xorg-xinput (1.6.1-1)
[2013-12-31 09:06] [PACMAN] installed xorg-xmodmap (1.0.8-1)
[2013-12-31 09:06] [PACMAN] installed mcpp (2.7.2-4)
[2013-12-31 09:06] [PACMAN] installed xorg-xrdb (1.1.0-1)
[2013-12-31 09:06] [PACMAN] installed xorg-xrefresh (1.0.5-1)
[2013-12-31 09:06] [PACMAN] installed xorg-xset (1.2.3-1)
[2013-12-31 09:06] [PACMAN] installed fixesproto (5.0-2)
[2013-12-31 09:06] [PACMAN] installed libxfixes (5.0.1-1)
[2013-12-31 09:06] [PACMAN] installed libxcursor (1.1.14-1)
[2013-12-31 09:06] [PACMAN] installed xorg-xsetroot (1.1.1-1)
[2013-12-31 09:06] [PACMAN] installed xorg-server-utils (7.6-3)
[2013-12-31 09:06] [PACMAN] installed xorg-xauth (1.0.8-1)
[2013-12-31 09:06] [PACMAN] installed xorg-xinit (1.3.3-3)
[2013-12-31 09:06] [PACMAN] installed libvdpau (0.7-1)
[2013-12-31 09:06] [PACMAN] installed wayland (1.3.0-1)
[2013-12-31 09:06] [PACMAN] installed damageproto (1.2.1-2)
[2013-12-31 09:06] [PACMAN] installed libxdamage (1.1.4-1)
[2013-12-31 09:06] [PACMAN] installed elfutils (0.157-1)
[2013-12-31 09:06] [PACMAN] installed llvm-libs (3.3-1)
[2013-12-31 09:07] [PACMAN] installed mesa (10.0.1-1)
[2013-12-31 09:09] [PACMAN] Running 'pacman -S xf86-video-ati'
[2013-12-31 09:10] [PACMAN] installed mesa-libgl (10.0.1-1)
[2013-12-31 09:10] [PACMAN] installed ati-dri (10.0.1-1)
[2013-12-31 09:10] [PACMAN] installed glamor-egl (0.5.1-1)
[2013-12-31 09:10] [PACMAN] installed xf86-video-ati (1:7.2.0-1)
[2013-12-31 09:10] [PACMAN] Running 'pacman -S xf86-input-synaptics'
[2013-12-31 09:10] [PACMAN] installed recordproto (1.14.2-1)
[2013-12-31 09:10] [PACMAN] installed libxtst (1.2.2-1)
[2013-12-31 09:10] [PACMAN] installed xf86-input-synaptics (1.7.2-1)
[2013-12-31 09:11] [PACMAN] Running 'pacman -S slim yaourt'
[2013-12-31 09:11] [PACMAN] Running 'pacman -S slim'
[2013-12-31 09:11] [PACMAN] installed libjpeg-turbo (1.3.0-4)
[2013-12-31 09:11] [PACMAN] installed libxft (2.3.1-2)
[2013-12-31 09:11] [PACMAN] installed slim (1.3.6-3)
[2013-12-31 09:12] [PACMAN] Running 'pacman -S git'
[2013-12-31 09:12] [PACMAN] installed perl-error (0.17021-1)
[2013-12-31 09:12] [PACMAN] installed git (1.8.5.2-1)
[2013-12-31 09:18] [PACMAN] Running 'pacman -S dialog'
[2013-12-31 09:19] [PACMAN] reinstalled dialog (1:1.2_20130928-1)
[2013-12-31 16:48] [PACMAN] Running 'pacman -Sy yaourt'
[2013-12-31 16:48] [PACMAN] synchronizing package lists
[2013-12-31 16:51] [PACMAN] Running 'pacman -Sy yaourt'
[2013-12-31 16:51] [PACMAN] synchronizing package lists
[2013-12-31 16:51] [PACMAN] installed yajl (2.0.4-2)
[2013-12-31 16:51] [PACMAN] installed package-query (1.2-2)
[2013-12-31 16:51] [PACMAN] installed yaourt (1.3-1)
[2013-12-31 16:52] [PACMAN] Running 'pacman -S rsync'
[2013-12-31 16:52] [PACMAN] installed rsync (3.1.0-1)
[2013-12-31 16:52] [PACMAN] Running 'pacman -S wget'
[2013-12-31 16:53] [PACMAN] installed libidn (1.28-2)
[2013-12-31 16:53] [PACMAN] installed wget (1.14-3)
[2013-12-31 16:53] [PACMAN] Running 'pacman -S make'
[2013-12-31 16:54] [PACMAN] installed libltdl (2.4.2-12)
[2013-12-31 16:54] [PACMAN] installed gc (7.2.d-2)
[2013-12-31 16:54] [PACMAN] installed guile (2.0.9-1)
[2013-12-31 16:54] [PACMAN] installed make (4.0-2)
[2013-12-31 16:54] [PACMAN] Running 'pacman -S gksu sudo'
[2013-12-31 17:03] [PACMAN] installed libxml2 (2.9.1-5)
[2013-12-31 17:03] [PACMAN] installed nspr (4.10.2-1)
[2013-12-31 17:03] [PACMAN] installed js (17.0.0-1)
[2013-12-31 17:03] [PACMAN] installed polkit (0.112-1)
[2013-12-31 17:03] [PACMAN] installed dbus-glib (0.100.2-1)
[2013-12-31 17:03] [PACMAN] installed gconf (3.2.6-3)
[2013-12-31 17:03] [PACMAN] installed atk (2.10.0-1)
[2013-12-31 17:03] [PACMAN] installed libdatrie (0.2.6-1)
[2013-12-31 17:03] [PACMAN] installed libthai (0.1.19-1)
[2013-12-31 17:03] [PACMAN] installed cairo (1.12.16-1)
[2013-12-31 17:03] [PACMAN] installed graphite (1:1.2.4-1)
[2013-12-31 17:03] [PACMAN] installed harfbuzz (0.9.24-1)
[2013-12-31 17:03] [PACMAN] installed pango (1.36.1-1)
[2013-12-31 17:03] [PACMAN] installed compositeproto (0.4.2-2)
[2013-12-31 17:03] [PACMAN] installed libxcomposite (0.4.4-1)
[2013-12-31 17:03] [PACMAN] installed shared-mime-info (1.2-1)
[2013-12-31 17:03] [PACMAN] installed libtasn1 (3.4-1)
[2013-12-31 17:03] [PACMAN] installed nettle (2.7.1-1)
[2013-12-31 17:03] [PACMAN] installed p11-kit (0.20.1-1)
[2013-12-31 17:03] [PACMAN] installed gnutls (3.2.8-1)
[2013-12-31 17:03] [PACMAN] installed libtiff (4.0.3-4)
[2013-12-31 17:03] [PACMAN] installed keyutils (1.5.8-1)
[2013-12-31 17:03] [PACMAN] installed krb5 (1.11.4-1)
[2013-12-31 17:03] [PACMAN] installed libdaemon (0.14-2)
[2013-12-31 17:03] [PACMAN] installed avahi (0.6.31-11)
[2013-12-31 17:03] [PACMAN] installed libcups (1.7.0-2)
[2013-12-31 17:03] [PACMAN] installed jasper (1.900.1-10)
[2013-12-31 17:03] [PACMAN] installed gdk-pixbuf2 (2.30.2-1)
[2013-12-31 17:03] [PACMAN] installed hicolor-icon-theme (0.12-2)
[2013-12-31 17:03] [PACMAN] installed gtk-update-icon-cache (2.24.22-1)
[2013-12-31 17:03] [PACMAN] installed gtk2 (2.24.22-1)
[2013-12-31 17:03] [PACMAN] installed libgnome-keyring (3.10.1-1)
[2013-12-31 17:03] [PACMAN] installed libgtop (2.28.5-1)
[2013-12-31 17:03] [PACMAN] installed startup-notification (0.12-4)
[2013-12-31 17:03] [ALPM-SCRIPTLET] 
[2013-12-31 17:03] [ALPM-SCRIPTLET] (gconftool-2:1261): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
[2013-12-31 17:03] [ALPM-SCRIPTLET] Unable to autolaunch a dbus-daemon without a $DISPLAY for X11
[2013-12-31 17:03] [PACMAN] installed libgksu (2.0.12-5)
[2013-12-31 17:03] [PACMAN] installed gksu (2.0.2-4)
[2013-12-31 17:03] [PACMAN] installed sudo (1.8.8-1)
[2013-12-31 17:09] [PACMAN] Running 'pacman --color auto -Syy'
[2013-12-31 17:09] [PACMAN] synchronizing package lists
[2013-12-31 17:14] [PACMAN] Running 'pacman -S ttf-dejavu'
[2013-12-31 17:14] [PACMAN] installed ttf-dejavu (2.34-1)
[2013-12-31 17:17] [PACMAN] Running 'pacman --color auto -S --asdeps --needed extra/libxss extra/alsa-lib extra/flac extra/icu extra/opus extra/nss extra/harfbuzz-icu extra/desktop-file-utils extra/xdg-utils extra/speech-dispatcher extra/snappy'
[2013-12-31 17:23] [PACMAN] installed scrnsaverproto (1.2.2-1)
[2013-12-31 17:23] [PACMAN] installed libxss (1.2.2-2)
[2013-12-31 17:23] [PACMAN] installed alsa-lib (1.0.27.2-1)
[2013-12-31 17:23] [PACMAN] installed libogg (1.3.1-2)
[2013-12-31 17:23] [PACMAN] installed flac (1.3.0-1)
[2013-12-31 17:23] [PACMAN] installed icu (52.1-1)
[2013-12-31 17:23] [PACMAN] installed opus (1.1-1)
[2013-12-31 17:23] [PACMAN] installed sqlite (3.8.2-1)
[2013-12-31 17:23] [PACMAN] installed nss (3.15.3.1-1)
[2013-12-31 17:23] [PACMAN] installed harfbuzz-icu (0.9.24-1)
[2013-12-31 17:23] [PACMAN] installed desktop-file-utils (0.22-1)
[2013-12-31 17:23] [PACMAN] installed xdg-utils (1.1.0.git20130520-1)
[2013-12-31 17:23] [PACMAN] installed python (3.3.3-1)
[2013-12-31 17:23] [PACMAN] installed python-xdg (0.25-1)
[2013-12-31 17:23] [PACMAN] installed dotconf (1.3-4)
[2013-12-31 17:23] [PACMAN] installed libasyncns (0.8-5)
[2013-12-31 17:23] [PACMAN] installed libvorbis (1.3.3-1)
[2013-12-31 17:23] [PACMAN] installed libsndfile (1.0.25-3)
[2013-12-31 17:23] [PACMAN] installed json-c (0.11-1)
[2013-12-31 17:23] [PACMAN] installed libpulse (4.0-6)
[2013-12-31 17:23] [PACMAN] installed speech-dispatcher (0.8-2)
[2013-12-31 17:23] [PACMAN] installed snappy (1.1.1-1)
[2013-12-31 17:34] [PACMAN] Running 'pacman --color auto -S --asdeps --needed extra/xcb-util-wm'
[2013-12-31 17:34] [PACMAN] installed xcb-util-wm (0.3.9-1)
[2013-12-31 17:35] [PACMAN] Running 'pacman -S fakeroot'
[2013-12-31 17:35] [PACMAN] installed fakeroot (1.20-1)
[2013-12-31 17:35] [PACMAN] Running 'pacman -S bspwm'
[2013-12-31 17:37] [PACMAN] Running 'pacman -S gcc'
[2013-12-31 17:41] [PACMAN] installed binutils (2.24-1)
[2013-12-31 17:41] [PACMAN] installed libmpc (1.0.1-2)
[2013-12-31 17:41] [PACMAN] installed isl (0.12.1-2)
[2013-12-31 17:41] [PACMAN] installed cloog (0.18.1-2)
[2013-12-31 17:41] [PACMAN] installed gcc (4.8.2-7)
[2013-12-31 17:43] [PACMAN] Running 'pacman --color auto -S --asdeps --needed extra/xcb-util-keysyms'
[2013-12-31 17:43] [PACMAN] installed xcb-util-keysyms (0.3.9-1)
[2013-12-31 17:43] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-halo/PKGDEST.RB7/sxhkd-git-114-1-x86_64.pkg.tar.xz'
[2013-12-31 17:43] [PACMAN] installed sxhkd-git (114-1)
[2013-12-31 17:44] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-halo/PKGDEST.RXI/bspwm-git-875-1-x86_64.pkg.tar.xz'
[2013-12-31 17:44] [PACMAN] installed bspwm-git (875-1)
[2013-12-31 17:47] [PACMAN] Running 'pacman --color auto -S aur/google-chrome'
[2013-12-31 17:51] [PACMAN] Running 'pacman -S patch'
[2013-12-31 17:51] [PACMAN] installed patch (2.7.1-2)
[2013-12-31 17:52] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-halo/PKGDEST.ni6/package-query-ssl3-1.2-2-x86_64.pkg.tar.xz'
[2013-12-31 17:54] [PACMAN] Running 'pacman -Rsc package-query'
[2013-12-31 17:54] [PACMAN] removed yaourt (1.3-1)
[2013-12-31 17:54] [PACMAN] removed package-query (1.2-2)
[2013-12-31 17:54] [PACMAN] removed yajl (2.0.4-2)
[2013-12-31 17:55] [PACMAN] Running 'pacman -S yaourt'
[2013-12-31 17:55] [PACMAN] installed yajl (2.0.4-2)
[2013-12-31 17:55] [PACMAN] installed package-query (1.2-2)
[2013-12-31 17:55] [PACMAN] installed yaourt (1.3-1)
[2013-12-31 18:02] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-halo/PKGDEST.2PV/google-chrome-31.0.1650.63-1-x86_64.pkg.tar'
[2013-12-31 18:02] [ALPM-SCRIPTLET] ^[[1m^[[34m==>^[[0;10m^[[1m Updating desktop MIME database...^[[0;10m
[2013-12-31 18:02] [ALPM-SCRIPTLET] ^[[1m^[[34m==>^[[0;10m^[[1m Updating icon cache..^[[0;10m
[2013-12-31 18:02] [ALPM-SCRIPTLET] ^[[1m^[[34m==>^[[0;10m^[[1m^[[33m NOTE:^[[0;10m^[[1m The binary is called 'google-chrome-stable'.^[[0;10m
[2013-12-31 18:02] [PACMAN] installed google-chrome (31.0.1650.63-1)
[2013-12-31 18:07] [PACMAN] Running 'pacman --color auto -S --asdeps --needed extra/cantarell-fonts'
[2013-12-31 18:08] [PACMAN] installed cantarell-fonts (0.0.15-1)
[2013-12-31 19:00] [PACMAN] Running 'pacman -U ttf-google-fonts-git'
[2013-12-31 19:20] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-halo/PKGDEST.tkf/rxvt-unicode-256xresources-9.19-1-x86_64.pkg.tar.xz'
[2013-12-31 19:20] [PACMAN] installed rxvt-unicode-256xresources (9.19-1)
[2013-12-31 19:20] [PACMAN] Running 'pacman -S thunar'
[2013-12-31 19:20] [PACMAN] installed libexif (0.6.21-2)
[2013-12-31 19:20] [PACMAN] installed libnotify (0.7.6-1)
[2013-12-31 19:20] [PACMAN] installed libxfce4util (4.10.1-2)
[2013-12-31 19:20] [PACMAN] installed xfconf (4.10.0-3)
[2013-12-31 19:20] [PACMAN] installed libxfce4ui (4.10.0-1)
[2013-12-31 19:20] [PACMAN] installed exo (0.10.2-2)
[2013-12-31 19:20] [PACMAN] installed thunar (1.6.3-1)
[2013-12-31 19:21] [PACMAN] Running 'pacman -S gvfs polkit-gnome thunar-volman'
[2013-12-31 19:24] [PACMAN] installed dconf (0.18.0-1)
[2013-12-31 19:24] [PACMAN] installed fuse (2.9.3-2)
[2013-12-31 19:24] [PACMAN] installed libcddb (1.3.2-4)
[2013-12-31 19:24] [PACMAN] installed libcdio (0.90-2)
[2013-12-31 19:24] [PACMAN] installed libcdio-paranoia (10.2+0.90+1-1)
[2013-12-31 19:24] [PACMAN] installed libproxy (0.4.11-2)
[2013-12-31 19:24] [PACMAN] installed gsettings-desktop-schemas (3.10.1-1)
[2013-12-31 19:24] [PACMAN] installed glib-networking (2.38.2-1)
[2013-12-31 19:24] [PACMAN] installed libsoup (2.44.2-1)
[2013-12-31 19:24] [PACMAN] installed libatasmart (0.19-2)
[2013-12-31 19:24] [PACMAN] installed udisks2 (2.1.1-3)
[2013-12-31 19:24] [PACMAN] installed libsecret (0.16-1)
[2013-12-31 19:24] [PACMAN] installed libbluray (0.5.0-1)
[2013-12-31 19:24] [PACMAN] installed gvfs (1.18.3-1)
[2013-12-31 19:24] [PACMAN] installed lcms2 (2.5-2)
[2013-12-31 19:24] [PACMAN] installed libgusb (0.1.6-1)
[2013-12-31 19:24] [PACMAN] installed shared-color-profiles (0.1.5-1)
[2013-12-31 19:24] [PACMAN] installed colord (1.0.4-1)
[2013-12-31 19:24] [PACMAN] installed at-spi2-core (2.10.2-1)
[2013-12-31 19:24] [PACMAN] installed at-spi2-atk (2.10.2-1)
[2013-12-31 19:24] [PACMAN] installed libxkbcommon (0.3.2-1)
[2013-12-31 19:24] [PACMAN] installed gtk3 (3.10.6-1)
[2013-12-31 19:24] [PACMAN] installed polkit-gnome (0.105-2)
[2013-12-31 19:24] [PACMAN] installed thunar-volman (0.8.0-1)
[2013-12-31 19:29] [PACMAN] Running 'pacman --color auto -S community/dmenu'
[2013-12-31 19:30] [PACMAN] installed dmenu (4.5-3)
[2013-12-31 19:30] [PACMAN] Running 'pacman -S conky'
[2013-12-31 19:30] [PACMAN] installed lua (5.2.3-1)
[2013-12-31 19:30] [PACMAN] installed wireless_tools (29-8)
[2013-12-31 19:30] [PACMAN] installed giflib (5.0.5-1)
[2013-12-31 19:30] [PACMAN] installed libid3tag (0.15.1b-8)
[2013-12-31 19:30] [PACMAN] installed imlib2 (1.4.5-6)
[2013-12-31 19:30] [PACMAN] installed conky (1.9.0-2)
[2013-12-31 19:32] [PACMAN] Running 'pacman -S nitrogen'
[2013-12-31 19:33] [PACMAN] installed libsigc++ (2.3.1-1)
[2013-12-31 19:33] [PACMAN] installed glibmm (2.38.1-1)
[2013-12-31 19:33] [PACMAN] installed cairomm (1.10.0-3)
[2013-12-31 19:33] [PACMAN] installed pangomm (2.34.0-1)
[2013-12-31 19:33] [PACMAN] installed atkmm (2.22.7-1)
[2013-12-31 19:33] [PACMAN] installed gtkmm (2.24.4-1)
[2013-12-31 19:33] [PACMAN] installed libcroco (0.6.8-1)
[2013-12-31 19:33] [PACMAN] installed librsvg (1:2.40.1-1)
[2013-12-31 19:33] [PACMAN] installed nitrogen (1.5.2-1)
[2013-12-31 20:27] [PACMAN] Running 'pacman -Rns sxhkd'
[2013-12-31 20:28] [PACMAN] Running 'pacman -Rns sxhkd-git bspwm-git'
[2013-12-31 20:28] [PACMAN] removed bspwm-git (875-1)
[2013-12-31 20:28] [PACMAN] removed xcb-util-wm (0.3.9-1)
[2013-12-31 20:28] [PACMAN] removed sxhkd-git (114-1)
[2013-12-31 20:28] [PACMAN] removed xcb-util-keysyms (0.3.9-1)
[2013-12-31 20:28] [PACMAN] Running 'pacman -S i3'
[2013-12-31 20:28] [PACMAN] installed xcb-util-renderutil (0.3.8-1)
[2013-12-31 20:28] [PACMAN] installed xcb-util-image (0.3.9-1)
[2013-12-31 20:28] [PACMAN] installed xcb-util-cursor (0.1.1-1)
[2013-12-31 20:28] [PACMAN] installed xcb-util-keysyms (0.3.9-1)
[2013-12-31 20:28] [PACMAN] installed xcb-util-wm (0.3.9-1)
[2013-12-31 20:28] [PACMAN] installed libev (4.15-1)
[2013-12-31 20:28] [PACMAN] installed i3-wm (4.7-1)
[2013-12-31 20:28] [PACMAN] installed i3lock (2.5-2)
[2013-12-31 20:28] [PACMAN] installed confuse (2.7-3)
[2013-12-31 20:28] [PACMAN] installed i3status (2.7-1)
[2013-12-31 21:16] [PACMAN] Running 'pacman -S lxappearance'
[2013-12-31 21:16] [PACMAN] installed lxappearance (0.5.4-1)
[2013-12-31 22:01] [PACMAN] Running 'pacman -S file-roller'
[2013-12-31 22:01] [PACMAN] installed json-glib (0.16.2-1)
[2013-12-31 22:01] [PACMAN] installed p7zip (9.20.1-8)
[2013-12-31 22:01] [PACMAN] installed file-roller (3.10.2.1-1)
[2013-12-31 23:26] [PACMAN] Running 'pacman --color auto -S --asdeps --needed extra/libconfig community/asciidoc'
[2013-12-31 23:26] [PACMAN] installed libconfig (1.4.9-2)
[2013-12-31 23:27] [PACMAN] installed python2 (2.7.6-1)
[2013-12-31 23:27] [PACMAN] installed libxslt (1.1.28-2)
[2013-12-31 23:27] [PACMAN] installed docbook-xml (4.5-5)
[2013-12-31 23:27] [PACMAN] installed docbook-xsl (1.78.1-1)
[2013-12-31 23:27] [PACMAN] installed asciidoc (8.6.9-1)
[2013-12-31 23:27] [PACMAN] Running 'pacman -S dbus'
[2013-12-31 23:27] [PACMAN] reinstalled dbus (1.6.18-1)
[2013-12-31 23:28] [PACMAN] Running 'pacman -S dbus.h'
[2013-12-31 23:29] [PACMAN] Running 'pacman -S libx11'
[2013-12-31 23:29] [PACMAN] reinstalled libx11 (1.6.2-1)
[2013-12-31 23:30] [PACMAN] Running 'pacman -S libxcomposite'
[2013-12-31 23:30] [PACMAN] reinstalled libxcomposite (0.4.4-1)
[2013-12-31 23:30] [PACMAN] Running 'pacman -S libxdamage'
[2013-12-31 23:30] [PACMAN] reinstalled libxdamage (1.1.4-1)
[2013-12-31 23:31] [PACMAN] Running 'pacman -S libXext'
[2013-12-31 23:31] [PACMAN] Running 'pacman -S libxext'
[2013-12-31 23:31] [PACMAN] reinstalled libxext (1.3.2-1)
[2013-12-31 23:31] [PACMAN] Running 'pacman -S libxrender'
[2013-12-31 23:31] [PACMAN] reinstalled libxrender (0.9.8-1)
[2013-12-31 23:31] [PACMAN] Running 'pacman -S libxrandr'
[2013-12-31 23:32] [PACMAN] reinstalled libxrandr (1.4.2-2)
[2013-12-31 23:32] [PACMAN] Running 'pacman -S libxinerama'
[2013-12-31 23:32] [PACMAN] reinstalled libxinerama (1.1.3-2)
[2013-12-31 23:32] [PACMAN] Running 'pacman -S pkg-config'
[2013-12-31 23:33] [PACMAN] installed pkg-config (0.28-1)
[2013-12-31 23:33] [PACMAN] Running 'pacman -S xpronto'
[2013-12-31 23:33] [PACMAN] Running 'pacman -S xproto'
[2013-12-31 23:33] [PACMAN] reinstalled xproto (7.0.25-1)
[2013-12-31 23:33] [PACMAN] Running 'pacman -S sh'
[2013-12-31 23:33] [PACMAN] reinstalled bash (4.2.045-5)
[2013-12-31 23:34] [PACMAN] Running 'pacman -S xprop'
[2013-12-31 23:34] [PACMAN] Running 'pacman -S xwininfo'
[2013-12-31 23:35] [PACMAN] Running 'pacman -S x11-utils'
[2013-12-31 23:35] [PACMAN] Running 'pacman -S libpcre'
[2013-12-31 23:36] [PACMAN] Running 'pacman -S libconfig'
[2013-12-31 23:36] [PACMAN] reinstalled libconfig (1.4.9-2)
[2013-12-31 23:36] [PACMAN] Running 'pacman -S libdbus'
[2013-12-31 23:36] [PACMAN] Running 'pacman -S libdrm'
[2013-12-31 23:36] [PACMAN] reinstalled libdrm (2.4.50-1)
[2013-12-31 23:38] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-halo/PKGDEST.UtF/compton-git-2013.12.10.gfbd70e1-1-x86_64.pkg.tar.xz'
[2013-12-31 23:38] [PACMAN] installed compton-git (2013.12.10.gfbd70e1-1)
[2013-12-31 23:46] [PACMAN] Running 'pacman -S geany'
[2013-12-31 23:46] [PACMAN] installed geany (1.23.1-1)
[2014-01-01 02:02] [PACMAN] Running 'pacman --color auto -S community/terminus-font'
[2014-01-01 02:02] [PACMAN] installed terminus-font (4.38-3)
[2014-01-01 02:03] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-halo/PKGDEST.Nsh/terminus-font-ttf-4.38.2-1-any.pkg.tar.xz'
[2014-01-01 02:03] [ALPM-SCRIPTLET] Updating font cache... done.
[2014-01-01 02:03] [ALPM-SCRIPTLET] 
[2014-01-01 02:03] [ALPM-SCRIPTLET] > The font files have been installed into /usr/share/fonts/TTF.
[2014-01-01 02:03] [ALPM-SCRIPTLET] > To make them available to Java applications, create symlinks
[2014-01-01 02:03] [ALPM-SCRIPTLET] > in /opt/java/jre/lib/fonts.
[2014-01-01 02:03] [PACMAN] installed terminus-font-ttf (4.38.2-1)
[2014-01-01 04:55] [PACMAN] Running 'pacman -Syu'
[2014-01-01 04:55] [PACMAN] synchronizing package lists
[2014-01-01 04:55] [PACMAN] starting full system upgrade
[2014-01-01 04:59] [PACMAN] Running 'pacman -S xrdb'
[2014-01-01 05:00] [PACMAN] Running 'pacman -S xorg-xrdb'
[2014-01-01 05:00] [PACMAN] reinstalled xorg-xrdb (1.1.0-1)
[2014-01-01 05:29] [PACMAN] Running 'pacman --color auto -S --asdeps --needed community/rxvt-unicode-terminfo'
[2014-01-01 05:31] [PACMAN] Running 'pacman -Rns rxvt-unicode-256xresources'
[2014-01-01 05:31] [PACMAN] removed rxvt-unicode-256xresources (9.19-1)
[2014-01-01 05:34] [PACMAN] Running 'pacman --color auto -S --asdeps --needed community/rxvt-unicode-terminfo'
[2014-01-01 05:34] [PACMAN] installed rxvt-unicode-terminfo (9.19-1)
[2014-01-01 05:37] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-halo/PKGDEST.PGk/rxvt-unicode-patched-9.19-1-x86_64.pkg.tar.xz'
[2014-01-01 05:37] [PACMAN] installed rxvt-unicode-patched (9.19-1)
[2014-01-01 06:01] [PACMAN] Running 'pacman -S alsa-utils'
[2014-01-01 06:01] [PACMAN] installed libsamplerate (0.1.8-3)
[2014-01-01 06:02] [PACMAN] installed alsa-utils (1.0.27.2-1)
[2014-01-01 06:27] [PACMAN] Running 'pacman -S alsa-tools'
[2014-01-01 06:27] [PACMAN] installed alsa-tools (1.0.27-5)
[2014-01-01 06:31] [PACMAN] Running 'pacman -S fltk'
[2014-01-01 06:31] [PACMAN] installed fltk (1.3.2-5)
[2014-01-01 06:34] [PACMAN] Running 'pacman -Rns alsa-tool fltk'
[2014-01-01 06:34] [PACMAN] Running 'pacman -Rns alsa-tools fltk'
[2014-01-01 06:34] [PACMAN] removed fltk (1.3.2-5)
[2014-01-01 06:34] [PACMAN] removed alsa-tools (1.0.27-5)
[2014-01-01 06:52] [PACMAN] Running 'pacman --color auto -S extra/pulseaudio extra/pulseaudio-alsa extra/pavucontrol'
[2014-01-01 06:53] [PACMAN] installed rtkit (0.11-4)
[2014-01-01 06:53] [PACMAN] installed speex (1.2rc1-4)
[2014-01-01 06:53] [PACMAN] installed tdb (1.2.12-1)
[2014-01-01 06:53] [PACMAN] installed fftw (3.3.3-2)
[2014-01-01 06:53] [PACMAN] installed orc (0.4.18-1)
[2014-01-01 06:53] [PACMAN] installed webrtc-audio-processing (0.1-1)
[2014-01-01 06:53] [PACMAN] installed sbc (1.1-1)
[2014-01-01 06:53] [ALPM-SCRIPTLET] >>> See the wiki at http://wiki.archlinux.org/index.php/PulseAudio for details
[2014-01-01 06:53] [ALPM-SCRIPTLET]     on configuring your system for PulseAudio.
[2014-01-01 06:53] [ALPM-SCRIPTLET] 
[2014-01-01 06:53] [ALPM-SCRIPTLET] >>> Make sure to install pulseaudio-alsa to configure ALSA for PulseAudio.
[2014-01-01 06:53] [PACMAN] installed pulseaudio (4.0-6)
[2014-01-01 06:53] [PACMAN] installed alsa-plugins (1.0.27-2)
[2014-01-01 06:53] [PACMAN] installed pulseaudio-alsa (2-2)
[2014-01-01 06:53] [PACMAN] installed perl-xml-parser (2.41-4)
[2014-01-01 06:53] [PACMAN] installed perl-xml-simple (2.20-1)
[2014-01-01 06:53] [PACMAN] installed icon-naming-utils (0.8.90-2)
[2014-01-01 06:53] [PACMAN] installed gnome-icon-theme-symbolic (3.10.1-1)
[2014-01-01 06:53] [PACMAN] installed gnome-icon-theme (3.10.0-1)
[2014-01-01 06:53] [PACMAN] installed sound-theme-freedesktop (0.8-1)
[2014-01-01 06:53] [PACMAN] installed libcanberra (0.30-4)
[2014-01-01 06:53] [PACMAN] installed libcanberra-pulse (0.30-4)
[2014-01-01 06:53] [PACMAN] installed gtkmm3 (3.10.0-1)
[2014-01-01 06:53] [PACMAN] installed pavucontrol (2.0-2)
[2014-01-01 07:06] [PACMAN] Running 'pacman --color auto -S --asdeps --needed extra/intltool extra/lynx'
[2014-01-01 07:06] [PACMAN] installed intltool (0.50.2-1)
[2014-01-01 07:06] [PACMAN] installed lynx (2.8.7-7)
[2014-01-01 07:08] [PACMAN] Running 'pacman -Rns pavucontrol'
[2014-01-01 07:08] [PACMAN] removed pavucontrol (2.0-2)
[2014-01-01 07:08] [PACMAN] removed libcanberra-pulse (0.30-4)
[2014-01-01 07:08] [PACMAN] removed libcanberra (0.30-4)
[2014-01-01 07:08] [PACMAN] removed sound-theme-freedesktop (0.8-1)
[2014-01-01 07:08] [PACMAN] removed gtkmm3 (3.10.0-1)
[2014-01-01 07:08] [PACMAN] removed gnome-icon-theme (3.10.0-1)
[2014-01-01 07:08] [PACMAN] removed gnome-icon-theme-symbolic (3.10.1-1)
[2014-01-01 07:08] [PACMAN] removed icon-naming-utils (0.8.90-2)
[2014-01-01 07:08] [PACMAN] removed perl-xml-simple (2.20-1)
^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@[2014-01-01 07:12] [PACMAN] Running 'pacman -Syu'
[halo@ArchNemesis ~]$ 

I really need to learn vim. I'm used to complete IDEs in windows environments.

Last edited by halo (2014-01-11 17:51:43)


I am up to neither good nor bad, but what serves me.

Offline

#45 2014-01-12 05:15:12

x33a
Forum Fellow
Registered: 2009-08-15
Posts: 4,587

Re: Format of pacman.log

lolilolicon wrote:

No strings will would filter things out, while we want the raw stuff...

Right. I thought it was about the text only tongue

Offline

#46 2014-01-12 10:49:44

lolilolicon
Member
Registered: 2009-03-05
Posts: 1,722

Re: Format of pacman.log

@halo hmm weird, nothing in that seems to suggest a reason for all that NUL bytes. perl-xml-simple doesn't even have a install scriptlet.


This silver ladybug at line 28...

Offline

#47 2014-01-12 11:51:14

sano
Member
Registered: 2012-02-11
Posts: 114

Re: Format of pacman.log

I have something like halo as well:

[2013-11-30 08:37] [PACMAN] upgraded lib32-mesa-libgl (9.2.3-2 -> 9.2.4-1)
[2013-11-30 08:37] [PACMAN] upgraded nouveau-dri (9.2.3-2 -> 9.2.4-1)
[2013-11-30 08:37] Exited with code 0
[2013-11-30 11:04] [PACMAN] Running '/usr/bin/pacman -S --asdeps gtk-engines'
[2013-11-30 11:04] [PACMAN] installed gtk-engines (2.21.0-1)
[2013-11-30 11:04] [PACMAN] Running '/usr/bin/pacman -U /home/poly/abs/zen-gtk-themes/zen-gtk-themes-0.13.1-2-any.pkg.tar'
[2013-11-30 11:04] [PACMAN] installed zen-gtk-themes (0.13.1-2)
[2013-11-30 12:24] [PACMAN] Running 'pacman -Syu'
[2013-11-30 12:24] [PACMAN] synchronizing package lists
[2013-11-30 12:25] [PACMAN] starting full system upgrade
^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@[2013-11-30 12:28] [PACMAN] Running 'pacman -Syu'
[2013-11-30 12:28] [PACMAN] synchronizing package lists
[2013-11-30 12:28] [PACMAN] starting full system upgrade
[2013-11-30 12:28] Exited with code 0
[2013-11-30 12:29] [PACMAN] Running 'pacman -Rns linux-ck-sandybridge-headers linux-ck-sandybridge'
[2013-11-30 12:29] [PACMAN] removed linux-ck-sandybridge (3.12.2-1)
[2013-11-30 12:29] [PACMAN] removed linux-ck-sandybridge-headers (3.12.2-1)
[2013-11-30 12:29] [PACMAN] Running 'pacman -Syu linux-ck-sandybridge-headers linux-ck-sandybridge'
[2013-11-30 12:29] [PACMAN] synchronizing package lists
[2013-11-30 12:29] [PACMAN] starting full system upgrade
[2013-11-30 12:30] Exited with code 1

I do remember what happened there: linux-ck-sandybridge got updated, so I rebooted immediately after I thought the upgrade had finished. Only to be greeted by an grub rescue prompt. I guess I didn't pay enough attention and rebooted while the mkinitcpio was still running.

Also:

file /var/log/pacman.log                                                                                                                                        0 
/var/log/pacman.log: ASCII text

Offline

#48 2014-01-12 18:10:07

halo
Member
From: Denver
Registered: 2013-12-27
Posts: 32

Re: Format of pacman.log

I have no idea. I consider myself to have a sub par understanding of linux (most of what I know comes from minor android development and using linux kernel in that arena), but some of these esoteric qualities are beyond my comprehension due to my lack of experience.

V(*_*)V

Last edited by halo (2014-01-12 18:10:42)


I am up to neither good nor bad, but what serves me.

Offline

Board footer

Powered by FluxBB