[solved] ntfs-3g: Invalid or incomplete multibyte or wide character

Hi all, i've a problem with an ntfs partition and (i think) locales.
#nickinicki-laptop koko # touch /mnt/vista/ò
touch: cannot touch `/mnt/vista/ò': Invalid or incomplete multibyte or wide character
nickinicki-laptop koko # grep -v \# /etc/locale.gen
en_US.UTF-8 UTF-8
en_US ISO-8859-1
es_ES.UTF-8 UTF-8
es_ES ISO-8859-1
es_ES@euro ISO-8859-15
it_IT.UTF-8 UTF-8
it_IT ISO-8859-1
it_IT@euro ISO-8859-15
pt_BR.UTF-8 UTF-8
pt_BR ISO-8859-1
nickinicki-laptop koko # locale -a
C
en_US
en_US.iso88591
en_US.utf8
es_ES
es_ES@euro
es_ES.iso88591
es_ES.iso885915@euro
es_ES.utf8
italian
it_IT
it_IT@euro
it_IT.iso88591
it_IT.iso885915@euro
it_IT.utf8
POSIX
pt_BR
pt_BR.iso88591
pt_BR.utf8
spanish
nickinicki-laptop koko # locale
LANG=it_IT.iso885915@euro
LC_CTYPE="it_IT.iso885915@euro"
LC_NUMERIC="it_IT.iso885915@euro"
LC_TIME="it_IT.iso885915@euro"
LC_COLLATE=C
LC_MONETARY="it_IT.iso885915@euro"
LC_MESSAGES="it_IT.iso885915@euro"
LC_PAPER="it_IT.iso885915@euro"
LC_NAME="it_IT.iso885915@euro"
LC_ADDRESS="it_IT.iso885915@euro"
LC_TELEPHONE="it_IT.iso885915@euro"
LC_MEASUREMENT="it_IT.iso885915@euro"
LC_IDENTIFICATION="it_IT.iso885915@euro"
LC_ALL=
nickinicki-laptop koko # grep -i locale /etc/rc.conf
# LOCALE: available languages can be listed with the 'locale -a' command
LOCALE="it_IT.iso885915@euro"
nickinicki-laptop koko # mount.ntfs-3g -o locale=$LANG /dev/sda1 /mnt/vista
nickinicki-laptop koko # touch /mnt/vista/ò
touch: cannot touch `/mnt/vista/ò': Invalid or incomplete multibyte or wide character
nickinicki-laptop koko # tail /var/log/messages.log
Aug 27 18:45:57 nickinicki-laptop ntfs-3g[3660]: Version 2009.4.4 integrated FUSE 27
Aug 27 18:45:57 nickinicki-laptop ntfs-3g[3660]: Mounted /dev/sda1 (Read-Write, label "VISTA", NTFS 3.1)
Aug 27 18:45:57 nickinicki-laptop ntfs-3g[3660]: Cmdline options: locale=it_IT.iso885915@euro
Aug 27 18:45:57 nickinicki-laptop ntfs-3g[3660]: Mount options: silent,allow_other,nonempty,relatime,fsname=/dev/sda1,blkdev,blksize=4096
Aug 27 18:46:19 nickinicki-laptop ntfs-3g[3660]: Could not convert filename to Unicode: 'ò': Invalid or incomplete multibyte or wide character
Aug 27 18:46:19 nickinicki-laptop ntfs-3g[3660]: Could not convert filename to Unicode: 'ò': Invalid or incomplete multibyte or wide character
Does anybody has a clue on what's happening?
Thanks in advance!
Last edited by kokoko3k (2009-08-28 16:25:21)

