[10:52] hi. is there an easy solution to use the windows key to open the bottom left menu? === tsimonq2alt is now known as tsimonq2 [13:35] wtf is this alternate download whats difrence vs normal === Guest84871 is now known as IdleOne [14:02] poopBot: alternative iso you mean ? Usually it comes without a live session just a text based debian installer [14:16] oh [14:16] i want live installer [14:16] xD === pleia2_ is now known as pleia2 [15:32] hi all [15:33] tatally newbie here [15:33] totally === TheSchaf2 is now known as TheSchaf === neil is now known as Guest95053 [18:32] Just installed Lubuntu (in place of Mint XFCE) last weekend. Strange thing...I have two monitors and the POST, Lubuntu splash, etc., display on both monitors, but as soon as Login screen appears, second monitor turns off. [18:33] guest is this a desktop where it is permanantly setup that way? [18:33] yes, it is [18:34] xrand on shows one (default) monitor [18:34] well you can monitor settings from the prefrences menu and then save your settings [18:34] lxrandr is a nicer frontend [18:34] OK, but still there is only the one default monitor shown there. [18:34] Can't seem to find a way to utilize both monitors after login. [18:36] BTW, I'm using a Nvidia FX-5200 AGP card. Thus my reasons for installing 14.04 [18:36] Guest95053, with what driver [18:37] I am pretty sure FX-5200 would not have nvidia drivers anymore but noveau should work or is there a regression I do not know about [18:37] I have not tested with default driver, only with 173.xx Nvidia driver. Maybe I need to try default. [18:39] "noveau" is what I was calling default. I'll give it a try, but nvidia drivers are still in the older kernel that 14.04 uses, just not in 16.04. [18:40] Guest95053: you should grep around in /var/log/{dmesg,syslog,Xorg.*.log} and look for any errors [18:45] Guest95053, I think I had a pci version of your card and noveau works with it but that is not the case with something much newer like say a gtx 960 where there might be a really big performance difference and firmware barriers for noveau developers [19:47] lynorian: fx 5200 should have nvidia-173 drivers. [19:49] lynorian: nouveau works terribly with it. Regular crashes, no video playback. [20:40] Hello, I am getting an error when attempting to play MP3's. states error opening file and says no such file or directory but when it is plugged into a windows machine it works fine in winamp. Using audacious music player [20:41] Argh_: so this is a USB? did you mount it? [20:42] I am presuming it is mounted because I can see the songs etc on it. [20:42] and it shows on the desktop [20:42] it is usb [20:42] I also copied it to a hard drive [20:43] and so you can navigate with audacious to the location on the usb? [20:43] yes [20:43] sounds mounted to me [20:43] :) [20:43] have you tried running it a terminal? [20:44] like `audacious /path/to/location` [20:45] not sure how to find out the location to be able to put it in terminal [20:45] could probably copy paste from pcmanfm to lxterminal [20:46] file:///media/metal/930c1555-4032-48f5-99c8-ed6262f01a7f/%5CUsers%5CGAMER%5CDesktop%5CCollection%20Music%5CMusic%20FIles%5CAsia%20-%20Heat%20Of%20The%20Moment.mp3 [20:46] is that the path? [20:46] something seems strange there [20:46] new to linux so.. what can I say LOL [20:47] the backslashes are probably not helping [20:47] I copied that out of audacious list that shows the songs [20:47] in most linux shells \ is an escape character [20:47] what about / slashes [20:48] not escape characters, but they are supposed to indicate a change in folder [20:48] i'd just change them to underscores. can't go wrong. or just rename that whole big blob to something.mp3 [20:48] oh man. wonder if I will need ot do that to all files [20:49] probably wise [20:49] there are over 1000 songs [20:50] https://scottlinux.com/2011/04/24/batch-rename-files-with-rename/ [20:50] easy in linux world [20:50] one of the problems I am having is if I double click on the file it automatically opens audacous [20:50] oh love typos [20:50] that's what it's supposed to do [20:51] well I wanted to edit just one to see if that is the issue. [20:55] $ rename 'y/ /_/' * is to replace the spaces with underscores so would I use $ rename 'y///_/'* ? [20:58] The next question would be how do I only do it to the mp3 file? [20:59] not sure if it helps but the song I posted is Heat of the Moment by Asia [20:59] oh yeah i can see that [20:59] but that's not the filename [21:00] oh. I guess I am confused then hehe [21:00] so what I showed you is just the location correct? [21:00] \Users\GAMER\Desktop\Collection Music\Music FIles\Asia - Heat Of The Moment.mp3 [21:01] THAT is the filename [21:01] not the location [21:01] the problem is those backslashes [21:01] did you see the rename command I posted? Will that work? [21:02] oh wait. the link I read showed how to rename it. [21:02] you want to do `rename 's/\\/_/' /path/to/file` [21:02] remember \ is an escape character [21:02] not sure what you mean by escape character [21:02] so in order to use an UNescaped \ you need to escape it \\ [21:03] https://en.wikipedia.org/wiki/Escape_character [21:03] windows has them too as you can see [21:05] ok so this just stays read this don't do anything with it because if it isn't escaped it will use it as a command? [21:05] *says read this [21:05] you in the terminal? [21:06] I am [21:06] type this: [21:06] echo \/ [21:07] what does it give you back? \/ or something else? [21:07] / [21:07] right [21:07] now try: [21:07] echo \\/ [21:08] ok I get \/ [21:08] ah so echo means to show? [21:08] with the / [21:08] that's because instead of trying to escape the next character, the \ is escaped, i.e. it prints the actual \ [21:08] oh sorry \ [21:08] echo can be useful for such things [21:08] ok [21:08] for example you can show the value of variables [21:09] echo $SHELL [21:09] for example [21:09] there's other magic it can do [21:09] I get /bin/bash [21:09] yup, which is everyone's DEFAULT shell [21:09] OH ok [21:09] so now you know a little more :) [21:09] I do :) [21:09] lovin it! [21:10] SO, to rename your file: you want to do `rename 's/\\/_/' /path/to/file` [21:10] so how do I find the path to the file? [21:10] because what you showed me before was just the name [21:11] yep you kind of already did this [21:11] let's start by going to the folder that contains the file [21:11] do: [21:11] cd /media/metal/930c1555-4032-48f5-99c8-ed6262f01a7f [21:11] now if you want to see a list of all the files in that folder, do: [21:11] ls [21:11] cd for change directory [21:11] yup :) [21:11] ls means list? [21:12] more or less yes [21:12] so there are three colors, white blue and red [21:13] red look to be zip files [21:13] yep [21:13] blue is folders [21:13] white is files [21:13] there's also tab completition available [21:13] so if you do: [21:13] rename 's/\\/_/' \\Users [21:13] and then hit TAB [21:14] it should either fill in the rest [21:14] OR [21:14] if it does nothing, it measns there are multiple matches [21:14] if you hit TAB again it will show them all [21:14] you can also use asterisks as wildcards [21:15] you can also use quotes to get rid of having to deal with escapes [21:15] so you could do: [21:15] it didn't do anything [21:15] rename 's/\\/_/' *"Asia - Heat Of The Moment.mp3" [21:15] this is cool btw I am loving it [21:15] :) [21:16] you might like linuxpadawan.net, as an aside. free linux mentoring [21:16] hitting tab didn't change anything from what I can see [21:16] you can CTRL-C to get out of a command you're working on [21:16] copied pasted and bookmarked :) [21:17] ok so I did a ctrl c [21:17] now I copied and pasted the command you gave me but it didn't seem to do anything [21:17] with the tab anyway [21:17] it should return nothing if it worked [21:17] oh [21:18] how do i find out if it worked? just open the file again? [21:18] you can ls [21:28] not sure what happened, wasn't able to type anything [21:29] I noticed that the folder used to be called "all MP3's" now it is showing up as a file called "all.m3u8" [21:30] did I loose you wxl? [21:35] was_Argh: he's at work and sometimes gets called off [21:36] was_Argh: if you stick around, he'll be back soon ;) [21:37] ok thank you :) [21:49] was_Argh: ok, i'm going to teach you some magic. first install pastebinit by doing `sudo apt -y install pastebinit` and enter your password when asked [21:50] OK installing :) [21:50] ok done [21:51] cd back to where you were when you did the rename, if you happened to move around [21:51] oh and one more package just to make things really fun [21:51] `sudo apt -y install xclip` [21:52] ok done [21:52] what is CTCP VERSION? [21:52] that was me checking what irc client you were using [21:52] ah ok [21:52] because if you have the right one, i can make this magic even more magic :) [21:53] schweet! [21:53] but here's what we're going to do, all in one line: [21:53] ok both isntalled [21:53] 1. get a recursive directory listing [21:53] *installed [21:53] 2. submit the directory listing to paste.ubuntu.com [21:53] what is that? [21:53] 3. copy the URL to the clipboard [21:53] and then you can just paste it here [21:53] then i'll be able to see what you see [21:53] ok [21:53] how do I get a recursive directlry? [21:53] the directory listing is what you get from `ls` [21:54] good lord typo heaven [21:54] recursive means it will drill down into all the folders [21:54] we're going to use a magic linux thing called pipes [21:54] a pipe takes the output of the previous command gives it to the next one [21:54] so: [21:54] ls -alR * | pastebinit | xclip [21:55] then you should just be able to come back to irc and hit SHIFT-INSERT to paste it [21:56] ok ls: cannot open irectory 'lost+found' permission denied [21:56] what does `pwd` return? [21:57] file:///media/metal/930c1555-4032-48f5-99c8-ed6262f01a7f/%5CUsers%5CGAMER%5CDesktop%5CCollection%20Music%5CMusic%20FIles%5CBlondie%20-%20Call%20Me%281%29.mp3 [21:57] um. that isn't right LOL [21:57] cd /media/metal/930c1555-4032-48f5-99c8-ed6262f01a7f [21:57] then do the thole thing again [21:57] if there's a lost+found in there, that's just annoying [21:58] ok what I copied showed up when I hit pwd [21:59] you mean the permission denied? [21:59] or you mean /media/metal/930c1555-4032-48f5-99c8-ed6262f01a7f ? [21:59] ya it does have the lost+found [22:00] yes [22:00] which yes? :) [22:00] LOL sorry, good point [22:00] ok when I did pwd it showed /media/metal/930c1555-4032-48f5-99c8-ed6262f01a7f [22:00] ok so that's good [22:01] sooo let's do this differently then [22:01] ok [22:02] ok i think this will work [22:03] find . -not -name "lost+found" | pastebinit | xclip [22:03] permission denied [22:03] did it leave you anything on the clipboard though? [22:03] try shift-insert [22:03] find . -not -name "lost+found" | pastebinit | xclip [22:04] baaaah [22:04] lol [22:04] oh hell let's just at least get the basic listing [22:04] ls -al | pastebinit | xclip [22:04] ok [22:04] i KNOW that will work [22:05] so you want me to shift insert here right? [22:05] yup [22:05] ls -al | pastebinit | xclip [22:05] >:( [22:05] do I need to activate or start those programs I installed? [22:06] no [22:06] well enough of my dumb magic i guess [22:06] just do ls -al | pastebinit and copy and paste the url here :) [22:06] oh [22:06] hahah [22:06] i forgot [22:07] ls -al | pastebinit | xclip -selection clipboard [22:07] ? [22:07] THAT will do it [22:07] http://paste.ubuntu.com/23305242/ [22:07] HAH! [22:07] don't make yourself crazy but there are three clipboards in linux [22:08] REALLY? [22:08] thats cool [22:08] heh yup [22:08] ok if you look at that URL you'll notice all the lines that start with "d" are directories [22:08] ok [22:09] it looks like "all.m3u8" always has been a file, so I don't think that's your directory [22:09] i think it's actually the line right above it: "All College" [22:09] it used to be a folder called all mp3's [22:10] 74 is pictures of my 74 plymouth :) [22:10] heheheh [22:10] well [22:10] you could search for such a folder [22:10] how? [22:12] find . -type d -iname "all mp3*" [22:13] that looks only for directories (-type d) and does a case insensitive (thus -iname rather than -name) search [22:13] . refers to your current directory, i.e. $PWD (the `pwd` command will give you that too) [22:14] in terminal? [22:14] yup [22:15] what is up with the permission denied? [22:15] that's probably just complaining about lost+found, no? [22:15] ya [22:15] yeha don't worry about that [22:15] I just opened another terminal and did it but it didn't show anything [22:15] that means it didn't find it [22:15] ok [22:16] why don't you `cd "All College"` (or `cd All\ College`) and `ls` in there if you see if you see your files [22:16] i could also see "100ANDRO" potentially being the place, too [22:17] (it might contain the all mp3's folder) [22:17] from terminal it is showing my college transcripts etc [22:18] ok so cd back with either `cd -` (which will take you to the last folder you were in) or `cd ..` which will take you up one folder in the hierarchy [22:18] then you can try 100ANDRO [22:18] wont' let me into 100ANDRO [22:19] drwx------ 3 metal metal 4096 Oct 9 20:23 100ANDRO [22:19] oh didn't see the last directions [22:19] ^^^ this means that the owner can read, write, and execute the directory [22:19] drwx------ 3 metal metal 4096 Oct 9 20:23 100ANDRO [22:20] ^^^^^ ^^^^^^ this tells who the owner and their group is [22:20] i.e. you should have every ability to get into it :) [22:20] ah ok [22:20] unless you're not "metal" (`whoami` will let you know) [22:20] I don't see the "3" though must the metal@metal [22:21] you can see the three here http://paste.ubuntu.com/23305242/ [22:21] the three is the number of links [22:22] and that is just the list for my brothers sportster I am working on and my nook books I can't get into lol [22:22] number of links? [22:22] that's a longer more arcane subject. read more here if you want: http://unix.stackexchange.com/questions/103114/what-do-the-fields-in-ls-al-output-mean#103118 [22:22] anywho [22:23] hehe [22:23] so 100ANDRO doesn't have your mp3s [22:23] nope [22:23] and frankly i don't even see the mp3 you originally came in here talking about [22:24] when I click on theall.m3u8 file it shows all the mp3's I had on the hard drive. its a laptop hard drive in an external case [22:24] I wonder if windows nuked it. [22:26] that m3u8 is probably a playlist [22:26] oh man... [22:26] that would make sense. guess I will need to reburn all the cd's/music I have. argh [22:27] ouch [22:27] brb [22:27] ya.. sniff sniff. k === DalekSec_ is now known as DalekSec [22:35] back [22:35] did your windows drive die, was_Argh ? [22:35] you could also look to see if there are any mp3s left with `find . -type f -iname "*.mp3"` (f for file btw) [22:37] no I just used it as a backup [22:37] it's maybe possible it's still around [22:37] ? or did you overwrite the drive? [22:39] don't think I overwrote the drive. It did find mp3's but they were ringtones LOL