=== bazhang_ is now known as bazhang === Jikan is now known as Jikai [07:45] morning. I haven't dug into this, but boot spends quite some time looking for btrfs filesystems... can I disable that somehow? - tbh tho, I'm not even sure it's the last output's why I'm waiting (loading the kernel take 5 full seconds, even from a mechanical hd). [07:45] *doesn't take [09:11] have they changed all the icons in 13.04 or is it just the dash icon? [09:19] !raring | pecc [09:19] pecc, please see my private message === Jikai is now known as Jikan [13:19] is there a page with 13.04 know issues and what changes are there etc.? Seems that it has become impossible to google those any more :( usually the wiki for the next ubuntu was quite easy to find [13:29] Hey all [13:53] hi [13:54] Hello [13:55] I can't install debug symbols for KDE applications via DrKonqi… is this known to be broken? the dialog always just tells me "No debug packages could be found for the files listed below. Do you want to continue anyway?" [13:56] haven't looked up manually yet, whether the actual debug packages are available… doing this now [13:56] ran into this with at least smb4k and muon updater [13:58] looks like there are none at all for smb4k… [13:58] should I request them via Launchpad? [15:34] !info wine [15:34] wine (source: wine1.4): Microsoft Windows Compatibility Layer (meta-package). In component universe, is extra. Version 1.4.1-0ubuntu5 (raring), package size 0 kB, installed size 21 kB (Only available for i386; amd64) [15:36] anyone experienced problems trying to install the special flash version for Steam on 13.04? [15:37] after opening the adobe-flashplugin in the software center, I get a message "Available from the "raring-partner" source" but clicking 'Use This Source' is not helping, it stays on the same way [15:55] adobe-flashplugin hasn't been uploaded to partner for raring yet: http://archive.canonical.com/ubuntu/pool/partner/a/adobe-flashplugin/ [15:59] Just wondering if anyone besides me had issues with 3.8.0-10 to 3.8.0-11 jump. No video, had to boot to recovery and install the headers and reinstall nvidia [15:59] hmmm, bjsnider any workaround you could recommend in the meanwhile? [16:02] could I use one of the recent .deb packages perhaps? [16:04] the quantal package will work [16:04] i don't know about any special steam version though [16:05] i'm assuming you were talking about adobe-flashplugin since the message you got was about partner [16:43] hello. wine currently has broken dependencies because the i368 version of wine1.4 is missing in the repos. what can i do? wait? === shadeslayer_ is now known as shadeslayer === Nach0z_ is now known as Nach0z [22:06] !torrents [22:06] Quantal can be torrented from http://torrent.ubuntu.com/simple/quantal/desktop/ubuntu-12.10-desktop-i386.iso.torrent or http://torrent.ubuntu.com/simple/quantal/server/ubuntu-12.10-server-amd64.iso.torrent depending on your needs. Other flavors can be found at http://torrent.ubuntu.com:6969 [23:19] there might be a bug in 13.04 with the way terminal is handling deleted directories on NTFS partitions - when I am inside dir a (in terminal) and I delete it from the GUI file browser - I cant do cd .. to get out of the deleted directory, I have to do cd full/path/to/dir/above/a to get out [23:19] as I said, not sure this bug is unique to 13.04 only [23:19] dont have another distro here to test [23:22] I think thats normal [23:24] you get somewhat weird behavior on non ntfs too [23:24] difference is probably in how the reference counting is done between regular unix fs and ntfs [23:36] linux isnt unix... :P [23:38] Bauer1: Your issue is based on the following: the directory entry of the current directory is deleted, so there is no chance to determine the parent of it. This behaviour is always the same, regardless of the filesystem. [23:38] no [23:38] And yes, thats no bug, thats an expected behaviour since decades. [23:38] most native linux filesystems will keep a reference to the directory, so the parent is still valid [23:39] ntfs apparently does not [23:39] You are entirely wrong. Show a pastebin proving what you just said. [23:39] whats the point [23:40] try it yourself in ext4 if you like [23:40] but its still not recommended to start applications from this semi invalid directory [23:40] many will crash as getcwd calls return null [23:41] jtaylor: I did it too often. I do know I am right. [23:42] the cd .. is emulated by shells as a general rule [23:42] to prove this, make a symlink like foo/bar -> foo/x/y/z and go to cd foo/bar. You are physically in z, but if you cd .. you are back at foo [23:42] And it is based on the current directory entry, which is invalid, so cd .. will not work. [23:42] yes thats great [23:42] I prefer bind mounts over symlinks [23:43] they don't have that problem [23:46] bekks: its not really invalid you can even go in it from another shell if you like [23:46] its only removed when the last reference is gone [23:47] same as with file which you can still read and copy even after deletion as long as something still has it open [23:48] Just try it and pastebin your proof. [23:48] it involves two shells, how would I pastebin that? [23:48] ok I can [23:49] Deleting the current directory in one shell, and issueing cd .. in the same shalle does involve one shell only. [23:49] *shell [23:50] An even in one shell, you can use pushd and popd. [23:51] http://paste.ubuntu.com/5597476/ happy? [23:51] ow got the wrong pid [23:55] its of course possible that this is just bash magic, as the entry for .. is not present anymore [23:55] if so I wonder why it wouldn'T work on ntfs