I know i'm writing this thread alone, but i'm experimenring more and more.
I was able to reproduce the issue even on an totally up-to-date system (every package upgraded to the latest version) using an ntfs filesystem on a file image:
Gozer ~ # cd /var/cache/pacman/pkg
########### Install latest ntfs-3g:
Gozer pkg # pacman -U ./ntfs-3g-2009.4.4-1-i686.pkg.tar.gz
loading package data...
checking dependencies...
(1/1) checking for file conflicts [########################################################] 100%
(1/1) upgrading ntfs-3g [########################################################] 100%
########### Make a 100MB file:
Gozer pkg # dd if=/dev/zero of=/tmp/image.ntfs bs=1024 count=100000
100000+0 records in
100000+0 records out
102400000 bytes (102 MB) copied, 0.899782 s, 114 MB/s
########### force mkfs.ntfs to make an ntfs filesystem there:
Gozer pkg # mkfs.ntfs /tmp/image.ntfs -F
/tmp/image.ntfs is not a block device.
mkntfs forced anyway.
The sector size was not specified for /tmp/image.ntfs and it could not be obtained automatically. It has been set to 512 bytes.
The partition start sector was not specified for /tmp/image.ntfs and it could not be obtained automatically. It has been set to 0.
The number of sectors per track was not specified for /tmp/image.ntfs and it could not be obtained automatically. It has been set to 0.
The number of heads was not specified for /tmp/image.ntfs and it could not be obtained automatically. It has been set to 0.
Cluster size has been automatically set to 4096 bytes.
To boot from a device, Windows needs the 'partition start sector', the 'sectors per track' and the 'number of heads' to be set.
Windows will not be able to boot from this device.
Initializing device with zeroes: 100% - Done.
Creating NTFS volume structures.
mkntfs completed successfully. Have a nice day.
########### My locales:
Gozer pkg # locale
LANG=en_US.iso88591
LC_CTYPE="en_US.iso88591"
LC_NUMERIC="en_US.iso88591"
LC_TIME="en_US.iso88591"
LC_COLLATE="en_US.iso88591"
LC_MONETARY="en_US.iso88591"
LC_MESSAGES="en_US.iso88591"
LC_PAPER="en_US.iso88591"
LC_NAME="en_US.iso88591"
LC_ADDRESS="en_US.iso88591"
LC_TELEPHONE="en_US.iso88591"
LC_MEASUREMENT="en_US.iso88591"
LC_IDENTIFICATION="en_US.iso88591"
LC_ALL=en_US.iso88591
########### Make the mountpoint and load the loop module
Gozer pkg # mkdir /mnt/ntfs.test
Gozer pkg # modprobe loop
########### mount the filesystem through ntfs-3g-2009.4.4-1
Gozer pkg # ntfs-3g -o loop,locale=$LANG /tmp/image.ntfs /mnt/ntfs.test/
########### Try to create a file with accented letters and get the error:
Gozer pkg # touch /mnt/ntfs.test/àèìòu
touch: cannot touch `/mnt/ntfs.test/àèìòu': Invalid or incomplete multibyte or wide character
Gozer pkg # ls -la /mnt/ntfs.test/àèìòu
ls: cannot access /mnt/ntfs.test/àèìòu: Invalid or incomplete multibyte or wide character
########### umount the filesystem
Gozer pkg # umount /mnt/ntfs.test
########### Get the outdated ntfs-3g package from arch rollback machine repo and install it
Gozer pkg # wget http://arm.kh.nu/extra::2009-1-1/os/i686/ntfs-3g-1.5130-1-i686.pkg.tar.gz
--2009-08-28 09:39:35-- http://arm.kh.nu/extra::2009-1-1/os/i686/ntfs-3g-1.5130-1-i686.pkg.tar.gz
Resolving arm.kh.nu... 75.119.207.164
Connecting to arm.kh.nu|75.119.207.164|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 360413 (352K) [application/x-tar]
Saving to: `ntfs-3g-1.5130-1-i686.pkg.tar.gz'
100%[=========================================================================>] 360,413 277K/s in 1.3s
2009-08-28 09:39:36 (277 KB/s) - `ntfs-3g-1.5130-1-i686.pkg.tar.gz' saved [360413/360413]
Gozer pkg # pacman -U ./ntfs-3g-1.5130-1-i686.pkg.tar.gz
loading package data...
checking dependencies...
(1/1) checking for file conflicts [########################################################] 100%
(1/1) upgrading ntfs-3g [########################################################] 100%
########### Mount the filesystem again with ntfs-3g-1.5130-1
Gozer pkg # ntfs-3g -o loop,locale=$LANG /tmp/image.ntfs /mnt/ntfs.test/
########### Try to create a file with accented letters:
Gozer pkg # touch /mnt/ntfs.test/àèìòu
Gozer pkg # ls -la /mnt/ntfs.test/àèìòu
-rwxrwxrwx 1 root root 0 2009-08-28 09:41 /mnt/ntfs.test/àèìòu
...This time everything worked as expected!
Can someone try all this and reports his results here please?
Thanks.
Last edited by kokoko3k (2009-08-28 07:49:38)

Similar Messages

  • Nonlatin characters in URLs;NTFS Invalid or incomplete multibyte error

    I'm testing with a file called "柯有伦-零.mp3", which contains Chinese characters. (Maybe your browser won't show it correctly, and the font might be crappy...)
    Well, here's a screenshot of the correct filename:
    My locale: en_US.utf8
    Downloader I tested with: wget, aria2c
    Target filesystem I tested with: ext4, ntfs
    I find it strange the same filename has two forms in two urls:
    %BF%C2%D3%D0%C2%D7-%C1%E3.mp3
    %E6%9F%AF%E6%9C%89%E4%BC%A6-%E9%9B%B6.mp3
    I don't know why... Must have something to do with character set/encoding. Somebody explain this to me please.
    ---------------------------------------------experiment--with--wget--------------------------------------------------
    wget "%BF%C2%D3%D0%C2%D7-%C1%E3.mp3" to ext4 partition:
    $ wget 'http://down.jsharer.com/user/userAction.do?method=download&urlpath=ftp://-552790109:[email protected]:2022/22487/200908/%BF%C2%D3%D0%C2%D7-%C1%E3.mp3'
    --2009-08-25 12:17:41-- http://down.jsharer.com/user/userAction.do?method=download&urlpath=ftp://-552790109:[email protected]:2022/22487/200908/%BF%C2%D3%D0%C2%D7-%C1%E3.mp3
    Resolving down.jsharer.com... 222.73.163.168
    Connecting to down.jsharer.com|222.73.163.168|:80... connected.
    HTTP request sent, awaiting response... 302 Moved Temporarily
    Location: ftp://-552790109:[email protected]:2022/22487/200908/%BF%C2%D3%D0%C2%D7-%C1%E3.mp3 [following]
    --2009-08-25 12:17:41-- ftp://-552790109:*password*@58.215.91.170:2022/22487/200908/%BF%C2%D3%D0%C2%D7-%C1%E3.mp3
    => `¿ÂÓÐÂ×-Áã.mp3'
    Connecting to 58.215.91.170:2022... connected.
    Logging in as -552790109 ... Logged in!
    ==> SYST ... done. ==> PWD ... done.
    ==> TYPE I ... done. ==> CWD /22487/200908 ... done.
    ==> SIZE \277\302\323\320\302\327-\301\343.mp3 ... 5211995
    ==> PASV ... done. ==> RETR \277\302\323\320\302\327-\301\343.mp3 ... done.
    Length: 5211995 (5.0M)
    100%[=====================================================>] 5,211,995 89.1K/s in 56s
    2009-08-25 12:18:37 (91.2 KB/s) - `¿ÂÓÐÂ×-Áã.mp3' saved [5211995]
    wget "%BF%C2%D3%D0%C2%D7-%C1%E3.mp3" to ntfs partition:
    $ wget 'http://down.jsharer.com/user/userAction.do?method=download&urlpath=ftp://1368144520:[email protected]:2022/41161/200908/%BF%C2%D3%D0%C2%D7-%C1%E3.mp3'
    --2009-08-25 12:26:29-- http://down.jsharer.com/user/userAction.do?method=download&urlpath=ftp://1368144520:[email protected]:2022/41161/200908/%BF%C2%D3%D0%C2%D7-%C1%E3.mp3
    Resolving down.jsharer.com... 222.73.163.168
    Connecting to down.jsharer.com|222.73.163.168|:80... connected.
    HTTP request sent, awaiting response... 302 Moved Temporarily
    Location: ftp://1368144520:[email protected]:2022/41161/200908/%BF%C2%D3%D0%C2%D7-%C1%E3.mp3 [following]
    --2009-08-25 12:26:29-- ftp://1368144520:*password*@58.215.91.170:2022/41161/200908/%BF%C2%D3%D0%C2%D7-%C1%E3.mp3
    => `¿ÂÓÐÂ×-Áã.mp3'
    Connecting to 58.215.91.170:2022... connected.
    Logging in as 1368144520 ... Logged in!
    ==> SYST ... done. ==> PWD ... done.
    ==> TYPE I ... done. ==> CWD /41161/200908 ... done.
    ==> SIZE \277\302\323\320\302\327-\301\343.mp3 ... 5211995
    ==> PASV ... done. ==> RETR \277\302\323\320\302\327-\301\343.mp3 ... done.
    ¿ÂÓÐÂ×-Áã.mp3: Invalid or incomplete multibyte or wide character
    wget  "%E6%9F%AF%E6%9C%89%E4%BC%A6-%E9%9B%B6.mp3" to ext4 partition:
    $ wget 'http://mp3.tktt.com/eec38e543bc6c0e4/15/%E6%9F%AF%E6%9C%89%E4%BC%A6-%E9%9B%B6.mp3'
    --2009-08-25 12:29:59-- http://mp3.tktt.com/eec38e543bc6c0e4/15/%E6%9F%AF%E6%9C%89%E4%BC%A6-%E9%9B%B6.mp3
    Resolving mp3.tktt.com... 58.215.81.44
    Connecting to mp3.tktt.com|58.215.81.44|:80... connected.
    HTTP request sent, awaiting response... 200 OK
    Length: 126229 (123K) [audio/x-ms-wma]
    Saving to: `æ%9F¯æ%9C%89伦-é%9B¶.mp3'
    100%[=====================================================>] 126,229 129K/s in 1.0s
    2009-08-25 12:30:03 (129 KB/s) - `æ%9F¯æ%9C%89伦-é%9B¶.mp3' saved [126229/126229]
    wget "%E6%9F%AF%E6%9C%89%E4%BC%A6-%E9%9B%B6.mp3" to ntfs partition:
    $ wget 'http://mp3.tktt.com/eec38e543bc6c0e4/15/%E6%9F%AF%E6%9C%89%E4%BC%A6-%E9%9B%B6.mp3'
    --2009-08-25 12:37:30-- http://mp3.tktt.com/eec38e543bc6c0e4/15/%E6%9F%AF%E6%9C%89%E4%BC%A6-%E9%9B%B6.mp3
    Resolving mp3.tktt.com... 58.215.81.44
    Connecting to mp3.tktt.com|58.215.81.44|:80... connected.
    HTTP request sent, awaiting response... 200 OK
    Length: 126229 (123K) [audio/x-ms-wma]
    æ%9F¯æ%9C%89伦-é%9B¶.mp3: Invalid or incomplete multibyte or wide character
    Cannot write to `æ%9F¯æ%9C%89伦-é%9B¶.mp3' (Invalid or incomplete multibyte or wide character).
    ---------------------------------------------let's--try--with--aria2c--------------------------------------------------
    aria2c "%BF%C2%D3%D0%C2%D7-%C1%E3.mp3" to ext4 partition:
    $ aria2c 'http://down.jsharer.com/user/userAction.do?method=download&urlpath=ftp://1368144520:[email protected]:2022/41161/200908/%BF%C2%D3%D0%C2%D7-%C1%E3.mp3'
    2009-08-25 12:47:52.079592 NOTICE - #1 - Download has already completed: /home/canti/Desktop/¿ÂÓÐÂ×-Áã.mp3
    2009-08-25 12:47:52.080014 NOTICE - Download complete: /home/canti/Desktop/¿ÂÓÐÂ×-Áã.mp3
    Download Results:
    gid|stat|avg speed |path/URI
    ===+====+===========+===========================================================
    1| OK| n/a|/home/canti/Desktop/¿ÂÓÐÂ×-Áã.mp3
    Status Legend:
    (OK):download completed.
    aria2c "%BF%C2%D3%D0%C2%D7-%C1%E3.mp3" to ntfs partition:
    $ aria2c 'http://down.jsharer.com/user/userAction.do?method=download&urlpath=ftp://1368144520:[email protected]:2022/41161/200908/%BF%C2%D3%D0%C2%D7-%C1%E3.mp3'
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]
    2009-08-25 12:46:06.942979 ERROR - Exception caught
    Exception: [RequestGroup.cc:528] Download aborted.
    -> [AbstractDiskWriter.cc:115] Failed to open the file /media/20G/¿ÂÓÐÂ×-Áã.mp3, cause: Invalid or incomplete multibyte or wide character
    Download Results:
    gid|stat|avg speed |path/URI
    ===+====+===========+===========================================================
    1| ERR| n/a|/media/20G/¿ÂÓÐÂ×-Áã.mp3
    Status Legend:
    (ERR):error occurred.
    aria2 will resume download if the transfer is restarted.
    If there are any errors, then see the log file. See '-l' option in help/man page for details.
    aria2c "%E6%9F%AF%E6%9C%89%E4%BC%A6-%E9%9B%B6.mp3" to ext4 partition:
    $ aria2c 'http://mp3.tktt.com/eec38e543bc6c0e4/15/%E6%9F%AF%E6%9C%89%E4%BC%A6-%E9%9B%B6.mp3'
    [#1 SIZE:96.0KiB/123.2KiB(77%) CN:1 SPD:135.1KiBs]
    2009-08-25 12:30:17.753443 NOTICE - Download complete: /home/canti/Desktop/柯有伦-零.mp3
    Download Results:
    gid|stat|avg speed |path/URI
    ===+====+===========+===========================================================
    1| OK| 136.0KiB/s|/home/canti/Desktop/柯有伦-零.mp3
    Status Legend:
    (OK):download completed.
    aria2c "%E6%9F%AF%E6%9C%89%E4%BC%A6-%E9%9B%B6.mp3" to ntfs partition:
    $ aria2c 'http://mp3.tktt.com/eec38e543bc6c0e4/15/%E6%9F%AF%E6%9C%89%E4%BC%A6-%E9%9B%B6.mp3'
    [#1 SIZE:0B/123.2KiB(0%) CN:1 SPD:0Bs]
    2009-08-25 12:42:14.735797 NOTICE - Download complete: /media/20G/柯有伦-零.mp3
    Download Results:
    gid|stat|avg speed |path/URI
    ===+====+===========+===========================================================
    1| OK| 20.0MiB/s|/media/20G/柯有伦-零.mp3
    Status Legend:
    (OK):download completed.
    So I'm asking:
    1. Why is '%E6%9F%AF%E6%9C%89%E4%BC%A6-%E9%9B%B6.mp3' interpreted correctly by aria2c but not with wget?
    2. Why is '%BF%C2%D3%D0%C2%D7-%C1%E3.mp3' interpreted to '¿ÂÓÐÂ×-Áã.mp3' by aria2c and wget both?
    3. Can I tune aria2c/wget to get those characters interpreted right? I have some experience with FTP clients such as filezilla and gftp, they both have a charset option for correctly displaying filenames from servers that has a encoding other than utf-8.
    4. Despite wget/aria2c both get the '%BF%C2%D3%D0%C2%D7-%C1%E3.mp3' interpreted wrong, they are able to write a file called '¿ÂÓÐÂ×-Áã.mp3' to EXT4 partitions. But they can't do this to NTFS partitions. (PcManFM can display Chinese/Japnese filenames on NTFS partitions correctly. Just to point it out.) How can I tune ntfs-3g's options to fix this?
    5. What I asked in the beginning, why does the same filename has two versions in two URLs?
    Last edited by lolilolicon (2009-08-25 05:33:18)

    That was a nice little oversight on my part --not checking the utf-8 charset.
    I experimented a little bit. I tried your link to downoad the file with wget; of course it doesn't work for me. Does the use of the wget option --restrict-file-names=nocontrol help? That option stops the incorrect interpretation of control characters.
    For a download example, here's a Russian language Wikipedia page,  http://ru.wikipedia.org/wiki/%D0%97%D0% … 1%86%D0%B0
    Without --restrict-file-names=nocontrol
    $ wget http://ru.wikipedia.org/wiki/%D0%97%D0%B0%D0%B3%D0%BB%D0%B0%D0%B2%D0%BD%D0%B0%D1%8F_%D1%81%D1%82%D1%80%D0%B0%D0%BD%D0%B8%D1%86%D0%B0
    --2009-08-27 06:11:35-- http://ru.wikipedia.org/wiki/%D0%97%D0%B0%D0%B3%D0%BB%D0%B0%D0%B2%D0%BD%D0%B0%D1%8F_%D1%81%D1%82%D1%80%D0%B0%D0%BD%D0%B8%D1%86%D0%B0
    Length: 77305 (75K) [text/html]
    Saving to: `Ð%97аглавнаÑ%8F_Ñ%81Ñ%82Ñ%80аниÑ%86а'
    2009-08-27 06:11:36 (292 KB/s) - `Ð%97аглавнаÑ%8F_Ñ%81Ñ%82Ñ%80аниÑ%86а' saved [77305/77305]
    With --restrict-file-names=nocontrol
    $ wget --restrict-file-names=nocontrol http://ru.wikipedia.org/wiki/%D0%97%D0%B0%D0%B3%D0%BB%D0%B0%D0%B2%D0%BD%D0%B0%D1%8F_%D1%81%D1%82%D1%80%D0%B0%D0%BD%D0%B8%D1%86%D0%B0
    --2009-08-27 06:12:37-- http://ru.wikipedia.org/wiki/%D0%97%D0%B0%D0%B3%D0%BB%D0%B0%D0%B2%D0%BD%D0%B0%D1%8F_%D1%81%D1%82%D1%80%D0%B0%D0%BD%D0%B8%D1%86%D0%B0
    Length: 77304 (75K) [text/html]
    Saving to: `Заглавная_страница'
    2009-08-27 06:12:37 (291 KB/s) - `Заглавная_страница' saved [77304/77304]
    Wget also has the --header option. The man page gives an example that might be useful.
    I'm still looking at the ntfs problem.
    Last edited by thisoldman (2009-08-27 11:11:49)

  • [Solved] [ntfs-3g] Filename decoding failed: Invalid or incomplete...

    ..multibyte or wide character. I have this message pop up every few minutes in my journal.
    ntfs-3g is up to date, 2014.2.15-1
    /mnt is where every ntfs drive is mounted, searching for this inode gives me
    $ find /mnt/ -inum 378576
    /mnt/winsys/Windows/servicing/Packages/Package_184_for_KB2994290~31bf3856ad364e35~amd64~~6.3.1.3.cat
    /mnt/winsys/Windows/System32/catroot/{F750E6C3-38EE-11D1-85E5-00C04FC295EE}/Package_184_for_KB2994290~31bf3856ad364e35~amd64~~6.3.1.3.cat
    /mnt/winsys/Windows/WinSxS/Catalogs/6e717cab8a384f3ddad041ba1bf0bf956d38cb7a6d4f0482f253439fc11ae49d.cat
    volumes are mounted with defaults + uuid and user-mountable
    UUID=DEEA3A44EA3A196B /mnt/winsys ntfs-3g uuid=myuser,gid=users 0 0
    How can I fix that?
    Last edited by Soukyuu (2015-03-27 21:46:58)

    Soukyuu wrote:If I run the search on /mnt/windata, I can see the inode error appear almost instantly.
    Could it be that 'find' can't show the file affected because of the error?
    That is possible. If windows thinks(1) there is no problem then my guess would be a filename with "uncommon" characters or violating some restriction. If reasonably feasable you could try keeping an eye on the output of dmesg while you use ls to list the contents of the directories on your windata partition, when you try to list the directory with the offending file(s) you should see errors. Then go to windows and rename the files if possible.
    You might want to ask about this on the ntfs-3g mailing list, maybe you have caught some bug or corner case, and you might get some tips on how to deal with this.
    (1) Windows is (or used to be) idiosyncratic, you have a set of restrictions on filenames, and usually you can't directly create files that violate the restrictions, however some programs may be able to get around those restrictions and create files that you will not be able to deal with via explorer, this might be one of those cases. If I'm not mistaken this has happened to me a few times (when I still used Windows regularly - WinXP days) and at the time checkdisk would say everything was fine but explorer would refuse to rename, move or delete the files. The workaround was to delete/rename the file with the program that created it, in one case it was winrar (the problem that time was a filename too long).

  • Safari 7.0.4 does not update. SoftwareUpdate: Invalid or incomplete local product 031-02230

    I cannot get Software Update to upgrade my safari 7.0.3 to 7.0.4
    Here is the relevant contentos of install.log
    un  8 22:15:23 hoare.inware.org softwareupdated (200)[376]: Adding client SUUpdateServiceClient pid=392, uid=501, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/s toreagent)
    Jun  8 22:15:23 hoare.inware.org storeagent[392]: SUAppStoreUpdateController: start install session with 031-02230
    Jun  8 22:15:23 hoare.inware.org softwareupdated (200)[376]: SoftwareUpdate: Added foreground transaction [0x3] for Safari7.0.4Mavericks-7.0.4
    Jun  8 22:15:23 hoare.inware.org softwareupdated (200)[376]: SoftwareUpdate: Invalid or incomplete local product 031-02230
    Jun  8 22:15:23 hoare.inware.org softwareupdated (200)[376]: SoftwareUpdate: Removed foreground transaction [0x3]
    Jun  8 22:15:23 hoare.inware.org storeagent[392]: SUAppStoreUpdateController: did not start session for 031-02230 (previously installed?)
    Does anybody know how to make softwareupdated do the right thing?

    Please read this whole message before doing anything.
    Back up all data. Quit the App Store application if it’s running. Test after each of the following steps until the problem is resolved.
    Step 1
    Triple-click anywhere in the line below on this page to select it:
    /Library/Updates
    Right-click or control-click the highlighted line and select
    Services ▹ Reveal
    from the contextual menu.* A Finder window should open with a folder selected. Move the contents of the selected folder to the Trash. You may be prompted for your administrator password.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.
    Step 2
    Do as in Step 1 with this line:
    /Library/Preferences/com.apple.SoftwareUpdate.plist
    Restart the computer. If there's no change, quit the App Store and restore the file you moved from your backup, overwriting the one that may have been created in its place. Otherwise, recreate your settings in the Software Update preference pane.
    Step 3
    Hold down the option key and select
    Go ▹ Library
    from the Finder menu bar. Move the following items from the Library folder to the Trash (some may not exist):
    Caches/com.apple.SoftwareUpdate
    Preferences/com.apple.SoftwareUpdate.plist
    Preferences/ByHost/com.apple.SoftwareUpdate.*.plist
    Saved Application State/com.apple.SoftwareUpdate.savedState
    Here, "*" stand for a long string of letters, numbers, and dashes.
    Step 4
    If you still have problems, quit the App Store again.
    Select this line and copy it to the Clipboard:
    open $TMPDIR../C
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window. Depending on which web browser you use, you may have to press the return key. A folder should open. Inside that folder, there may be a subfolder with the name "com.apple.SoftwareUpdate". If so, delete it. You can then quit Terminal.

  • [SOLVED] EDID read invalid with nvidia-313.18

    Hello All,
    after several months of trouble-free operation, my main system started having issues with detecting my second monitor properly. I am quite sure that this has something to do with the latest nvidia driver (313.18) but since I don't use this machine daily, I can't say exactly.
    First, what's the problem? I have an nVidia GTX 460 card with two 26" TFTs @1920x1200 attached. No special configuration file has been necessary for some time now (everything detected automatically as needed). Now the main display (the left of two screens) is working as usual while the right one is limited to an 800x600 resolution. I've already tried several approaches to manually configure this one as intended but so far without success. nvidia-settings won't allow me to set any resolution other than Auto and is also weirdly showing the second display as DFP-3 whereas I think it used to be DFP-1 (following DFP-0 which is still active). A hardware issue can be eliminated as everything is smooth using an Ubuntu bootable CD which uses nouveau by default.
    Here's the Xorg.0.log with a clean configuration (i. e. no /etc/X11/xorg.conf.d/10-monitor.conf)
    [ 2.266]
    X.Org X Server 1.13.2
    Release Date: 2013-01-24
    [ 2.266] X Protocol Version 11, Revision 0
    [ 2.266] Build Operating System: Linux 3.7.4-1-ARCH x86_64
    [ 2.266] Current Operating System: Linux einstein 3.7.6-1-ARCH #1 SMP PREEMPT Mon Feb 4 09:15:13 CET 2013 x86_64
    [ 2.266] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=edf8551b-5b2d-4942-af17-b2ebb09a6cb6 ro quiet init=/usr/lib/systemd/systemd
    [ 2.266] Build Date: 25 January 2013 09:33:50AM
    [ 2.266]
    [ 2.266] Current version of pixman: 0.28.2
    [ 2.266] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 2.266] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 2.266] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Feb 9 11:29:34 2013
    [ 2.268] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 2.269] (==) No Layout section. Using the first Screen section.
    [ 2.269] (==) No screen section available. Using defaults.
    [ 2.269] (**) |-->Screen "Default Screen Section" (0)
    [ 2.269] (**) | |-->Monitor "<default monitor>"
    [ 2.269] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 2.269] (==) Automatically adding devices
    [ 2.269] (==) Automatically enabling devices
    [ 2.269] (==) Automatically adding GPU devices
    [ 2.270] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 2.270] Entry deleted from font path.
    [ 2.271] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 2.271] Entry deleted from font path.
    [ 2.271] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 2.271] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 2.271] Entry deleted from font path.
    [ 2.271] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 2.271] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 2.271] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 2.271] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 2.271] (II) Loader magic: 0x7fcc40
    [ 2.271] (II) Module ABI versions:
    [ 2.271] X.Org ANSI C Emulation: 0.4
    [ 2.271] X.Org Video Driver: 13.1
    [ 2.271] X.Org XInput driver : 18.0
    [ 2.271] X.Org Server Extension : 7.0
    [ 2.272] (--) PCI:*(0:1:0:0) 10de:0e22:19da:2166 rev 161, Mem @ 0xf4000000/33554432, 0xe0000000/134217728, 0xe8000000/67108864, I/O @ 0x0000e000/128, BIOS @ 0x????????/524288
    [ 2.272] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 2.272] Initializing built-in extension Generic Event Extension
    [ 2.272] Initializing built-in extension SHAPE
    [ 2.272] Initializing built-in extension MIT-SHM
    [ 2.272] Initializing built-in extension XInputExtension
    [ 2.272] Initializing built-in extension XTEST
    [ 2.272] Initializing built-in extension BIG-REQUESTS
    [ 2.272] Initializing built-in extension SYNC
    [ 2.272] Initializing built-in extension XKEYBOARD
    [ 2.272] Initializing built-in extension XC-MISC
    [ 2.272] Initializing built-in extension SECURITY
    [ 2.272] Initializing built-in extension XINERAMA
    [ 2.272] Initializing built-in extension XFIXES
    [ 2.272] Initializing built-in extension RENDER
    [ 2.272] Initializing built-in extension RANDR
    [ 2.272] Initializing built-in extension COMPOSITE
    [ 2.272] Initializing built-in extension DAMAGE
    [ 2.272] Initializing built-in extension MIT-SCREEN-SAVER
    [ 2.272] Initializing built-in extension DOUBLE-BUFFER
    [ 2.272] Initializing built-in extension RECORD
    [ 2.272] Initializing built-in extension DPMS
    [ 2.272] Initializing built-in extension X-Resource
    [ 2.272] Initializing built-in extension XVideo
    [ 2.272] Initializing built-in extension XVideo-MotionCompensation
    [ 2.272] Initializing built-in extension XFree86-VidModeExtension
    [ 2.272] Initializing built-in extension XFree86-DGA
    [ 2.272] Initializing built-in extension XFree86-DRI
    [ 2.272] Initializing built-in extension DRI2
    [ 2.272] (II) LoadModule: "glx"
    [ 2.273] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 2.346] (II) Module glx: vendor="NVIDIA Corporation"
    [ 2.346] compiled for 4.0.2, module version = 1.0.0
    [ 2.346] Module class: X.Org Server Extension
    [ 2.346] (II) NVIDIA GLX Module 313.18 Wed Jan 9 15:34:35 PST 2013
    [ 2.346] Loading extension GLX
    [ 2.346] (==) Matched nouveau as autoconfigured driver 0
    [ 2.346] (==) Matched nvidia as autoconfigured driver 1
    [ 2.346] (==) Matched nv as autoconfigured driver 2
    [ 2.346] (==) Matched vesa as autoconfigured driver 3
    [ 2.346] (==) Matched modesetting as autoconfigured driver 4
    [ 2.346] (==) Matched fbdev as autoconfigured driver 5
    [ 2.346] (==) Assigned the driver to the xf86ConfigLayout
    [ 2.346] (II) LoadModule: "nouveau"
    [ 2.347] (WW) Warning, couldn't open module nouveau
    [ 2.347] (II) UnloadModule: "nouveau"
    [ 2.347] (II) Unloading nouveau
    [ 2.347] (EE) Failed to load module "nouveau" (module does not exist, 0)
    [ 2.347] (II) LoadModule: "nvidia"
    [ 2.347] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 2.355] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 2.355] compiled for 4.0.2, module version = 1.0.0
    [ 2.355] Module class: X.Org Video Driver
    [ 2.356] (II) LoadModule: "nv"
    [ 2.356] (WW) Warning, couldn't open module nv
    [ 2.356] (II) UnloadModule: "nv"
    [ 2.356] (II) Unloading nv
    [ 2.356] (EE) Failed to load module "nv" (module does not exist, 0)
    [ 2.356] (II) LoadModule: "vesa"
    [ 2.356] (WW) Warning, couldn't open module vesa
    [ 2.356] (II) UnloadModule: "vesa"
    [ 2.356] (II) Unloading vesa
    [ 2.356] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 2.356] (II) LoadModule: "modesetting"
    [ 2.357] (WW) Warning, couldn't open module modesetting
    [ 2.357] (II) UnloadModule: "modesetting"
    [ 2.357] (II) Unloading modesetting
    [ 2.357] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 2.357] (II) LoadModule: "fbdev"
    [ 2.357] (WW) Warning, couldn't open module fbdev
    [ 2.357] (II) UnloadModule: "fbdev"
    [ 2.357] (II) Unloading fbdev
    [ 2.357] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 2.357] (II) NVIDIA dlloader X Driver 313.18 Wed Jan 9 15:15:26 PST 2013
    [ 2.357] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 2.357] (++) using VT number 1
    [ 2.358] (II) Loading sub module "wfb"
    [ 2.358] (II) LoadModule: "wfb"
    [ 2.358] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 2.359] (II) Module wfb: vendor="X.Org Foundation"
    [ 2.359] compiled for 1.13.2, module version = 1.0.0
    [ 2.359] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 2.359] (II) Loading sub module "ramdac"
    [ 2.359] (II) LoadModule: "ramdac"
    [ 2.359] (II) Module "ramdac" already built-in
    [ 2.360] (II) NVIDIA(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 2.360] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    [ 2.360] (==) NVIDIA(0): RGB weight 888
    [ 2.360] (==) NVIDIA(0): Default visual is TrueColor
    [ 2.360] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 2.360] (**) NVIDIA(0): Enabling 2D acceleration
    [ 3.170] (II) NVIDIA(GPU-0): Display (Idek Iiyama PLE2607WS (DFP-0)) does not support
    [ 3.170] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 3.229] (WW) NVIDIA(GPU-0): The EDID read for display device DFP-3 is invalid:
    [ 3.229] (WW) NVIDIA(GPU-0): unrecognized EDID Header.
    [ 3.229] (--) NVIDIA(GPU-0):
    [ 3.229] (--) NVIDIA(GPU-0): Raw EDID bytes:
    [ 3.229] (--) NVIDIA(GPU-0):
    [ 3.229] (--) NVIDIA(GPU-0): ff ff ff ff ff ff ff ff 26 cd 08 56 c0 c4 00 00
    [ 3.229] (--) NVIDIA(GPU-0): 1d 13 01 03 81 37 22 78 2a 7b 65 a5 55 48 99 26
    [ 3.229] (--) NVIDIA(GPU-0): 12 50 54 bd ef 80 71 4f 81 80 81 8f 95 00 95 0f
    [ 3.229] (--) NVIDIA(GPU-0): a9 40 b3 00 01 01 28 3c 80 a0 70 b0 23 40 30 20
    [ 3.229] (--) NVIDIA(GPU-0): 36 00 26 58 21 00 00 1a 1a 36 80 a0 70 38 1f 40
    [ 3.229] (--) NVIDIA(GPU-0): 50 20 85 04 26 58 21 00 00 1a 00 00 00 fd 00 37
    [ 3.229] (--) NVIDIA(GPU-0): 4c 1d 51 11 00 0a 20 20 20 20 20 20 00 00 00 fc
    [ 3.229] (--) NVIDIA(GPU-0): 00 50 4c 45 32 36 30 37 57 53 0a 20 20 20 00 1e
    [ 3.229] (--) NVIDIA(GPU-0):
    [ 3.229] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.229] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.229] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.229] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.229] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.229] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.229] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.229] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.229] (--) NVIDIA(GPU-0):
    [ 3.229] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.229] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.229] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.229] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.229] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.229] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.229] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.229] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.229] (--) NVIDIA(GPU-0):
    [ 3.230] (II) NVIDIA(0): NVIDIA GPU GeForce GTX 460 (GF104) at PCI:1:0:0 (GPU-0)
    [ 3.230] (--) NVIDIA(0): Memory: 1048576 kBytes
    [ 3.230] (--) NVIDIA(0): VideoBIOS: 70.04.13.00.a3
    [ 3.230] (II) NVIDIA(0): Detected PCI Express Link width: 16X
    [ 3.232] (--) NVIDIA(0): Valid display device(s) on GeForce GTX 460 at PCI:1:0:0
    [ 3.232] (--) NVIDIA(0): CRT-0
    [ 3.232] (--) NVIDIA(0): CRT-1
    [ 3.232] (--) NVIDIA(0): Idek Iiyama PLE2607WS (DFP-0) (connected)
    [ 3.232] (--) NVIDIA(0): DFP-1
    [ 3.232] (--) NVIDIA(0): DFP-2
    [ 3.232] (--) NVIDIA(0): DFP-3 (connected)
    [ 3.232] (--) NVIDIA(0): DFP-4
    [ 3.232] (--) NVIDIA(0): CRT-0: 400.0 MHz maximum pixel clock
    [ 3.232] (--) NVIDIA(0): CRT-1: 400.0 MHz maximum pixel clock
    [ 3.232] (--) NVIDIA(0): Idek Iiyama PLE2607WS (DFP-0): 330.0 MHz maximum pixel clock
    [ 3.232] (--) NVIDIA(0): Idek Iiyama PLE2607WS (DFP-0): Internal Dual Link TMDS
    [ 3.232] (--) NVIDIA(0): DFP-1: 165.0 MHz maximum pixel clock
    [ 3.232] (--) NVIDIA(0): DFP-1: Internal Single Link TMDS
    [ 3.232] (--) NVIDIA(0): DFP-2: 165.0 MHz maximum pixel clock
    [ 3.232] (--) NVIDIA(0): DFP-2: Internal Single Link TMDS
    [ 3.232] (--) NVIDIA(0): DFP-3: 330.0 MHz maximum pixel clock
    [ 3.232] (--) NVIDIA(0): DFP-3: Internal Dual Link TMDS
    [ 3.232] (--) NVIDIA(0): DFP-4: 480.0 MHz maximum pixel clock
    [ 3.232] (--) NVIDIA(0): DFP-4: Internal DisplayPort
    [ 3.232] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 3.232] (**) NVIDIA(0): device Idek Iiyama PLE2607WS (DFP-0) (Using EDID
    [ 3.232] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 3.233] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 3.233] (**) NVIDIA(0): device DFP-3 (Using EDID frequencies has been enabled on
    [ 3.233] (**) NVIDIA(0): all display devices.)
    [ 3.233] (==) NVIDIA(0):
    [ 3.233] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
    [ 3.233] (==) NVIDIA(0): will be used as the requested mode.
    [ 3.233] (==) NVIDIA(0):
    [ 3.233] (II) NVIDIA(0): Validated MetaModes:
    [ 3.233] (II) NVIDIA(0): "DFP-0:nvidia-auto-select,DFP-3:nvidia-auto-select"
    [ 3.233] (II) NVIDIA(0): Virtual screen size determined to be 2720 x 1200
    [ 3.261] (--) NVIDIA(0): DPI set to (88, 89); computed from "UseEdidDpi" X config
    [ 3.261] (--) NVIDIA(0): option
    [ 3.261] (--) Depth 24 pixmap format is 32 bpp
    [ 3.261] (II) NVIDIA: Using 3072.00 MB of virtual memory for indirect memory
    [ 3.261] (II) NVIDIA: access.
    [ 3.265] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 3.265] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
    [ 3.265] (II) NVIDIA(0): configuration option may not be set correctly. When the
    [ 3.265] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    [ 3.265] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
    [ 3.265] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
    [ 3.265] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 3.265] (II) NVIDIA(0): Config Options in the README.
    [ 3.267] (II) NVIDIA(0): Setting mode "DFP-0:nvidia-auto-select,DFP-3:nvidia-auto-select"
    [ 3.357] Loading extension NV-GLX
    [ 3.452] (==) NVIDIA(0): Disabling shared memory pixmaps
    [ 3.452] (==) NVIDIA(0): Backing store disabled
    [ 3.452] (==) NVIDIA(0): Silken mouse enabled
    [ 3.453] (==) NVIDIA(0): DPMS enabled
    [ 3.453] Loading extension NV-CONTROL
    [ 3.453] Loading extension XINERAMA
    [ 3.453] (II) Loading sub module "dri2"
    [ 3.453] (II) LoadModule: "dri2"
    [ 3.453] (II) Module "dri2" already built-in
    [ 3.453] (II) NVIDIA(0): [DRI2] Setup complete
    [ 3.453] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia
    [ 3.453] (--) RandR disabled
    [ 3.456] (II) Initializing extension GLX
    [ 3.502] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 3.503] (**) Power Button: Applying InputClass "system-keyboard"
    [ 3.503] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 3.503] (II) LoadModule: "evdev"
    [ 3.503] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 3.505] (II) Module evdev: vendor="X.Org Foundation"
    [ 3.505] compiled for 1.13.0, module version = 2.7.3
    [ 3.505] Module class: X.Org XInput Driver
    [ 3.505] ABI class: X.Org XInput driver, version 18.0
    [ 3.505] (II) Using input driver 'evdev' for 'Power Button'
    [ 3.505] (**) Power Button: always reports core events
    [ 3.505] (**) evdev: Power Button: Device: "/dev/input/event1"
    [ 3.505] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 3.505] (--) evdev: Power Button: Found keys
    [ 3.505] (II) evdev: Power Button: Configuring as keyboard
    [ 3.505] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
    [ 3.505] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 3.505] (**) Option "xkb_rules" "evdev"
    [ 3.505] (**) Option "xkb_model" "pc105"
    [ 3.505] (**) Option "xkb_layout" "de"
    [ 3.505] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 3.529] (II) config/udev: Adding input device Power Button (/dev/input/event0)
    [ 3.529] (**) Power Button: Applying InputClass "system-keyboard"
    [ 3.529] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 3.529] (II) Using input driver 'evdev' for 'Power Button'
    [ 3.529] (**) Power Button: always reports core events
    [ 3.529] (**) evdev: Power Button: Device: "/dev/input/event0"
    [ 3.529] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 3.529] (--) evdev: Power Button: Found keys
    [ 3.529] (II) evdev: Power Button: Configuring as keyboard
    [ 3.529] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
    [ 3.529] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 3.529] (**) Option "xkb_rules" "evdev"
    [ 3.529] (**) Option "xkb_model" "pc105"
    [ 3.529] (**) Option "xkb_layout" "de"
    [ 3.529] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 3.530] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event11)
    [ 3.530] (II) No input driver specified, ignoring this device.
    [ 3.530] (II) This device may have been added with another device file.
    [ 3.530] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event12)
    [ 3.530] (II) No input driver specified, ignoring this device.
    [ 3.530] (II) This device may have been added with another device file.
    [ 3.531] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event13)
    [ 3.531] (II) No input driver specified, ignoring this device.
    [ 3.531] (II) This device may have been added with another device file.
    [ 3.531] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event14)
    [ 3.531] (II) No input driver specified, ignoring this device.
    [ 3.531] (II) This device may have been added with another device file.
    [ 3.531] (II) config/udev: Adding input device HDA Intel PCH Line (/dev/input/event3)
    [ 3.531] (II) No input driver specified, ignoring this device.
    [ 3.531] (II) This device may have been added with another device file.
    [ 3.531] (II) config/udev: Adding input device HDA Intel PCH Rear Mic (/dev/input/event4)
    [ 3.531] (II) No input driver specified, ignoring this device.
    [ 3.531] (II) This device may have been added with another device file.
    [ 3.532] (II) config/udev: Adding input device HDA Intel PCH Line Out (/dev/input/event5)
    [ 3.532] (II) No input driver specified, ignoring this device.
    [ 3.532] (II) This device may have been added with another device file.
    [ 3.532] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event7)
    [ 3.532] (**) Logitech USB Receiver: Applying InputClass "evdev pointer catchall"
    [ 3.532] (II) Using input driver 'evdev' for 'Logitech USB Receiver'
    [ 3.532] (**) Logitech USB Receiver: always reports core events
    [ 3.532] (**) evdev: Logitech USB Receiver: Device: "/dev/input/event7"
    [ 3.532] (--) evdev: Logitech USB Receiver: Vendor 0x46d Product 0xc51a
    [ 3.532] (--) evdev: Logitech USB Receiver: Found 20 mouse buttons
    [ 3.532] (--) evdev: Logitech USB Receiver: Found scroll wheel(s)
    [ 3.532] (--) evdev: Logitech USB Receiver: Found relative axes
    [ 3.532] (--) evdev: Logitech USB Receiver: Found x and y relative axes
    [ 3.532] (II) evdev: Logitech USB Receiver: Configuring as mouse
    [ 3.532] (II) evdev: Logitech USB Receiver: Adding scrollwheel support
    [ 3.532] (**) evdev: Logitech USB Receiver: YAxisMapping: buttons 4 and 5
    [ 3.532] (**) evdev: Logitech USB Receiver: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 3.532] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.7/2-1.7:1.0/input/input7/event7"
    [ 3.532] (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: MOUSE, id 8)
    [ 3.532] (II) evdev: Logitech USB Receiver: initialized for relative axes.
    [ 3.533] (**) Logitech USB Receiver: (accel) keeping acceleration scheme 1
    [ 3.533] (**) Logitech USB Receiver: (accel) acceleration profile 0
    [ 3.533] (**) Logitech USB Receiver: (accel) acceleration factor: 2.000
    [ 3.533] (**) Logitech USB Receiver: (accel) acceleration threshold: 4
    [ 3.533] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/mouse0)
    [ 3.533] (II) No input driver specified, ignoring this device.
    [ 3.533] (II) This device may have been added with another device file.
    [ 3.533] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event8)
    [ 3.533] (**) Logitech USB Receiver: Applying InputClass "system-keyboard"
    [ 3.533] (**) Logitech USB Receiver: Applying InputClass "evdev keyboard catchall"
    [ 3.533] (II) Using input driver 'evdev' for 'Logitech USB Receiver'
    [ 3.533] (**) Logitech USB Receiver: always reports core events
    [ 3.533] (**) evdev: Logitech USB Receiver: Device: "/dev/input/event8"
    [ 3.534] (--) evdev: Logitech USB Receiver: Vendor 0x46d Product 0xc51a
    [ 3.534] (--) evdev: Logitech USB Receiver: Found 1 mouse buttons
    [ 3.534] (--) evdev: Logitech USB Receiver: Found scroll wheel(s)
    [ 3.534] (--) evdev: Logitech USB Receiver: Found relative axes
    [ 3.534] (II) evdev: Logitech USB Receiver: Forcing relative x/y axes to exist.
    [ 3.534] (--) evdev: Logitech USB Receiver: Found absolute axes
    [ 3.534] (II) evdev: Logitech USB Receiver: Forcing absolute x/y axes to exist.
    [ 3.534] (--) evdev: Logitech USB Receiver: Found keys
    [ 3.534] (II) evdev: Logitech USB Receiver: Configuring as mouse
    [ 3.534] (II) evdev: Logitech USB Receiver: Configuring as keyboard
    [ 3.534] (II) evdev: Logitech USB Receiver: Adding scrollwheel support
    [ 3.534] (**) evdev: Logitech USB Receiver: YAxisMapping: buttons 4 and 5
    [ 3.534] (**) evdev: Logitech USB Receiver: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 3.534] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.7/2-1.7:1.1/input/input8/event8"
    [ 3.534] (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: KEYBOARD, id 9)
    [ 3.534] (**) Option "xkb_rules" "evdev"
    [ 3.534] (**) Option "xkb_model" "pc105"
    [ 3.534] (**) Option "xkb_layout" "de"
    [ 3.534] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 3.534] (II) evdev: Logitech USB Receiver: initialized for relative axes.
    [ 3.534] (WW) evdev: Logitech USB Receiver: ignoring absolute axes.
    [ 3.534] (**) Logitech USB Receiver: (accel) keeping acceleration scheme 1
    [ 3.534] (**) Logitech USB Receiver: (accel) acceleration profile 0
    [ 3.534] (**) Logitech USB Receiver: (accel) acceleration factor: 2.000
    [ 3.534] (**) Logitech USB Receiver: (accel) acceleration threshold: 4
    [ 3.535] (II) config/udev: Adding input device Microsoft Microsoft® Digital Media Pro Keyboard (/dev/input/event9)
    [ 3.535] (**) Microsoft Microsoft® Digital Media Pro Keyboard: Applying InputClass "system-keyboard"
    [ 3.535] (**) Microsoft Microsoft® Digital Media Pro Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 3.535] (II) Using input driver 'evdev' for 'Microsoft Microsoft® Digital Media Pro Keyboard'
    [ 3.535] (**) Microsoft Microsoft® Digital Media Pro Keyboard: always reports core events
    [ 3.535] (**) evdev: Microsoft Microsoft® Digital Media Pro Keyboard: Device: "/dev/input/event9"
    [ 3.535] (--) evdev: Microsoft Microsoft® Digital Media Pro Keyboard: Vendor 0x45e Product 0xb0
    [ 3.535] (--) evdev: Microsoft Microsoft® Digital Media Pro Keyboard: Found keys
    [ 3.535] (II) evdev: Microsoft Microsoft® Digital Media Pro Keyboard: Configuring as keyboard
    [ 3.535] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.8/2-1.8:1.0/input/input9/event9"
    [ 3.535] (II) XINPUT: Adding extended input device "Microsoft Microsoft® Digital Media Pro Keyboard" (type: KEYBOARD, id 10)
    [ 3.535] (**) Option "xkb_rules" "evdev"
    [ 3.535] (**) Option "xkb_model" "pc105"
    [ 3.535] (**) Option "xkb_layout" "de"
    [ 3.535] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 3.536] (II) config/udev: Adding input device Microsoft Microsoft® Digital Media Pro Keyboard (/dev/input/event10)
    [ 3.536] (**) Microsoft Microsoft® Digital Media Pro Keyboard: Applying InputClass "system-keyboard"
    [ 3.536] (**) Microsoft Microsoft® Digital Media Pro Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 3.536] (II) Using input driver 'evdev' for 'Microsoft Microsoft® Digital Media Pro Keyboard'
    [ 3.536] (**) Microsoft Microsoft® Digital Media Pro Keyboard: always reports core events
    [ 3.536] (**) evdev: Microsoft Microsoft® Digital Media Pro Keyboard: Device: "/dev/input/event10"
    [ 3.536] (--) evdev: Microsoft Microsoft® Digital Media Pro Keyboard: Vendor 0x45e Product 0xb0
    [ 3.536] (--) evdev: Microsoft Microsoft® Digital Media Pro Keyboard: Found 1 mouse buttons
    [ 3.536] (--) evdev: Microsoft Microsoft® Digital Media Pro Keyboard: Found scroll wheel(s)
    [ 3.536] (--) evdev: Microsoft Microsoft® Digital Media Pro Keyboard: Found relative axes
    [ 3.536] (--) evdev: Microsoft Microsoft® Digital Media Pro Keyboard: Found absolute axes
    [ 3.536] (--) evdev: Microsoft Microsoft® Digital Media Pro Keyboard: Found absolute multitouch axes
    [ 3.536] (--) evdev: Microsoft Microsoft® Digital Media Pro Keyboard: Found x and y absolute axes
    [ 3.536] (--) evdev: Microsoft Microsoft® Digital Media Pro Keyboard: Found keys
    [ 3.536] (II) evdev: Microsoft Microsoft® Digital Media Pro Keyboard: Forcing relative x/y axes to exist.
    [ 3.536] (II) evdev: Microsoft Microsoft® Digital Media Pro Keyboard: Configuring as mouse
    [ 3.536] (II) evdev: Microsoft Microsoft® Digital Media Pro Keyboard: Configuring as keyboard
    [ 3.536] (II) evdev: Microsoft Microsoft® Digital Media Pro Keyboard: Adding scrollwheel support
    [ 3.536] (**) evdev: Microsoft Microsoft® Digital Media Pro Keyboard: YAxisMapping: buttons 4 and 5
    [ 3.536] (**) evdev: Microsoft Microsoft® Digital Media Pro Keyboard: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 3.536] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.8/2-1.8:1.1/input/input10/event10"
    [ 3.536] (II) XINPUT: Adding extended input device "Microsoft Microsoft® Digital Media Pro Keyboard" (type: KEYBOARD, id 11)
    [ 3.536] (**) Option "xkb_rules" "evdev"
    [ 3.536] (**) Option "xkb_model" "pc105"
    [ 3.536] (**) Option "xkb_layout" "de"
    [ 3.536] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 3.536] (II) evdev: Microsoft Microsoft® Digital Media Pro Keyboard: initialized for relative axes.
    [ 3.536] (WW) evdev: Microsoft Microsoft® Digital Media Pro Keyboard: ignoring absolute axes.
    [ 3.536] (**) Microsoft Microsoft® Digital Media Pro Keyboard: (accel) keeping acceleration scheme 1
    [ 3.536] (**) Microsoft Microsoft® Digital Media Pro Keyboard: (accel) acceleration profile 0
    [ 3.536] (**) Microsoft Microsoft® Digital Media Pro Keyboard: (accel) acceleration factor: 2.000
    [ 3.536] (**) Microsoft Microsoft® Digital Media Pro Keyboard: (accel) acceleration threshold: 4
    [ 3.537] (II) config/udev: Adding input device Microsoft Microsoft® Digital Media Pro Keyboard (/dev/input/js0)
    [ 3.537] (**) Microsoft Microsoft® Digital Media Pro Keyboard: Applying InputClass "system-keyboard"
    [ 3.537] (II) No input driver specified, ignoring this device.
    [ 3.537] (II) This device may have been added with another device file.
    [ 3.537] (II) config/udev: Adding input device Eee PC WMI hotkeys (/dev/input/event6)
    [ 3.537] (**) Eee PC WMI hotkeys: Applying InputClass "system-keyboard"
    [ 3.537] (**) Eee PC WMI hotkeys: Applying InputClass "evdev keyboard catchall"
    [ 3.537] (II) Using input driver 'evdev' for 'Eee PC WMI hotkeys'
    [ 3.537] (**) Eee PC WMI hotkeys: always reports core events
    [ 3.537] (**) evdev: Eee PC WMI hotkeys: Device: "/dev/input/event6"
    [ 3.537] (--) evdev: Eee PC WMI hotkeys: Vendor 0 Product 0
    [ 3.537] (--) evdev: Eee PC WMI hotkeys: Found keys
    [ 3.537] (II) evdev: Eee PC WMI hotkeys: Configuring as keyboard
    [ 3.537] (**) Option "config_info" "udev:/sys/devices/platform/eeepc-wmi/input/input6/event6"
    [ 3.537] (II) XINPUT: Adding extended input device "Eee PC WMI hotkeys" (type: KEYBOARD, id 12)
    [ 3.537] (**) Option "xkb_rules" "evdev"
    [ 3.537] (**) Option "xkb_model" "pc105"
    [ 3.537] (**) Option "xkb_layout" "de"
    [ 3.537] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 3.538] (II) config/udev: Adding input device PC Speaker (/dev/input/event2)
    [ 3.538] (II) No input driver specified, ignoring this device.
    [ 3.538] (II) This device may have been added with another device file.
    [ 3.542] (II) config/udev: Adding input device HDA Intel PCH Rear Mic (/dev/input/event4)
    [ 3.542] (II) No input driver specified, ignoring this device.
    [ 3.542] (II) This device may have been added with another device file.
    [ 3.542] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event14)
    [ 3.542] (II) No input driver specified, ignoring this device.
    [ 3.542] (II) This device may have been added with another device file.
    [ 3.543] (II) config/udev: Adding input device HDA Intel PCH Line (/dev/input/event3)
    [ 3.543] (II) No input driver specified, ignoring this device.
    [ 3.543] (II) This device may have been added with another device file.
    [ 3.543] (II) config/udev: Adding input device HDA Intel PCH Line Out (/dev/input/event5)
    [ 3.543] (II) No input driver specified, ignoring this device.
    [ 3.543] (II) This device may have been added with another device file.
    [ 3.543] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event13)
    [ 3.543] (II) No input driver specified, ignoring this device.
    [ 3.543] (II) This device may have been added with another device file.
    [ 3.543] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event12)
    [ 3.543] (II) No input driver specified, ignoring this device.
    [ 3.543] (II) This device may have been added with another device file.
    [ 3.543] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event11)
    [ 3.543] (II) No input driver specified, ignoring this device.
    [ 3.543] (II) This device may have been added with another device file.
    [ 3.620] (II) NVIDIA(GPU-0): Display (Idek Iiyama PLE2607WS (DFP-0)) does not support
    [ 3.620] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 3.620] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 3.620] (**) NVIDIA(0): device Idek Iiyama PLE2607WS (DFP-0) (Using EDID
    [ 3.620] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 3.679] (WW) NVIDIA(GPU-0): The EDID read for display device DFP-3 is invalid:
    [ 3.679] (WW) NVIDIA(GPU-0): unrecognized EDID Header.
    [ 3.679] (--) NVIDIA(GPU-0):
    [ 3.679] (--) NVIDIA(GPU-0): Raw EDID bytes:
    [ 3.679] (--) NVIDIA(GPU-0):
    [ 3.679] (--) NVIDIA(GPU-0): ff ff ff ff ff ff ff ff 26 cd 08 56 c0 c4 00 00
    [ 3.679] (--) NVIDIA(GPU-0): 1d 13 01 03 81 37 22 78 2a 7b 65 a5 55 48 99 26
    [ 3.679] (--) NVIDIA(GPU-0): 12 50 54 bd ef 80 71 4f 81 80 81 8f 95 00 95 0f
    [ 3.679] (--) NVIDIA(GPU-0): a9 40 b3 00 01 01 28 3c 80 a0 70 b0 23 40 30 20
    [ 3.679] (--) NVIDIA(GPU-0): 36 00 26 58 21 00 00 1a 1a 36 80 a0 70 38 1f 40
    [ 3.679] (--) NVIDIA(GPU-0): 50 20 85 04 26 58 21 00 00 1a 00 00 00 fd 00 37
    [ 3.679] (--) NVIDIA(GPU-0): 4c 1d 51 11 00 0a 20 20 20 20 20 20 00 00 00 fc
    [ 3.679] (--) NVIDIA(GPU-0): 00 50 4c 45 32 36 30 37 57 53 0a 20 20 20 00 1e
    [ 3.680] (--) NVIDIA(GPU-0):
    [ 3.680] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.680] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.680] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.680] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.680] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.680] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.680] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.680] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.680] (--) NVIDIA(GPU-0):
    [ 3.680] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.680] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.680] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.680] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.680] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.680] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.680] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.680] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 3.680] (--) NVIDIA(GPU-0):
    [ 3.680] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 3.680] (**) NVIDIA(0): device DFP-3 (Using EDID frequencies has been enabled on
    [ 3.680] (**) NVIDIA(0): all display devices.)
    [ 4.259] (II) NVIDIA(GPU-0): Display (Idek Iiyama PLE2607WS (DFP-0)) does not support
    [ 4.259] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 4.259] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 4.259] (**) NVIDIA(0): device Idek Iiyama PLE2607WS (DFP-0) (Using EDID
    [ 4.259] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 4.319] (WW) NVIDIA(GPU-0): The EDID read for display device DFP-3 is invalid:
    [ 4.319] (WW) NVIDIA(GPU-0): unrecognized EDID Header.
    [ 4.319] (--) NVIDIA(GPU-0):
    [ 4.319] (--) NVIDIA(GPU-0): Raw EDID bytes:
    [ 4.319] (--) NVIDIA(GPU-0):
    [ 4.319] (--) NVIDIA(GPU-0): ff ff ff ff ff ff ff ff 26 cd 08 56 c0 c4 00 00
    [ 4.319] (--) NVIDIA(GPU-0): 1d 13 01 03 81 37 22 78 2a 7b 65 a5 55 48 99 26
    [ 4.319] (--) NVIDIA(GPU-0): 12 50 54 bd ef 80 71 4f 81 80 81 8f 95 00 95 0f
    [ 4.319] (--) NVIDIA(GPU-0): a9 40 b3 00 01 01 28 3c 80 a0 70 b0 23 40 30 20
    [ 4.319] (--) NVIDIA(GPU-0): 36 00 26 58 21 00 00 1a 1a 36 80 a0 70 38 1f 40
    [ 4.319] (--) NVIDIA(GPU-0): 50 20 85 04 26 58 21 00 00 1a 00 00 00 fd 00 37
    [ 4.319] (--) NVIDIA(GPU-0): 4c 1d 51 11 00 0a 20 20 20 20 20 20 00 00 00 fc
    [ 4.319] (--) NVIDIA(GPU-0): 00 50 4c 45 32 36 30 37 57 53 0a 20 20 20 00 1e
    [ 4.319] (--) NVIDIA(GPU-0):
    [ 4.319] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 4.319] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 4.319] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 4.319] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 4.319] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 4.319] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 4.319] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 4.319] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 4.319] (--) NVIDIA(GPU-0):
    [ 4.319] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 4.319] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 4.319] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 4.319] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 4.319] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 4.319] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 4.319] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 4.319] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 4.319] (--) NVIDIA(GPU-0):
    [ 4.319] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 4.319] (**) NVIDIA(0): device DFP-3 (Using EDID frequencies has been enabled on
    [ 4.319] (**) NVIDIA(0): all display devices.)
    [ 16.599] (II) NVIDIA(GPU-0): Display (Idek Iiyama PLE2607WS (DFP-0)) does not support
    [ 16.599] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 16.599] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 16.599] (**) NVIDIA(0): device Idek Iiyama PLE2607WS (DFP-0) (Using EDID
    [ 16.599] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 16.659] (WW) NVIDIA(GPU-0): The EDID read for display device DFP-3 is invalid:
    [ 16.659] (WW) NVIDIA(GPU-0): unrecognized EDID Header.
    [ 16.659] (--) NVIDIA(GPU-0):
    [ 16.659] (--) NVIDIA(GPU-0): Raw EDID bytes:
    [ 16.659] (--) NVIDIA(GPU-0):
    [ 16.659] (--) NVIDIA(GPU-0): ff ff ff ff ff ff ff ff 26 cd 08 56 c0 c4 00 00
    [ 16.659] (--) NVIDIA(GPU-0): 1d 13 01 03 81 37 22 78 2a 7b 65 a5 55 48 99 26
    [ 16.659] (--) NVIDIA(GPU-0): 12 50 54 bd ef 80 71 4f 81 80 81 8f 95 00 95 0f
    [ 16.659] (--) NVIDIA(GPU-0): a9 40 b3 00 01 01 28 3c 80 a0 70 b0 23 40 30 20
    [ 16.659] (--) NVIDIA(GPU-0): 36 00 26 58 21 00 00 1a 1a 36 80 a0 70 38 1f 40
    [ 16.659] (--) NVIDIA(GPU-0): 50 20 85 04 26 58 21 00 00 1a 00 00 00 fd 00 37
    [ 16.659] (--) NVIDIA(GPU-0): 4c 1d 51 11 00 0a 20 20 20 20 20 20 00 00 00 fc
    [ 16.659] (--) NVIDIA(GPU-0): 00 50 4c 45 32 36 30 37 57 53 0a 20 20 20 00 1e
    [ 16.659] (--) NVIDIA(GPU-0):
    [ 16.659] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 16.659] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 16.659] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 16.659] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 16.659] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 16.659] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 16.659] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 16.659] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 16.659] (--) NVIDIA(GPU-0):
    [ 16.659] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 16.659] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 16.659] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 16.659] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 16.659] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 16.659] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 16.659] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 16.659] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 16.659] (--) NVIDIA(GPU-0):
    [ 16.659] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 16.659] (**) NVIDIA(0): device DFP-3 (Using EDID frequencies has been enabled on
    [ 16.659] (**) NVIDIA(0): all display devices.)
    [ 17.393] (II) NVIDIA(GPU-0): Display (Idek Iiyama PLE2607WS (DFP-0)) does not support
    [ 17.393] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 17.393] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 17.393] (**) NVIDIA(0): device Idek Iiyama PLE2607WS (DFP-0) (Using EDID
    [ 17.393] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 17.453] (WW) NVIDIA(GPU-0): The EDID read for display device DFP-3 is invalid:
    [ 17.453] (WW) NVIDIA(GPU-0): unrecognized EDID Header.
    [ 17.453] (--) NVIDIA(GPU-0):
    [ 17.453] (--) NVIDIA(GPU-0): Raw EDID bytes:
    [ 17.453] (--) NVIDIA(GPU-0):
    [ 17.453] (--) NVIDIA(GPU-0): ff ff ff ff ff ff ff ff 26 cd 08 56 c0 c4 00 00
    [ 17.453] (--) NVIDIA(GPU-0): 1d 13 01 03 81 37 22 78 2a 7b 65 a5 55 48 99 26
    [ 17.453] (--) NVIDIA(GPU-0): 12 50 54 bd ef 80 71 4f 81 80 81 8f 95 00 95 0f
    [ 17.453] (--) NVIDIA(GPU-0): a9 40 b3 00 01 01 28 3c 80 a0 70 b0 23 40 30 20
    [ 17.453] (--) NVIDIA(GPU-0): 36 00 26 58 21 00 00 1a 1a 36 80 a0 70 38 1f 40
    [ 17.453] (--) NVIDIA(GPU-0): 50 20 85 04 26 58 21 00 00 1a 00 00 00 fd 00 37
    [ 17.453] (--) NVIDIA(GPU-0): 4c 1d 51 11 00 0a 20 20 20 20 20 20 00 00 00 fc
    [ 17.453] (--) NVIDIA(GPU-0): 00 50 4c 45 32 36 30 37 57 53 0a 20 20 20 00 1e
    [ 17.453] (--) NVIDIA(GPU-0):
    [ 17.453] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 17.453] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 17.453] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 17.453] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 17.453] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 17.453] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 17.453] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 17.453] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 17.453] (--) NVIDIA(GPU-0):
    [ 17.453] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 17.453] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 17.453] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 17.453] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 17.453] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 17.453] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 17.453] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 17.453] (--) NVIDIA(GPU-0): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 17.453] (--) NVIDIA(GPU-0):
    [ 17.453] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 17.453] (**) NVIDIA(0): device DFP-3 (Using EDID frequencies has been enabled on
    [ 17.453] (**) NVIDIA(0): all display devices.)
    As you can see, the EDID information cannot be obtained from the second display. Since I haven't found any indication of this being a bug in the latest nVidia driver, I wanted to ask whether you have come across any hints or explanations.
    For the time being, I can live with it but I'm actually considering moving to nouveau instead now.
    Thanks for your time. Cheers
    Smoerrebroed
    Last edited by Smoerrebroed (2013-05-04 11:34:32)

    Alright, though it still bothers me that for some reason the nvidia driver no longer correctly reads and processes EDID information on all connectors, supplying DFP-0's EDID to DFP-3 via the "CustomEDID" option fixed all woes. 1920x1200 is now again detected as default, TwinView is enabled and so on ... even without a sophisticated 10-monitor.conf:
    Section "Device"
    Identifier "GeForce GTX 460"
    Driver "nvidia"
    Option "CustomEDID" "DFP-3:/etc/X11/xorg.conf.d/edid.bin"
    EndSection
    Everything else remains at default and works. Perhaps this post will also help others in dealing with nvidia issues.
    One thing this has taught me though is: As much inclined as I am towards open source software, the nouveau driver is really still a long way off the performance of the proprietary nvidia module. If you want/need to work seriously in 3D, there's no alternative.
    Cheers
    Smoerrebroed
    Last edited by Smoerrebroed (2013-05-31 19:36:45)

  • [SOLVED] _____ is invalid or corrupted.

    Hello, I installed Arch last night on my netbook and everything has been going great until now.
    I tried to install flashplugin but ran into a conflict between krb5 and heimdal.
    I tried to fix it with a system upgrade, but now nothing will install.
    It will download the packages but when it goes to install it it says the package is invalid or corrupted.
    For example,
    [ds2369@myhost /]$ sudo pacman -S python-distribute
    resolving dependencies...
    looking for inter-conflicts...
    Targets (2): python-3.2.1-1 python-distribute-0.6.19-1
    Total Download Size: 9.48 MB
    Total Installed Size: 79.50 MB
    Proceed with installation? [Y/n] y
    :: Retrieving packages from extra...
    python-3.2.1-1-x86_64 9.2M 323.2K/s 00:00:29 [###################################################] 100%
    python-distribute-0.6.19-1-any 236.8K 260.5K/s 00:00:01 [###################################################] 100%
    (2/2) checking package integrity [###################################################] 100%
    error: failed to commit transaction (invalid or corrupted package)
    python-3.2.1-1-x86_64.pkg.tar.xz is invalid or corrupted
    python-distribute-0.6.19-1-any.pkg.tar.xz is invalid or corrupted
    Errors occurred, no packages were upgraded.
    [ds2369@myhost /]$
    Any help is very appreciated, thanks.
    Edit: I guess it isn't all packages because I was just able to install cowsay just fine. But it will still give the error for (probably all) the packages it downloads in the system upgrade.
    Last edited by ds2369 (2011-08-22 02:25:36)

    Mr.Elendig wrote:
    pacman -Scc then try again.
    Edit: you should do -Syu foobar btw.
    (giant list of all the packages it downloaded)
    xorg-xsetroot-1.1.0-2-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-server-utils-7.6-2-any.pkg.tar.xz is invalid or corrupted
    xorg-twm-1.0.7-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xdpyinfo-1.2.0-2-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xdriinfo-1.0.4-2-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xev-1.1.0-2-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xlsatoms-1.1.0-2-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xlsclients-1.1.2-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xprop-1.2.1-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xvinfo-1.1.1-2-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xwininfo-1.1.2-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-utils-7.6-7-any.pkg.tar.xz is invalid or corrupted
    xorg-xkbutils-1.0.3-2-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xkbevd-1.1.2-2-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xkb-utils-7.6-1-any.pkg.tar.xz is invalid or corrupted
    xterm-271-1-x86_64.pkg.tar.xz is invalid or corrupted
    Errors occurred, no packages were upgraded.
    It's still doing it =/

  • Best way to solve ORA-01722: invalid number

    Hi,
    I recently had to debug a large Merge statement that was getting 'ORA-01722: invalid number' and I found the only way to do it was comment out the columns until I found the culprit :-(
    Surely in this day and age there is a better way to do this? Oracle knows which column fails so it there a way of finding it more quickly?
    We are using Oracle 9.2
    Thanks for any top tips
    Regards
    Gary

    you can do a cursor and trap the exception
    create table t1 as select '1' col1, '2' col2 from dual union all select '1','x' from dual union all select 'x','2' from dual union all select 'x','x' from dual;
    declare
      cursor c1 is select rowid,col1,col2 from t1;
      dummy number;
    begin
      for r1 in c1 loop
        begin
          select to_number(r1.col1) into dummy from dual;
        exception
          when INVALID_NUMBER then
            dbms_output.put_line(r1.rowid||' col1='||r1.col1);
          end;
        begin
          select to_number(r1.col2) into dummy from dual;
        exception
          when INVALID_NUMBER then
            dbms_output.put_line(r1.rowid||' col2='||r1.col2);
        end;
      end loop;
    end;
    AAAKGCAAEAAAAECAAB col2=x
    AAAKGCAAEAAAAECAAC col1=x
    AAAKGCAAEAAAAECAAD col1=x
    AAAKGCAAEAAAAECAAD col2=xHTH
    Laurent Schneider
    OCM DBA

  • [solved]Subclipse error: invalid thread access

    im still trying to get eclipse with subclipse work. I get to connect to the svn server when importing a project, then after a user and password prompt eclipse tries to check it out as a new project, but then eclipse shuts down.
    After a restart of eclipse nothing had happended. Now if i try it again there is an error message: could not connect to server: invalid thread access.
    Any solutions?
    Last edited by jrs (2009-12-05 10:28:52)

    tsvensson wrote:
    More about the issue here:
    http://subclipse.tigris.org/wiki/JavaHL … 1d77d95b32
    There is currently a bug in the new support for GNOME keyring in Subversion 1.6. It works OK when using the command line,
    but not when other users of the libraries use it. Until this is fixed, you can workaround the problem by turning off this feature.
    To do this, open the file ~/.subversion/config and add the following:
    [auth]
    ### Set password stores used by Subversion. They should be
    ### delimited by spaces or commas. The order of values determines
    ### the order in which password stores are used.
    ### Valid password stores:
    ###   gnome-keyring        (Unix-like systems)
    ###   kwallet              (Unix-like systems)
    ###   keychain             (Mac OS X)
    ###   windows-cryptoapi    (Windows)
    password-stores =
    The empty value for "password-stores" disables the feature. Passwords will be stored in plain text in the auth folder as with all previous version of Subversion.
    This work for me, but I have svn version 1.6.6 , I have changed the file as below:
    ### Section for authentication and authorization customizations.
    [auth]
    ### Set store-passwords to 'no' to avoid storing passwords in the
    ### auth/ area of your config directory. It defaults to 'yes'.
    ### Note that this option only prevents saving of *new* passwords;
    ### it doesn't invalidate existing passwords. (To do that, remove
    ### the cache files by hand as described in the Subversion book.)
    store-passwords = no
    ### Set store-auth-creds to 'no' to avoid storing any subversion
    ### credentials in the auth/ area of your config directory.
    ### It defaults to 'yes'. Note that this option only prevents
    ### saving of *new* credentials; it doesn't invalidate existing
    ### caches. (To do that, remove the cache files by hand.)
    store-auth-creds = no

  • [SOLVED] NTFS partition unmounted after suspend to ram

    I recently did a from-scratch installation after I bought an SSD to replace of my old harddrive. Since this fresh install I have been having a problem with an NTFS partition that is mounted by way of fstab (it's not _the_ windows partition just a bit of shared space on a dual-boot setup): Whenever I suspend the computer and bring it back up, the NTFS partition is invariably unmounted.
    The mount point is empty and the mount command makes no mention of the mount. A simple "sudo mount /mnt/SAND" will bring the partition back up again although sometimes it needs to be umounted first (the mount point is still empty despite the 'mount'). Here is the fstab line:
    /dev/sda3 /mnt/SAND ntfs-3g defaults,noatime,uid=1000,gid=100 0 0
    Testing and screwing around I've noticed that if the WINDOWS partition is mounted using nautilus (as it is not mentioned in fstab) that too will be unmounted while a non-root ext4 partition (UBUNTU) is not.
    So my hypothesis is that these NTFS partitions are singled out for unmounting when suspending (but apparently not mounting when reawakening?) -- maybe because they are assumed to be external drives? Given that it happens across mounting solutions (fstab/nautilus) I'm inclined to think it's not a bug?
    At any rate I'm looking for a solution that will allow me to stop the unmounting when suspending -- ideally for all internal drives, secondarily for these specific partitions. I have checked the suspend to ram article on the wiki but it doesn't seem to mention anything about unmounting...
    EDIT: After the Great Big Arch Switch To Systemd this problem no longers occurs on so I'm closing it. Not necessarily much of a solution to anyone who happens on this from google, sorry.
    Last edited by madchine (2012-10-13 12:58:54)

    Hi all,
    It seems that most freezes are gone with:
    - 270.29 beta driver
    - MTRR enabled by appending enable_mtrr_cleanup mtrr_spare_reg_nr=1 to the list of kernel options (see http://www.nvnews.net/vbulletin/showpos … tcount=39)
    I didn't investigate further to  know if both the driver and the MTRR trick are required.
    Thanks a lot,
    Aurel.

  • [SOLVED] NTFS-3G UTF-8 Support

    Ever since the "todo: have to rethink extra options" error started showing up on NTFS-3G, I've been using the /usr/share/hal/fdi/policy/10osvendor/20-ntfs-config-write-policy.fdi fix found at <http://bbs.archlinux.org/viewtopic.php?id=42070> (fifth post down, by Pilli).
    That would allow me to mount external NTFS partitions, and by changing the contents of /sbin/mount.ntfs-3g to
    #!/bin/bash
    /bin/ntfs-3g $1 $2 -o locale=en_GB.UTF-8
    and making it executable, I was able to restore UTF-8 support.
    On a new Arch install today, I tried mounting my external NTFS drive without using the fix shown at the top of this post. I was overjoyed to find that it mounted, as well as an internal NTFS drive. However, I noticed I did not have UTF-8 support. I tried using the UTF-8 fix shown above but it seems it does not work now. Does anyone know how to restore UTF-8 support with the new NTFS-3G package?
    Last edited by tony5429 (2008-10-18 22:16:01)

    the fix from the first post in this topic worked for me fo far
    now when i use this fix, and try to mount a disk there's "unknown error"
    christ it's an outrage the hal option doesn't get parsed like it's supposed to after all this time!!
    how to make hal automount a ntfs-3g drive with utf-8 locale?
    Last edited by _saiko (2008-10-27 23:52:43)

  • [SOLVED] Superblock has invalid ext3 journal after change of VMSPLIT

    I'm not sure if this is the appropriate forum for this, but here goes..
    I recently recompiled a custom kernel (toofishes' Eee kernel) which had NOHIGHMEM=y and VMSPLIT2G=y, enabling highmem and changing the split back to VMSPLIT3G. However, when it came to booting it, my login manager never popped up and instead I got a tty. Logging in gave me this output:
    /bin/ls: /lib/librt.so.1: unsupported version 372 of Verdef record
    and when I try to start X:
    xauth: creating new authority file /home/jickel/.serverauth.1892
    /usr/bin/X: error while loading shared libraries: libm.so.6: ELF load command alignment not page-aligned
    giving up.
    xinit: Connection refused (errno 111): unable to connect to X server
    xinit: No such process (errno 3): Server error.
    Plus some segfaults when quitting. It seems I did not configure the new memory setting properly, though I did remember to change the CONFIG_PAGE_OFFSET_ VALUE at least.
    Now when I try to boot using the default arch kernel to replace the faulty kernel, the file system check fails, and when I manually run fsck I get this question:
    Superblock has an invalid ext3 journal (inode 8).
    Clear<y>?
    I'm still pretty new to Linux, but it seems the change of memory might have forced a change in the FS journal. No idea where to go from here though, and I that answering yes to the above might hose my FS. What do you suggest I do? I recently backed up my system, luckily.
    Last edited by Jickel (2008-07-08 20:10:30)

    I did it manually, I'll try doing it the other way later then. Thanks for the advice!
    I guess those segfaults must have damaged the journals then. I'm still not sure how to repair this though.
    UPDATE: Well I deleted the journal, had the file system repaired, and had a new journal created. The fsck command reports everything is fine now, but I still get the "FILE SYSTEM CHECK FAILED - Please repair manually and reboot" box-thingy when I try to reboot. Any idea how do progress from here? I need a working system to update the kernel back to a working one.
    Oh, I found another thread where the OP has the same issue http://bbs.archlinux.org/viewtopic.php?pid=385792 . I'll go through the solutions suggested there and see if anything works. No word on results in that thread though.
    Last edited by Jickel (2008-07-08 05:37:44)

  • [SOLVED] NTFS mount bitchy on gnome

    Hello fellow Archers!
    I've been having trouble with mounting NTFS drives on Arch64..
    Search didn't help me sadly.
    When I want to mount my NTFS drives using the Gnome "Mount Volume" item in the context menu, it does not display an error but does not do anything, too.
    When I use
    :: root@LukeArch /home/luke# gnome-mount -f ntfs-3g -d /dev/sda8
    It works flawlessy and I can browse the drive like the regular linux file system using Nautilus.
    So how can I coax Gnome into using the command above? Or at least use the ntfs-3g driver?
    Last edited by Flippeh (2009-05-01 22:03:17)

    This is related to PolicyKit, I had the exact same problem a short while ago:
    http://bbs.archlinux.org/viewtopic.php?id=71174
    Similar solution can be found in the wiki:
    http://wiki.archlinux.org/index.php/HAL … ion_Denied
    *edit*
    welcome to arch
    Last edited by stefanwilkens (2009-05-01 21:55:27)

  • [solved]tail -l invalid option. Audio on thinkpad x120e

    so I am trying to get audio to work. I looked at the wiki for it: https://wiki.archlinux.org/index.php/IBM_ThinkPad_X120e
    this is what it says:
    $ tail -1 /etc/modprobe.d/modprobe.conf
    options snd-hda-intel index=1
    error:
    [hei@myhost ~]$ tail -1 /etc/modprobe.d/modprobe.conf options snd-hda-intel index=1
    tail: option used in invalid context -- 1
    I have pulseaudio and alsa installed.  I checked the man of tail and l is not an option.Not sure what to do here.
    edit: if this option is -1 then  i still get an error.
    hei@myhost ~]$ tail -1 /etc/modprobe.d/modprobe.conf options snd-hda-intel index=1
    tail: option used in invalid context -- 1
    Last edited by cirnOS (2011-08-26 21:26:05)

    anonymous_user wrote:Type just "tail -1 /etc/modprobe.d/modprobe.conf". Do not add anything else.
    I figured that. Here is the input:
    [hei@myhost ~]$ tail -1 /etc/modprobe.d/modprobe.conf
    snd-hda-intel index=1
    this is what i see in alsamixer ( with the exception of the hdn-intel card):
    [hei@myhost ~]$ cat /proc/asound/cards
    0 [Generic ]: HDA-Intel - HD-Audio Generic
    HD-Audio Generic at 0xf0244000 irq 45
    1 [SB ]: HDA-Intel - HDA ATI SB
    HDA ATI SB at 0xf0240000 irq 16
    29 [ThinkPadEC ]: ThinkPad EC - ThinkPad Console Audio Control
    ThinkPad Console Audio Control at EC reg 0x30, fw unknown
    I can't choose the intel option for sound. If it does help I do have pulseaudio installed so im not sure if that is conflicting. With the speakertest -c 2 I can hear my speakers output the static like noise...
    edit: I just removed pulse audio. My issue now is not being able to select the default intel audio card so I can hear audio.
    [hei@thegate ~]$ mpd
    listen: bind to '0.0.0.0:6600' failed: Address already in use (continuing anyway, because binding to '[::]:6600' succeeded)
    output: No "audio_output" defined in config file
    output: Attempt to detect audio output device
    output: Attempting to detect a alsa audio device
    ALSA lib pcm_dmix.c:1018:(snd_pcm_dmix_open) unable to open slave
    alsa: Error opening default ALSA device: No such file or directory
    output: Attempting to detect a oss audio device
    oss: Error opening OSS device "/dev/dsp": No such file or directory
    oss: Error opening OSS device "/dev/sound/dsp": No such file or directory
    output: Attempting to detect a pulse audio device
    Assertion 'm' failed at pulse/thread-mainloop.c:172, function pa_threaded_mainloop_lock(). Aborting.
    Aborted
    Last edited by cirnOS (2011-08-24 03:25:59)

  • Invalid Characters shown in UTF-8 character set

    There is an XMLP report whose template output character set is ISO-8859-1. The character set ISO-8859-1 is required for this report as per Spanish Authorities. When the report is run, output gets generated in the output directory file of application server. This output file doesn't contain any invalid characters.
    But when the output is opened from SRS window, which opens it in a browser, the invalid characters are shown for characters like Ñ , É etc.
    Investigation done:
    Found that the output generated on the server is having ISO encoding and hence doesn't contain any invalid characters. Whereas the output generated from SRS window, it is in UTF encoding, so it seems the invalid characters are displayed when conversion takes place from ISO to UTF-8 format.
    Created the eText output using the data xml and template using BI publisher tool, the output is in ISO encoding. So if i go and change the encoding to UTF-8 by opening it in explorer or Notepad++, invalid charcters are shown for Ñ, É etc.
    Is there any limitation, that output from SRS window will show only in UTF-8 encoding? If not then please suggest.
    Thanks,
    Saket
    Edited by: 868054 on Aug 2, 2012 3:05 AM
    Edited by: 868054 on Aug 2, 2012 3:05 AM

    Hi Srini,
    When customer is viewing output from the SRS window, then it contains invalid characters because it is in UTF-8 character set. Customer is on Oracle OnDemand so they cannot take the output generated on the server.Every time they have to raise a request to Oracle for the output file. So the concern here is, why don't the output from SRS window show output with valid characters ?
    The reason could be conversion of ISO format to UTF-8. How could this be resolved ? Does SRS window output cannot generate in ISO format ?
    A quick reply will be appreciated as customer is chasing for an update.
    Thanks,
    Saket
    Edited by: 868054 on Aug 7, 2012 11:08 PM

  • Can you solve the error ? FlashBuilder 4 :launch failed : Illegal character in path at index 41

    Hi
    when I am going to run an application (even a simple blank mxml one) ,  the flashbulider is saying the follows:
    Launch failed
    Illegal character in path at index 41
    file:///......bin-debug/Main.html

    cant access your stuff maybe paste it in pastie.org

Maybe you are looking for

  • Hooking up iPad to the tv

    I would like to hook up my iPad to my tv to watch videos. I know it can be done using one of three different Cables. for some reason I didn't have any luck using the component cords (green, blue, red video and red white audio). It is possible the set

  • AirPort to AirPort communication

    I currently use an AirPort Express for my WiFi. I wanted to extend the network range within my home so I planned to purchase an  AirPort Extreme but I've also just purchased a Direct TV DVR unit that would be located on another floor of my home, away

  • Options box opens why is there nothing in it?

    I click tools then options . options window opens with nothing in it. I cant change home page or anything else.

  • Can I take a backup of a database in standby mode?

    Can I run backup on a database that is in standby mode because it is the DR box receiving log shipping? Does that work in SQL 2005?  How about SQL 2000? Thanks. Josh ps - I know I should just try it, I've already Googled it - with mixed results.

  • Using variable as schema / table names?

    Hello all - First time poster :) I would like to use PL SQL to do something like so --***************RUN MAIN****************** DEFINE SCHEMA_NAME = 'SCHEMA_NAME' CHAR; DEFINE FINAL_TABLE = 'FINAL_TABLE ' CHAR; BEGIN SELECT DISTINCT COLUMN FROM SCHEM