[00:00] guys need assistance with a few programs. Gogole desktop remote pc says the main machine doesn't respond the connection attempts ( trying to remote from my tablet) and I need a solution for one drive here [00:01] fxh: seen https://stackoverflow.com/questions/16394518/nist-sphere-format-files ? [00:02] ozbrk: google what? [00:02] daftykins: that's how I found the download link [00:03] !pm [00:03] Please ask your questions in the channel so that other people can help you, benefit from your questions and answers, and ensure that you're not getting bad advice. [00:03] daftykins: when I install Windows, I'll make one partition. Once booted, I'll then proceed to `Disk Management` and shrink the entire partition to my likings? [00:03] fxh: ah ok so it's that one you're trying, nevermind then [00:03] Jahm: sounds good - and shutdown with "shutdown -s -t 1" before disabling fast boot in the BIOS if there is an entry of that type. [00:04] how to send a menti [00:04] mention to someone here [00:05] you just type the nick and hit tab [00:05] daftykins: oh well this is new. Ok Google Remote desktop it allows you to remote your pc from your ttablet-phone or anything you want [00:06] daftykins: I'll be following this guide http://www.everydaylinuxuser.com/2015/11/how-to-install-ubuntu-linux-alongside.html [00:06] ozbrk: that likely won't exist on ubuntu then, try something else === step21 is now known as step21_ [00:07] daftykins: well I tried team wiever anyway this is not my issue ubuntu is not my primary it is my secondary os for having some fun I missed my good old linux days since ı'am a photographer linux has no use for me indeed :( [00:08] not much point remoting into it from a tablet then indeed ;) [00:08] yeaah [00:09] still it is fun :D , [00:09] i've seen teamviewer work fine. [00:10] Why didn't I have this problem on 32-bit ubuntu [00:10] maybe you're lacking a 32-bit library [00:10] it used to work with wine I don't know still it is [00:10] /boot, /, /home, /swap --- primary, primary, logical, logical? (Sounds good?) [00:10] teamviewer or the google one? [00:10] wine is never the answer [00:11] teamwiever [00:11] no it works natively [00:11] purplehorror: why /boot ? [00:11] it runs a wine emulator firs :/ [00:11] first* [00:11] then runs the client well maybe [00:11] i doubt the ubuntu packages for teamviewer do [00:12] k1l, why not? (I have 2 HDDs, 1 w10, and 1 for linux) [00:12] well [00:12] dunne just telling what I saw 3 years ago [00:12] k1l, i'm a newbie to the linux community :-D [00:12] maybe new versions runs natively [00:13] purplehorror: a /boot is just causing issues to most users because it runs full of kernels. so if you dont know why exactly you need that (like lvm, luks etc) then i suggest you dont add that layer of problems. [00:13] ozbrk: yeah we can only go forward, not back ;) [00:13] k1l, oh I want to use luks! [00:13] purplehorror: then dont make /boot too small [00:14] k1l, so I guess I have to make /boot unencrypted, right? [00:14] k1l, 512 sounds abour right? [00:14] daftykins: like I said I'm new but I used to use ubuntu and other distros I was something like a distroer ( a guy who tries linux distros constantly) [00:15] purplehorror: 512 sounds better than the 200mb most people have and have problems with that [00:15] purplehorror: /boot/ can be encrypted; GRUB can unlock LUKS/dm-crypt file-system [00:15] TJ-, someone suggested I leave /boot unencrypted [00:16] purplehorror: all it needs is "GRUB_ENABLE_CRYPTODISK=y" in /etc/default/grub [00:16] daftykins: my favoruites are ummmmm 1)Ubuntu 1a)Xubuntu 1b)Kubuntu 1c)Elementary 1d) Mint 2)Arch 2a)Manjaro 3)Fedora [00:16] ozbrk: support here only really, chat in #ubuntu-offtopic. [00:17] daftykins: ok [00:17] purplehorror: /boot/ contains the kernel and initial ramdisk images; if you're protecting against a possible physical interference, having them encrypted too is a great improvement [00:17] TJ-, is there a point in encrypring it though? [00:17] TJ-, good to know! [00:17] purplehorror: otherwise it's trivial to add a root-kit or other snooping tools to those if the attacker has physical access [00:17] When I install ubuntu I have to manualy select the UEFI file every time when reboot, is there a fix? [00:17] It's the only os on the ssd [00:17] HP [00:19] TJ-, I'm experimenting really but it's nice to know a couple more things beforehand - thanks for mentioning [00:19] purplehorror: also, instead of using multiple partitions for different file-systems, use LVM (Logical Volume Management) [00:20] purplehorror: with LVM you can trivially resize block devices and file-systems as needed === diane is now known as Guest50985 [00:20] purplehorror: you can also add additional space to an existing volume-group, using another physical device, if needed [00:20] TJ-, LVM (/boot, /, /home, /swap) [00:22] TJ-, I suppose I can find similar information in the wiki, right? (I'd like to read more about how things work) [00:22] purplehorror: I generally partition so I've got (GPT) BIOS-boot partition (for legacy/bios boot GRUB core.img), EFI-System Partition (for UEFI boots), 512MiB for /boot/ (encrypted), and the remaininder in one partition for LVM, which then has the Logical Volumes (LVs) I desire: / /home/ /var/ etc.) and I leave 15% of space unallocation to begin with, to allow those LVs to be extended at will [00:23] purplehorror: if you want to be able to hibernate, a swap partition that is at least 1.25 x size of RAM would be required in addition [00:24] TJ-, I have 4gb and usually allocated 4, because I wouldn't have many apps running. [00:25] purplehorror: with 8GiB RAM I reserve 8.3GiB for hibernation [00:25] TJ-, with LVM can you reduce the size of some volume and add it to another? or is it locked [00:26] purplehorror: as long as the file-system inside the LV has unallocated space, and can be shrunk first, then the LV can be shrunk to. I prefer to do the opposite. I allocate a minimal amount to each file system and extend them as needed. It only requires 2 commands and can be done online: "lvextend -L +4G VG/LV; resize2fs /dev/VG/LV" [00:27] purplehorror: that's an example using ext3 or ext4 file-systems; other file-system may require additional work [00:27] TJ-, ah that's good to know - makes things easier [00:28] purplehorror: the total space belongs to the Volume Group as 'extents' (each usually about 4MiB). Extents are then allocated to Logical Volumes (LVs) [00:28] TJ-, I was thinking of btrfs but I've heard it's unstable. (And I guess it won't serve me much anyway - as a simple user) [00:28] purplehorror: you'd be taking on complexity you probably don't need [00:28] true [00:28] purplehorror: we've had a few btrfs bugs recently with compression [00:30] purplehorror: plus, you can always play with btrfs in a spare LV that doesn't contain vital data [00:30] LVs are block device containers just like raw disks; they still need a file-system inside [00:31] TJ-, really appreciate the replies. Thank you. (going for the install in a couple minutes) [00:32] TJ-, do you know if kerberos is a technology currently widespread (sorry for my ignorance)? [00:32] Hey guys [00:33] anabain: widely used with Windows/AD [00:33] hi guys [00:33] Would I be correct to say that lubuntu and Ubuntu are the same cake with different frosting on? [00:33] anabain: used in enterprises quite extensively for *nix too in places [00:34] i have a problem about to install printer (canon lbp 6020b ubuntu 14.04) [00:34] can u help me about that [00:34] TJ-, and what are the alternatives? [00:34] I have a borked machine and I'm trying to use lubuntu to rescue the files off it [00:34] http://random0musings.blogspot.com.tr/2014/06/ubuntu-1404-and-canon-lbp6020b-laser.html i did everthing in this page [00:34] lenswipe: nice analogy :) [00:34] can u help me ? [00:35] I want o mount a remote samba share to copy. The files to from the command line. However, I can't figure out how to mount a samba share such that it's accessible from the command line [00:35] TJ- thanks [00:35] is there any one =? [00:35] help me ? [00:36] lenswipe: sudo mount -t cifs //IP/share /mount/point -o username=blah,password=blah,iocharset=utf8,uid=1000,gid=1000 [00:36] draftykinstried tried that, I grit a message sayings that it can't find /home/Robert in stab [00:36] !samba | lenswipe this might help [00:36] lenswipe this might help: Samba is the way to cooperate with Windows environments. Links with more info: https://wiki.ubuntu.com/MountWindowsSharesPermanently and https://help.ubuntu.com/lts/serverguide/samba.html [00:36] Fstab* [00:36] TJ- not really, it's a bit general [00:37] heyyyy [00:37] _? [00:37] lenswipe: show what you're actually typing, likely you'r trying to do something wrong [00:38] draftykins, sudo mount -t cifs user=user, password=password //c03 /homes/Robert [00:38] That gives me the mount help page [00:38] anybody hear me ? [00:39] draftykins even [00:39] I hate this iPad [00:39] Nikola_Tesla: i can see lots of spammy messages that are annoying me, with no sign of a support question. [00:39] lenswipe: no that's wrong, -o user=username,password=password... [00:40] lenswipe: you can't put spaces in the options and must prefix the options with -o [00:40] !pm | Nikola_Tesla [00:40] Nikola_Tesla: Please ask your questions in the channel so that other people can help you, benefit from your questions and answers, and ensure that you're not getting bad advice. [00:40] Oh. [00:41] i have a printer install problem. http://random0musings.blogspot.com.tr/2014/06/ubuntu-1404-and-canon-lbp6020b-laser.html i did everthing in this page [00:42] but it is not working [00:42] not printing [00:43] Thanks daftykins, now I can image this drive! [00:43] Thank you [00:43] np [00:44] daftykins dou know someting about install lbp6020 canon ? [00:44] no i don't really do printers. [00:46] i'd bet "sudo service ccpd status" is a good starting point however [00:47] Does Ubuntu offer relro, fortify, pic/pie? [00:47] http://packages.ubuntu.com <-- knock yourself out [00:51] <[Mew2]> how do i get all incoming connections on a port, forwarded to another port? [00:51] <[Mew2]> on the same machine [00:54] . [00:55] daftykins, I know right, but I have to meet deadline tomorrow. Thank you for helping tho :). [01:27] hello [01:28] Does a default installation of ubuntu 15.04 support mixing audio from different applications? [01:29] xdaimon: as in can more than one thing play at once? yes [01:30] does ubuntu use alsa + pulseaudio combination by default? [01:31] yep [01:31] ok === RaptorJesus is now known as Majesticles [02:09] Hey there guys, I just did a "sudo reboot" on my server and now it seems to not accept any SSH connections at all [02:09] Anyone have any clue why this might be happening? === rbanffy_ is now known as rbanffy [02:14] LaserAllan: How long have you waited? Connection refused or Connection timed out? [02:15] lost1nfound: Half an hour [02:15] I can give you a pastebin of what it says or a screen shot [02:15] I can give you a pastebin of what it says or a screen [02:15] Network Error Connection Refused is all I get [02:15] I have tried to ping the local IP which seems to respond [02:16] LaserAllan: ah ok. so thats an indication that the system is running but sshd failed to start or didnt start. do you have access to the machines console? [02:16] lost1nfound: I do have access to the machines console but I don't have a spare screen right now becuase I mvoed today [02:16] So this kinda cought me offguard really [02:16] I will have to talk toa enighbour tomorrow and see if they have a spare screen laying around [02:17] I just did a regular "sudo reboot" It has never failed before [02:18] also just try waiting longer. its possible its doing an fsck file system check on a large filesystem? which good take a bit. or something could have failed during boot, in which case we'd want to see the console [02:18] True [02:19] you could also give it a couple of hours, and if you still cant connect, hard-reboot the system and see if it comes back up correctly. ideally though, youd want to have a look at the console before just rebooting it, since you dont know what its doing [02:19] Someting must have failed since I can do a "ctrl alt delete" and it will restart the machine [02:19] ah ok, so you already tried that. but it doesnt come back up with ssh working? [02:20] I used to have that issue before where I would start it and it wouldnät give me the sshd login prompt, and if i then did a ctrl delete it would restart and work properly but ok ill do that [02:20] Nope [02:20] also is it possible the ip changed, and sshd was listening only on a specific ip? since you just moved... [02:20] It's just really confusing I havent touched it for like 6 months [02:20] Its been running fine [02:20] and now this happens [02:20] yeah i think you need a just need a console screen :) [02:20] no the ip is stll the same according to the router [02:20] I can ping the ip which is 192.168.1.82 but i cannot access apache in the webbrowser for example === debsan_ is now known as debsan [02:21] I am just worried my whole system is going away including the data on my drives, but hopefully this has oting to do with that and in worst case it will be the system drive who gets wiped [02:22] But okay, I'll try to chill for now and see if any of my enighbours has any spare screen, hopefully they do so i can get sort this mess out [02:22] and i hopefully won't end up with all my data lost in the process. [02:23] i deleted my partion with linux on it [02:23] hello? [02:24] unfiswift, ask your ubuntu questions [02:24] i deleted my partion with linux on it [02:25] bc i didnt want it anymore [02:25] unfiswift, ubuntu related how [02:25] it had ubuntu [02:25] and im stuck in grub [02:26] do you have any other OS on that computer unfiswift ? [02:26] unfiswift, so you want to use the windows tools to fixmbr [02:26] windows [02:26] what tools? [02:26] unfiswift, use windows tools. ask ##windows [02:26] ok [02:26] ##windows unfiswift [02:35] ok, an update to my server problem, I went down into the basement and I saw that one of the cables fo the one of the external drives had fallen out of place [02:36] No wonder it got so mad since the script that autommounts the drives every boot probably wasn't happy that it couldn't find the drive [02:36] Lesson learned, do try to avoid using external drives in linux [02:36] :P [02:36] How to change the mysql data directory from C:\Program Data to\\remote-server\. Will that work or is it better to just install mysql on that remote box [02:41] anyone good at hacking? [02:41] ash66, wrong channel ask elsewhere [02:42] !hacking | ash66 [02:42] ash66: A hacker is a person who delights in having an intimate understanding of the internal workings of a system, computers and computer networks in particular, as defined by Request for Comments (RFC) 1392 - i.e. a good programmer -- crackers on the other hand break systems, see also !piracy [02:51] Not since wargames, ubottu :-) [02:52] The media took control of those labels and hasn't quite let go yet unfortunately... [02:55] Hello hello...am I connected? [02:55] !test | davidh [02:55] davidh: Testing... Testing... 1. 2.. 3... ( by the way, remember that you can use /join #test ) [02:56] !test [02:56] Testing... Testing... 1. 2.. 3... ( by the way, remember that you can use /join #test ) [03:03] #test is +i and can't be joined [03:10] !test =~ s/ ( .*// [03:10] Malformed regex [03:10] !test =~ s/ \( .*// [03:10] I'll remember that rww === davidh_ is now known as aquaphile === aquaphile is now known as Silurian [03:22] Hi, I've installed ubuntu 15.10 on my lenovo y70 laptop (dual boot with windows 10) but have been seeing severe instability with both Ubuntu and Windows. I'm not sure how to figure out what is going wrong. Can I get some tips on figuring out the issue(s)? I've seen lots of scrolling errors when I boot sometimes. I'm not sure how to actually read them etc... [03:24] I seem to be in the middle of the infamous unity-control-center package dependency issue while trying to install ubuntu-desktop after I found I lost desktop for some reason I don't know: http://paste.ubuntu.com/14407685/ [03:24] <[Mew2]> how do i bind znc to port 80 without giving it root? [03:24] I tried approaches searched from google, but none of them really worked. [03:25] [Mew2]: which port will you use internally? [03:25] <[Mew2]> 80 [03:25] i mean internally, something above 1024 [03:25] <[Mew2]> i dont know what that meeans [03:25] <[Mew2]> currently its on a high port [03:25] which port? [03:26] <[Mew2]> 6000 [03:26] sudo iptables -A PREROUTING -t nat -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 6000 [03:26] <[Mew2]> what does this do? [03:27] redirects connections on port 80 to whatever is running on port 6000 on the server [03:27] <[Mew2]> thank you so much [03:27] oh cool [03:27] no problem [03:27] so you don't have to use domain.tld:6000 [03:27] <[Mew2]> can you please also give me the command to undo this in case i need to in the futture please? [03:27] set font sze in hexchat === Majesticles is now known as RaPtoRjEsUS === davidh is now known as Silurian [03:28] [Mew2]: use -D instead of -A i think [03:28] gas: check with the guys in #hexchat [03:29] <[Mew2]> EriC^^ thanks <3333 [03:29] <[Mew2]> Sebastien [03:29] [Mew2]: np [03:29] Could someone help me with the package dependency issue? [03:29] http://paste.ubuntu.com/14407685/ [03:30] mengbiping: perhaps a "sudo apt-get clean" and a "sudo dpkg --configure -a" [03:31] nicomachus, that didn't help [03:32] or if there is any approaches to try to get back desktop instead of installing the ubuntu-desktop [03:32] mengbiping: what's your ubuntu version? [03:33] 14.04 [03:33] Ubuntu 14.04.3 LTS [03:34] mengbiping: what happened to your desktop? [03:35] it's filled with a purple color. Nothing else on it. === arlen_ is now known as Guest45476 [03:35] I type cmd via ssh [03:36] mengbiping: ok, can you possibly paste the log located at /var/log/apt/term.log? [03:37] anyone to guide to help me learn basics on linux via a book and some advice? [03:37] !manual | c31r2g [03:37] c31r2g: The Ubuntu Manual will help you become familiar with everyday tasks such as surfing the web, listening to music and scanning documents. With an emphasis on easy to follow instructions, it is suitable for all levels of experience. http://ubuntu-manual.org/ [03:38] somsip, thank you very much for your guidance [03:39] nicomachus, it's over 1800 lines, any suggestions to paste it? [03:39] !paste | mengbiping [03:39] mengbiping: For posting multi-line texts into the channel, please use http://paste.ubuntu.com | To post !screenshots use http://imgur.com/ !pastebinit to paste directly from command line | Make sure you give us the URL for your paste - see also the channel topic. [03:40] mengbiping: sudo apt-get install pastebinit , and then "cat /var/log/apt/term.log" [03:40] * pastebinit /var/log/apt/term.log [03:40] ^ yes, that. mengbiping [03:41] I forgot my pipe. [03:41] http://paste.ubuntu.com/14407802/ [03:42] I have frequent boot failures. I was able to successfully boot tonight. Are any of these errors/failures from dmesg particularly alarming? http://pastebin.com/VMckZUjF [03:43] mengbiping: did you remove "libgl1-mesa-glx"? [03:43] jhouse: they'd all be of the current boot, you can check older boots in /var/log/dmesg.0 [03:44] I didn't do that on purpose, probably it's after I lost desktop and typed auto remove [03:44] and upgrade [03:44] mengbiping: ok, go ahead and reinstall that. apt threw quite a few errors when that was removed. [03:45] EriC^^: that file doesn't exist [03:45] /var/log/messages ? [03:45] The following packages have unmet dependencies: libgl1-mesa-glx : Depends: libglapi-mesa (= 10.1.3-0ubuntu0.5) Recommends: libgl1-mesa-dri (>= 7.2) [03:45] it didn't complete successully [03:46] mengbiping: yep, just found that one in here as well. eek. [03:47] Lots of "vivid" packages in here as well... hmm... [03:47] jhouse: the i/o error on /dev/sdb doesn't look too good [03:48] i never tried to remove some package on purpose, but why it's happening. :( [03:48] hello === Sebastien- is now known as Sebastien [03:51] mengbiping: so how did desktop get removed? [03:51] i get back from supper, it just does not show up [03:52] that doesn't just happen... [03:52] i reboot it, it gives me purple screen [03:54] Hi, if i have AMD A4-4000 APU with AMD Radeon HD 7480D , how to install it driver for ubuntu [03:54] for video [03:55] after supper, i click my keyboard and my mouse but it didn't wake up, so I have to reboot. [03:55] sudo apt-get install fglrx ? [03:56] EriC^^: foobar: /var/log/syslog.1 and /var/log/kern.log.1 look like candidates [03:56] i use it for developing and some gpu computing. it happens sometime ubuntu runs out of ram and stuck there. But often reboot can get it back [03:56] but not this time [03:56] mengbiping: have you done a memtest to make sure the RAM isn't failing? [03:57] i think ram is ok [03:57] mengbiping, "I think ..." dude. DO THE TEST! [03:58] give me a cmd [03:58] i can try it [03:59] mengbiping: https://askubuntu.com/questions/591488/how-do-i-run-memtest86/591502 [04:00] btw i use chrome a lot with a lot of tabs open. I think it's the reason why OOM happens (chrome leaks a lot) [04:01] running the test now [04:01] mengbiping, well then ... don't chrome or don't multi-tab? [04:01] dude, it's work [04:02] EriC^^: foobarrr: /var/log/syslog.1 from previous boot: http://pastebin.com/Tmcep5TJ [04:02] hi, i am getting six error messages when i boot up. I can either cancel it or report problem. But whatever i do it always comes up when i start the computer. [04:04] nicomachus, while ram testing is running, could you help me understand why it complains the error that unity-control-center have unmet dependencies while libcheese7 has already been installed with a version higher that required? [04:04] well my main concern is that you seem to have a lot of Vivid packages installed on a Trusty system. which is never a good idea. [04:06] why cannot we just reinstall them? [04:06] because you shouldn't have vivid packages (from 15.04) on a Trusty OS (14.04) [04:06] but I could be wrong about those packages. [04:07] mixing releases like that *will* cause things to break [04:07] cfhowlett: did you see his apt log? I'd like a second opinion on them. [04:07] it seems to be a result of following some guideline searched from google [04:08] nicomachus, pastebin is blocked in China. [04:08] cfhowlett: even ubuntu paste? http://pastebin.ubuntu.com/14407802/ [04:08] reading now nicomachus [04:09] mengbiping, nicomachus let's confirm: cat /etc/apt/sources.list | nc termbin.com 9999 [04:10] it's doing ram test now [04:10] mengbiping, later than [04:10] *then* [04:12] mengbiping, also: #ubuntu-cn for assistance in putanghua [04:12] never mind :) [04:12] http://termbin.com/qp4s [04:12] well, no vivid sources... [04:13] it does not even should google chrome source I believe I have [04:13] s/should/show [04:13] that is likely in sources.list.d/ [04:14] http://termbin.com/y4tr [04:15] any clues? [04:15] you are not mixing trusty/vivid -- just wanted confirmation [04:16] Hello [04:16] mengbiping, how much ram do you have? [04:16] DivineAmnesia, greetings. ask ubuntu questions [04:16] 6G [04:17] I would like to have a nice IRC channel where i can communicate with fellow hacktivists [04:17] !coc > DivineAmnesia [04:17] DivineAmnesia, please see my private message [04:17] DivineAmnesia, this is ubuntu support --- hacking it is not [04:17] DivineAmnesia: you won't find that on Freenode. [04:17] The previous one i used ran out of funding... [04:18] !ot | DivineAmnesia [04:18] DivineAmnesia: #ubuntu is the Ubuntu support channel, for all Ubuntu-related support questions. Please use #ubuntu-offtopic for other topics (though our !guidelines apply there too). Thanks! [04:18] guess i have to reinstall it? [04:18] ok excuse me [04:18] let me read ur msg [04:18] Ok [04:19] I shall agree to it :) [04:19] Thank you [04:19] So how are everyone here? [04:20] DivineAmnesia, again: support channel. socializing chit chat is elsewhere. if you have ubuntu specific questions, ask [04:20] Oh ok then please give me a lekke channel? [04:21] DivineAmnesia: no. [04:21] !alis | DivineAmnesia search for yourself with this [04:21] DivineAmnesia search for yourself with this: alis is a services bot that can help you find channels. Read "/msg alis help list" . For more help or questions relating to alis, please join #freenode. Example usage: /msg alis list #ubuntu or /msg alis list http [04:28] mengbiping: if it's possible to back up your important stuff and reinstall the OS, then that would probably be the easiest way to fix everything that is broken in one fell swoop. [04:34] it's not a problem for backup my data(/home is on another disk), the only trouble is that i have to reinstall a lot of packages. [04:35] nicomachus, i now managed to install ubuntu-desktop [04:35] but still purple screen [04:35] what else do you suggest to install [04:42] mengbiping: so make a list of the packages you have installed, then install them later [04:43] how come from my main user account i don't have permission to edit files in www/? [04:44] Sebastien: because normally users don't have permission to edit files outside of their home directory [04:44] Sebastien: because it's not in your home directory [04:44] how do i fix this then ? [04:45] i would like this user to be able to also use ftp to upload files [04:45] into /www/ [04:45] you could - 1) put your web stuff into your home directory somewhere and make that the documentroot for the website...... or 2) add the user to the www-data group [04:46] <[Mew2]> why cant winscp just login with sudo tho? [04:46] hmm [04:46] ^ [04:46] good Q [04:47] <[Mew2]> i dont know if im phrasing that question correctly [04:47] Ben64 tgm4883: http://i.imgur.com/D2SGvQi.png this is the error i keep having when trying to upload those html files.. [04:48] Sebastien: you should not use ftp [04:48] <[Mew2]> sftp*? [04:48] its the only option available. [04:48] look at the screenshot i posted [04:49] its never the only option. [04:49] it is with this program [04:49] so use another program [04:49] no [04:49] why would i want to do this [04:50] nothing wrong with ftp [04:50] there is plenty wrong with ftp [04:50] ok [04:50] maybe for the NASA === bob is now known as Guest21330 [04:50] it's ancient, it's not secure, it's horrible [04:50] i host stats, nothing else [04:50] what irc clients do you guys recommend? [04:50] mirc, weechat [04:51] all right [04:51] mirc? i dont think this is packaged for ubuntu [04:51] <[Mew2]> so to confirm, winscp cant login with sudo? [04:51] wine can run it [04:51] Sebastien: use sftp instead, it's secure (runs over ssh), and all you need is an ssh server [04:51] just not the COM events and Sockets [04:51] irssi? [04:51] Ben64, the thing is, you didn't look at my screenshot [04:51] i can't use sftp with it [04:51] ihm: better topic for #ubuntu-offtopic [04:51] i paid for it [04:51] Sebastien: so use a different program [04:51] i cant [04:51] wow [04:51] irrsi is good for command line [04:52] you really can. it is not hard to upload a file with a different program [04:52] <[Mew2]> Sebastien Ben64 is an ass who passively has trolled me for the last month [04:52] <[Mew2]> just a warning [04:52] uuh yes probably you can run some proprietary windows irc client through wine, but why not use some native client instead? [04:52] [Mew2]: not true [04:54] ihm: i'd look into irssi (if you don't mind it running on a temrinal), hexchat, weechat, chatzilla [04:56] oh quassel, too [04:57] hey guys, a volunteer was helping me chmod my install because of a upgrade failure but I had to leave for work [04:57] is there anyone who can help me pick it back up where we left off? [04:59] <[Mew2]> <[Mew2]> so to confirm, winscp cant login with sudo? [04:59] [Mew2]: you can log on with any user with ssh access [05:00] <[Mew2]> i completely understand what that means [05:01] ok great [05:04] who here can help me? [05:05] hi [05:05] Guest7367: you'll need to explain whats going on completely [05:05] <[Mew2]> if you do it partially Ben64 will give a passive agressive remark [05:05] [Mew2]: i don't know what your problem is with me, but please keep it out of the support channel [05:07] <[Mew2]> my problem is your unhelpfull comments every time i ask for help [05:07] [Mew2]: what is your real question here - stop the personal comments [05:07] alright enough you two [05:08] <[Mew2]> im just trying to find out who to make winscp execute the file transfers with sudo access [05:08] <[Mew2]> who=how* [05:08] sudo on the server side? [05:08] <[Mew2]> um [05:08] [Mew2]: what does winscp run on? [05:08] <[Mew2]> windows [05:08] or on the client side? [05:08] [Mew2]: so that's nothing to do with ubuntu. Did you want to use sudo after you were connected? [05:08] <[Mew2]> the user sinscp logs in with doesnt have permissions on some files [05:08] <[Mew2]> winscp* [05:09] [Mew2]: are you trying to upload files to the /www directory? [05:09] [Mew2]: what user is it connecting with? [05:09] so server. you don't. either enable root and copy using that account (not supported) or copy as a normal user and them move them using sudo over ssh or something [05:09] <[Mew2]> user ubuntu [05:09] [Mew2]: so you need to either change the user being used by winscp, or give ubuntu the correct permissions [05:09] <[Mew2]> i want winscp to use sudo so i dont have to chmod a file/flder every time i need to modify it [05:09] [Mew2]: winscp does not *use* sudo in any way. It logs in as the user you tell it to. That user may have sudo access [05:10] Sebastien: your cute new cloak notwithstanding, you've been quieted from this channel for a few days. Please /join #ubuntu-ops and get that resolved instead of evading, thanks [05:11] <[Mew2]> hmm [05:11] [Mew2]: which is where you were with Ben64 12 minutes ago. [05:11] nicomachus, i finally find back my desktop, without reinstalling ubuntu. :) thank you very much. [05:12] <[Mew2]> thanks for giving me the time lapse there [05:12] <[Mew2]> i still have not resolved my issue tho [05:12] [Mew2]: drop the sarcasm or go straight in the ignore list. You have not solved the issue because you are not addressing it. You're just restating the problem, and getting the same information [05:13] <[Mew2]> what is it that you want me to do exactly to get help [05:13] <[Mew2]> i have phrased my issue 2 different ways [05:13] [Mew2]: either enable root and copy using that account (not supported) or copy as a normal user and them move them using sudo over ssh or something [05:13] <[Mew2]> and i think you realize that im a noob [05:13] [Mew2]: you need to use an account that has permissions to the directory you want to write to. Which means you need to give the correct permissions to the directory you want to write to. [05:13] [Mew2]: 12:09 < somsip> [Mew2]: so you need to either change the user being used by winscp, or give ubuntu the correct permissions [05:14] [Mew2]: the consensus is pretty clear [05:14] <[Mew2]> so go into sshd_config and give user ubuntu root permission? [05:14] Ben64: I attempted to upgrade from 14.04 to the next newest version. Now the furthest I can get in boot is to Grub2 [05:14] [Mew2]: neither of those things are the two things i just suggested [05:15] hi .. anyone got a sec to point me in the right direction for adding dns to a tinc vpn [05:15] [Mew2]: What is the final destination folder you are trying to write to? [05:15] hi [05:15] <[Mew2]> i want to be able to ftp in winscp in any folder without having to chmod files [05:15] <[Mew2]> not just a single fodler [05:15] <[Mew2]> folder* [05:16] [Mew2]: then either enable root and copy using that account (not supported) or copy as a normal user and them move them using sudo over ssh or something [05:16] <[Mew2]> so what im tryign to do is not possible rww? [05:16] Ben64: At first it wouldn't allow me past login, now I can't even get that far. When I try to boot from Grub I get stck on a blank purple screen [05:16] [Mew2]: what are you trying to copy over? Why do you need to copy to a bunch of folders not in your home directory? [05:16] [Mew2]: if you don't enable root and copy using that account (not supported) or copy as a normal user and then move using sudo over ssh, then no. [05:17] [Mew2]: sanity check - do you mean FTP or SSH? [05:17] <[Mew2]> i have to constantly go in different folders because i prefer to configure over winscp notepad rather than nano [05:17] [Mew2]: put all you crap in your home directory [05:17] <[Mew2]> i dont want to make these directory changes [05:17] !behlpful | Abe_ (he's clearly learning - dont complicate it) [05:17] hmm [05:17] <[Mew2]> and i dont want to transfer over ssh [05:18] !behelpful | Abe_ (he's clearly learning - dont complicate it) [05:18] Abe_ (he's clearly learning - dont complicate it): As our !guidelines say, "When helping, be helpful". If you're not familiar with the issue at hand, let someone else handle it instead of making !offtopic comments or jokes. [05:18] <[Mew2]> i just want to ftp [05:18] <[Mew2]> its never been so difficult [05:18] tincd ... anyone? === dreamon_ is now known as dreamon [05:18] somsip: I was actually serious [05:18] [Mew2]: well there is a lot of security in place to prevent you from doing exactly what you want to do [05:18] Abe_: you maybe don't have the backstory as you only joined a couple of minutes ago - more complicated than what you see [05:19] <[Mew2]> this is a freshly installed instance [05:19] oh ok sorry i keep out of it [05:19] Abe_: np - I appreciate the willingness to help :) [05:19] sftp ... with a rsa key? [05:19] <[Mew2]> i dont try to piss off half the room which apparently i have done [05:20] <[Mew2]> just asking a question [05:20] Hello! [05:20] [Mew2]: what you want to do can't be done without disabling security that nobody in this room is going to help you do [05:20] <[Mew2]> why not? [05:20] [Mew2]: because we don't support bad security practices [05:21] <[Mew2]> ok [05:21] [Mew2]: *that* attitude will annoy people, not asking questions [05:21] <[Mew2]> but i have always been able to ftp freely [05:21] <[Mew2]> on other servers [05:21] <[Mew2]> without these issues [05:21] That's nice. Is there anything else we can help you with today? [05:21] [Mew2]: then someone broke the security model on those systems [05:22] [Mew2]: if ftp is set up loosely (insecurely) you may have been able to. You say this is a new instance of server so it's been setup differently [05:22] <[Mew2]> so what i am experiencing now, this is the norm, rather then my previous ability to ftp freely? [05:22] [Mew2]: yes - ftp restricts access [05:23] <[Mew2]> i guess this is where my frustration was, my previous ftp experiences (for the last 5 years) have never been through this and so assumed that was the norm [05:24] Hey .. .so ... anyone know anything about tinc-vpn? [05:24] <[Mew2]> i just want to express that coming here as a newb it is not easy to get help [05:24] <[Mew2]> but i do thank you for the help i have recieved [05:24] <[Mew2]> i appriciate it greatly [05:25] <[Mew2]> i know you guys dont get paid to do this [05:25] <[Mew2]> but you also dont have to be rude about it [05:26] Hey guys, I need a little help with terminology.i am running 14.10 (while latest on the website is .04) - what is it that I am running? what do you call that [05:27] people help me actually very good here in my opinion [05:27] much* [05:28] ededed: you're running a non-LTS version. 14.04 is the latest LTS version (long term support). The latest version if 15.10 [05:28] aha [05:28] thanks! [05:29] is it something i control as a config in my pc? or is this based on an ISO i got [05:29] ededed: well it's based on the version you installed. You can upgrade to new versions [05:30] thanks. I wonder why i did this? then i messed with my apt-sources so this is all whacky. [05:30] well* f [05:30] and i did this like months ago so i dont remember :) [05:31] Hi. I had install STEAM on ubuntu, where this folder is located?? [05:32] FOUND it [05:32] thanks === noteness- is now known as noteness [05:42] after installing foo2zjs printer driver on Ubuntu 14.04, printer doesn't print. It looks like it recognizes the printer. the output for lsb_release -a; uname -a; apt-cache policy hplip is [05:43] No LSB modules are available. [05:43] Distributor ID: Ubuntu [05:43] Description: Ubuntu 14.04.3 LTS [05:43] Release: 14.04 [05:43] Codename: trusty [05:43] Linux raffi-X550EA 3.16.0-50-generic #66~14.04.1-Ubuntu SMP Thu Sep 10 17:05:00 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux [05:44] I'm trying to get hp laserjet 1020 installed. The hplip package has not worked at all after installing and uninstalling multiple versions of that package. === Guest62646 is now known as IdleOne [05:46] qassem, that printer may require that the additional plugin be installed from Hp via the HPLIP interface did you try to do that? [05:48] hi [05:48] how would i do that? [05:49] are you alive? [05:49] the directions here - if i read them correctly- don't say anything about installing something from the hplip interface https://mark911.wordpress.com/2014/10/31/how-to-install-printer-drivers-for-hp-laserjet-1020-in-ubuntu-14-04-lts-without-needing-access-to-openprinting-org-website/ [05:50] qassem, on the HPLIP look for a green colored button marked .. Install required plugin [05:50] I have a 1025 that will not function without that installed [05:51] when you say on the hplip do you mean here http://hplipopensource.com/hplip-web/install_wizard/index.html [05:52] i don't see any green colored button... [05:53] qassem, no I mean on the GUI for hplip that you should have installed [05:53] How do I use Bibledit-Xiphoz? [05:53] It shows a screen like this: http://imgur.com/HkXy2tb [05:55] so by following this procedure https://mark911.wordpress.com/2014/10/31/how-to-install-printer-drivers-for-hp-laserjet-1020-in-ubuntu-14-04-lts-without-needing-access-to-openprinting-org-website, hplip should be installed? [05:55] my understanding was that procedure removes hplip from the system [05:56] qassem, and that is not much help as far as I know [05:56] the GUI doesn't show an hplip application (there are hplip folders though [05:56] what is not much help? [05:56] qassem, why not just get hplip gui from synaptic [05:57] hplip has not worked at all with ubuntu 14.04 [05:57] Xchat gone after click mini [05:57] qassem, you are going about this the hard way [05:57] are saying i should just try the ubuntu software center and install it that way? [05:57] how to fix it ? [05:58] qassem, if the ubuntu version give you problem get the new one from HP from the link you posted [05:58] qassem, i would try the one from ubuntu first though [05:58] none of those hplip versions have worked with ubuntu 14.04. [05:58] I can open a new xchat window. But I can't open the old one. [05:59] qassem, i use them on 1404 [05:59] the new one from HP site that is [05:59] ok, would that mean that I should uninstall the foo2zjs drivers, or fine to leave them? [05:59] #sex [05:59] qassem, no idea sorry [06:00] ok, thanks! [06:00] anybody who know how to solve this problem? [06:00] im new in ubuntu can you help me? [06:01] How can i help you? [06:02] how can i emulate 2 desktops [06:02] what is your desktop? [06:03] i dont know [06:04] so you just flow the install and didn't install any other desktop? [06:05] i just install ubuntu [06:05] ____ __ [06:05] / __ \_ _____ ___ ___/ / [06:05] \____/|__,__/_//_/\__/\_,_/ [06:05] nothing else [06:05] ubuntu 15.10;14.04;12.04;15.04 . which one is your system? [06:06] hi, i'm trying to set up some rtirq rules to give my external audio card the highest priority, for low latency recording. [06:06] version? [06:06] yes [06:07] 15,10 [06:07] so anyway, i want to add the usb port to my rules, the one i'm using for my sound card [06:07] the same to my system. [06:07] but i don't know how to find out what port a device is on. How do i do this? [06:08] the instructions say to use ehci_hcd:usb2 if you're using port 2. but I don't know if my device is plugged into port 2, or 1, 3, or something else [06:09] fdisk -l to find where is your usb port. often it begin sdb. [06:10] ok, jack__, i will try now [06:11] jack__, fdisk -l didn't return anything. I thought fdisk was for listing hard drives? [06:12] you can try. [06:15] heyy [06:15] any one ther e [06:16] yes [06:16] hows all going there [06:16] ? [06:16] that isn't a question. [06:16] hah ya [06:17] any new updates on backbox u got ?/ [06:18] nope for me. [06:18] ok . [06:18] do you know how to open the old xchat after you mini tray it. === NightKhaos_ is now known as NightKhaos [06:19] clk on the tab at your right [06:19] thers a x mark [06:20] no, I didn't see anything. [06:21] the mini tray should b right there [06:21] ubuntu 15.10 doesn't show it. [06:22] ok .m using backbox 4.4 though [06:22] I didn't use it, so I can't see it? [06:22] hmm ya [06:23] thers shold b some other option u got there [06:23] I installed ubuntu as priMary OS on mine system [06:24] nice shady . [06:24] and is draining the battery like hell [06:24] yeah === avi is now known as Guest88743 [06:24] hah .no itshoulddbt [06:24] bye gtg [06:24] any advice on that [06:24] I don't know how to open it. [06:24] yes try using it by dual boot [06:25] if if dual boot it won't drain it [06:25] ya think so [06:26] I will try and see [06:26] ok ....dont blame me if it wont ork [06:26] work* [06:27] all the same...anyone heard about cfufreqd [06:27] nope . [06:27] how to install backbox. I want to try it. [06:28] download backbox.iso [06:28] boot into a bootabe usb [06:28] and google is there for ur help [06:29] ok [06:29] bye .i have to update me backbox [06:29] bye [06:38] i mtrying to install a program, but when i try "sudo pip install https://github.com/chrisspen/freekey/zipball/master" i get errors. i pasted them here: https://bpaste.net/show/20edf6814adf am i missing some packages? [06:44] ok so i ran tail -f /var/log/syslog and plugged in my sound card. the log said 'usb 1-2: New USB device found' does 'usb 1-2' mean port 2, or ehci_hcd:usb2? [06:45] (which is what i'm looking for) [06:48] My mic is not giving a clear and lound voice. Do I need to install any drivers or apps? [06:49] Hey guys. New to Ubuntu. Someone said that new releases were going to not be systemd anymore. [06:49] check if proprietary driver is needed from software updater [06:49] Is that true and if so what will they become? === google is now known as Guest14952 === Tronsha is now known as [UPA]Stefan [07:01] <[Mew2]> Guys I want to follow up on my question from earlier [07:02] <[Mew2]> Can I add a root user who would be able to ftp all files on the system without restrictions? [07:03] <[Mew2]> I think easier I asked from the perspective of my user being able to do it [07:03] <[Mew2]> Earlier* [07:04] [Mew2]: be carefull with ftp, its a security danger [07:05] lotuspsychje: save yourself some time - check the logs for what was discussed earlier - it's all been done already [07:05] My mic is not giving a clear and lound voice. Do I need to install any drivers or apps? [07:05] somsip: ok tnx for the headsup [07:05] np [07:05] !sound | beladona have you checked? [07:05] beladona have you checked?: If you're having problems with sound, click the Volume applet, then Sound Preferences, and check your Volume, Hardware, Input, and Output settings. If that fails, see https://help.ubuntu.com/community/Sound - https://help.ubuntu.com/community/SoundTroubleshooting - http://alsa.opensrc.org/DmixPlugin - For playing audio files, see !players and !mp3. [07:06] <[Mew2]> Wel after I am done ftp'ing I can just delete the user right? [07:08] [Mew2]: ive already pointed you to the #pfoftpd channel yesterday, please stop spamming questions into the ubuntu channel [07:08] #proftpd [07:09] <[Mew2]> Im asking about adding a user [07:09] <[Mew2]> Stop trolling me bro [07:09] [Mew2]: and here you go with the attitude again. *This* is why I'm not helping you, and I suspect it goes for others too. For goodness sake learn. [07:14] <[Mew2]> somsip why do you feel that you need to announce multiple times that you are not helping me? additionally why do you go out of your way to ensure that other users dont help me either? your very behaviour suggests the definition of a troll [07:14] !ops | [Mew2] trolling the volunteers over and over [07:14] [Mew2] trolling the volunteers over and over: Help! Channel emergency! (ONLY use this trigger in emergencies) - Pici, Myrtti, jrib, Amaranth, tonyyarusso, Nalioth, lamont, CarlK, elky, mneptok, PriceChild, Tm_T, jpds, ikonia, Flannel, genii, wgrant, stdin, h00k, IdleOne, nhandler, Jordan_U, popey, Corey, ocean, cprofitt, djones, Madpilot, gnomefreak, lhavelund, k1l, rww, phunyguy, bazhang [07:15] <[Mew2]> ? [07:17] <[Mew2]> so [07:17] <[Mew2]> how do i add a root user [07:18] <[Mew2]> sudo adduser ...something? [07:18] <[Mew2]> what defines the priveldges in that command [07:19] [Mew2]: use sudo when needed to copy a file to a protected area [07:20] <[Mew2]> thanks Ben64 [07:20] <[Mew2]> but how do i add a user tho [07:20] sudo adduser [07:20] <[Mew2]> and how do i define the priveldges for that user? [07:20] what are you trying to accomplish [07:20] <[Mew2]> to learn how to add a user [07:21] and i just told you [07:21] <[Mew2]> and how do i define the priveldges for that user?" [07:21] what are you trying to accomplish [07:21] <[Mew2]> to learn how to add a user === llldino is now known as Guest52893 [07:35] How can I find out which packages depend on isc-dhcp-client? [07:38] lotuspsychje: the quality of sound is not so clear [07:38] what could be the issue? [07:38] I mean my mic [07:38] Beladona: wich ubuntu version is this? [07:38] lotuspsychje: lts [07:39] lotuspsychje: 14.04 kubuntu lts [07:39] Beladona: did your mic play clear in any other Os before? [07:39] lotuspsychje: yes === Tawmu_ is now known as Tawmu [07:39] Beladona: ok maybe you should investigate syslog and dmesg about sound errors? [07:40] lotuspsychje: ok, any drivers or packages like kubuntu-restircted-extras? [07:40] Beladona: your sound should work by default without other installs [07:40] hm [07:41] Beladona: what kind of graphics card do you have? [07:41] dont know. how to check [07:41] its a laptop [07:41] Beladona: sudo lshw -C video [07:42] Beladona: we need the chipset and the driver= [07:42] product: Haswell-ULT Integrated Graphics Controller vendor: Intel Corporation [07:43] lotuspsychje: sound of mic depends on video card? [07:43] Beladona: in some cases it can be related yes [07:43] Beladona: ok i would investigate your logs first for sound errors [07:43] which logs? [07:44] Beladona: if nothing found try a 15.10 liveusb and test your mic from a livesession [07:44] Beladona: just told you, scroll up please [07:44] i mtrying to install a program, but when i try "sudo pip install https://github.com/chrisspen/freekey/zipball/master" i get errors. i pasted them here: https://bpaste.net/show/20edf6814adf am i missing some packages? [07:44] lotuspsychje: ok. let me read things. I will come back. thanks! [07:45] azizLIGHT: ask the maintainer of this package, seems not an official ubuntu package [07:46] ah crap its like 4 years old === ignasi is now known as darent [07:47] HI! In ubuntu 15.04 ,there is no irqbalance unit with systemd.Does ubuntu give up irqbalance ? [07:47] I tried to purge many packages, many failed because they have packages depend on them. Now when I run dpkg --get-selection, they are all marked as purge. Is this a problem? How to restore the status to install? [07:48] ns5: lets start from the beginning, did you add ppa's of any kind? [07:48] lotuspsychje: no ppa added [07:48] Hi [07:48] i have exec /usr/bin/node /usr/local/atlasboard/BKSV/start.js >> /var/log/node.log 2>&1 in my upstart conf [07:49] i need a yourprogram.pid for monit, what is it in my case ? [07:49] ns5: could you add pastebin of the purge trying? [07:49] is it /usr/bin/node ? [07:50] lost1nfound: http://paste.debian.net/359813/ [07:50] donnib: rephrase [07:51] ns5: no i dont mean dpkg command, but the errors showing when try to purge [07:52] lotuspsychje: oh ok, then http://paste.debian.net/359814/ [07:52] lotuspsychje: this is just an example, there are many errors, but all similar [07:52] iAmerikan: i made an upstart file to launch my node.js app [07:53] ns5: wich ubuntu versions is this? [07:53] iAmerikan: now i want to use monit to monitor my node.js if it crashes and i see monit asks for yourprogram.pid which i am asking what that is ? [07:53] lotuspsychje: Ubuntu 14.04.2 LTS === Flutterb1t is now known as Flutterbat [07:53] ns5: updated to latest 14.04.3 please [07:54] the pid. I don't think that's ubuntu related. 'monit' should have documentation somewhere [07:54] lotuspsychje: after upgrading to .3, will all the 'purge' status be gone? [07:54] pid = process id [07:54] donnib: process id of your running program. look for it with ps aux [07:54] ns5: try [07:54] lotuspsychje: ok [07:54] iAmerikan: i was following this guide http://howtonode.org/deploying-node-upstart-monit [07:57] donnib: yes it's the pid of the node process [07:57] akik: but what is the pid ? I mean i can find it with PS but that would change [07:58] HI! In ubuntu 15.04 ,there is no irqbalance unit with systemd.Does ubuntu give up irqbalance ? [07:58] !info irqbalance | sam_yan [07:58] sam_yan: irqbalance (source: irqbalance): Daemon to balance interrupts for SMP systems. In component main, is standard. Version 1.0.6-3ubuntu3 (wily), package size 28 kB, installed size 83 kB [07:58] donnib: the pid wont change randomly when the app is running [07:59] donnib: you should write the pid into a file after it has started [07:59] iAmerikan: yes exactly my point so why would monit ask to mintor a pid which will change, does not make sense, i must misunderstand something [07:59] donnib: look into /var/run [08:00] In vivid.there is no irqbalance. [08:00] !info irqbalance vivid | sam_yan yes there is [08:00] sam_yan yes there is: irqbalance (source: irqbalance): Daemon to balance interrupts for SMP systems. In component main, is standard. Version 1.0.6-3ubuntu1.1 (vivid), package size 28 kB, installed size 117 kB [08:00] akik: to look for ? i don't see my program there [08:00] it wont change. [08:01] donnib: after your node process has started, write its pid number into a file under /var/run [08:01] akik: ok so if i do that then after it crashes first time and it's restarted the process will have a new id so i have to change the file everytime ? [08:02] also check out any of the modern tutorials that aren't 6 years old. [08:02] donnib: you should of course automate the process of creating that file [08:02] searching 'deploy node app' brought up multiple options for me [08:02] or 'how to deploy node app' [08:03] iAmerikan: well i have deployed it, it's just about the monitoring part [08:03] I can not see any configure files about irqbalance except .conf .but with systemd ,irqbalance is running [08:04] so I want to know who start the irqbalance [08:04] I saw multiple with crash resistance [08:04] otherwise what specific monitoring are you looking for === fish is now known as Guest97729 === auronandace2 is now known as auronandace [08:11] I'm using Ubuntu 14.04, and it seems to be intermittently resolving my hostnames. Made sure that network-manager is set up using the correct NameServer using the nmcli command. [08:11] anyone know of any gpl or other available (even commercially) scripts or code that run on ubuntu or any other linux distro, that are intended to perform various SEO tasks, like crawling, tracking, posting, link building, managing (fixing or deleting) links, etc? as most of the commercial ones only work on pc and/or mac, and i know linux folks usually code their own, i'm interested in finding some sample for linux that i can learn in [08:11] order to make my own. [08:13] donnib: reading the page you linked, the pid file is created in the upstart config file [08:13] donnib: "echo $$ > /var/run/yourprogram.pid" [08:15] Ha [08:17] donnib: not sure if $$ is actually the pid of node, according to the comment by Nguyen Duc Phuong [08:19] 呃 [08:20] can't I connect to server? I hear nobody..... [08:21] I guess you just did [08:22] <[Mew2]> !ops for the record lotuspsychje: save yourself some time - check the logs for what was discussed earlier - it's all been done already [08:22] [Mew2]: I am only a bot, please don't think I'm intelligent :) [08:22] Ha,But I have saw what you said.. [08:22] <[Mew2]> !ops for the record [Mew2]: and here you go with the attitude again. *This* is why I'm not helping you, and I suspect it goes for others too. For goodness sake learn. [08:22] [Mew2]: I am only a bot, please don't think I'm intelligent :) [08:22] Привет)) [08:22] <[Mew2]> !ops not only announcing that hes not helping me but getting others users to not help me as well [08:22] [Mew2]: I am only a bot, please don't think I'm intelligent :) [08:22] [Mew2]: Stop. [08:23] what happened? [08:23] <[Mew2]> sorry i just want to put that on record [08:24] russian girl soo aloone(( [08:25] putska: brat'ya po kiska [08:25] Terrible,I just see that many individuals get in and go out... [08:25] [Mew2]: I think the ops have a channel you can bring up your issues in [08:26] ahahahah, ohuennoo [08:26] Hi [08:27] I'm openning a ssh tunnel with : ssh -M -S /tmp/ssh_tunnel_%h.sock -o ExitOnForwardFailure=yes -f -N -L "$LOCAL_PORT:localhost:$DISTANT_PORT" "$HOST" === noteness- is now known as noteness [08:27] But I'd like to close all ssh tunnels, without knowing the host [08:27] but doing like lsof on the /tmp/ssh_tunnel... file return nothing [08:27] even when the ssh process is running [08:27] magnetik: they must open some sort of process no? [08:28] yep the ssh process [08:28] why not kill that [08:28] eh, that's the idea =) [08:28] r u from? [08:29] pkill, killall etc [08:30] magnetik: shows up on lsof when I do it [08:30] damn [08:31] эммм,эт ты мне? [08:31] 。。。。 [08:32] what is /usr/sbin/gshelld? I have this process running in my box [08:32] and dpkg -S /usr/sbin/gshelld shows nothing [08:33] ns5: googling it comes up with a bunch of chinese stuff, no idea man [08:34] Here lsof, even in sudo, returns nothing for this file, even when the ssh process is running [08:34] magnetik: what exactly are you typing for lsof [08:35] lsof /tmp/ssh_tunnel_myhost.sock [08:35] or sudo.. [08:35] look in htop? [08:36] <[Mew2]> hey guys, i am on ubuntu shell, trying to find out how i can manage users? and thier priveldges? [08:36] magnetik: well theres your problem, its not being accessed as a file so much, its a socket. i'm no lsof expert, so there might be an easier way, but this should work for you... "lsof | grep ssh_tunnel" [08:37] [Mew2]: that's linux specific? [08:37] When running lsof -p I see that it's has the file, but with a suffix that I don't see in the file name [08:37] <[Mew2]> ubuntu soecific [08:37] <[Mew2]> specific [08:38] Thanks for the input anyway [08:38] whats the suffix and why haven't you tried my suggestions [08:38] magnetik: well yeah, because its not a file [08:39] <[Mew2]> more specifically im trying to find out if i add a user how i can give him admin root priveldges, and revoke those priveledges if need be? [08:40] [Mew2]: add/remove the user from / to the sudo group [08:40] [Mew2], if HE is a root, he could just as easily delete you ... [08:40] [Mew2]: if you look at the groups your default system user is in you can add/remote him from the admin/sudo group [08:40] if you give someone sudo he can try to keep sudo [08:40] [Mew2]: https://help.ubuntu.com/lts/serverguide/user-management.html has some general info (and https://help.ubuntu.com/lts/serverguide/index.html is a generally reasonable starting place for a lot of common questions for servers) [08:41] maybe you can lock down the wheel group idk [08:41] <[Mew2]> cfhowlett im not actually giving it to anyone right now, just learning, ikonia interesting i didnt know that sudo was a group [08:41] <[Mew2]> Flannel thank you going to read up on that now [08:41] <[Mew2]> thank you everyone :) [08:42] [Mew2]: sudo is *also* a group (it used to be the 'admin' group, you may run into documentation that still refers to that). If a user is a member of said group, that user can use sudo to do elevated stuff. (With the default configs) [08:42] 25 [08:42] 33 [08:43] [Mew2]: the thing is that someone can install something bad to keep root if they have the chance [08:43] <[Mew2]> Flannel is it defined somewhere who is allowed to use sudo? or only users in the sudo group can use sudo? [08:43] the permission problem is a big problem .... [08:43] <[Mew2]> i know this sounds stupid im sorry lol [08:44] [Mew2]: doesn't sound stupid at all, you got it exactly right. only users in the sudo group can use sudo [08:44] [Mew2]: By default (sudo is a very flexible thing, you can configure it to do a lot of non-default things), only people in that group can sudo. [08:45] you can even create a new group to assign only specific commands [08:45] thus making your machine more secure and limiting root access to specific commands [08:45] <[Mew2]> wow interesting [08:45] <[Mew2]> ok i will read those docs now [08:45] <[Mew2]> thank you so much everyone <333 :) [08:45] <[Mew2]> this makes sense now [08:48] <[Mew2]> guys i also want to just thank everyone for dealign with my extreme noobishness over the past week, i know if probably frustrating working wiht me but i am learning quickly wiht your help :-d [08:48] [Mew2], no apologies needed. enjoy ubuntu. [08:50] Is there some available way to ignore the quit and enter message about IRC [08:50] !quietirc | yinflying [08:50] yinflying: To ignore joins/parts/quits in your favorite IRC client, see http://wiki.xkcd.com/irc/Hide_join_part_messages [08:50] <[Mew2]> thanks cfhowlett [08:50] yinflying: sure. look at your irc client [08:51] Xchat ,of course [08:51] yinflying, xchat is abandonware. replace it with hexchat [08:52] Really? OK ,I will change noew [08:52] now [08:52] hi, have someone made a allready look a like W8 works space with tiles in Ubuntu. it is for school use to give litle children easy acces to learning websites [08:53] redegelde: there are tiling window managers [08:53] !edubuntu | redegelde, [08:53] redegelde,: Edubuntu is an Ubuntu derivative aimed at schools and educational institutions. For more info, see http://www.edubuntu.org [08:53] and does edubuntu have the tiles [08:53] no [08:53] not by default [08:53] redegelde: it is designed for schools and can be customized as well. [08:54] okay ikonia is there an tutorial present for this solution [08:54] redegelde: you can look at things like i3 window manager [08:54] redegelde: that is a tiled window manager environment [08:54] okay cool, thank you === CrazyH_ is now known as CrazyH [08:55] yinflying, in HexChat you can hide join and part messages by going into Preferences -> General (under Chatting) -> Tick 'Hide join and part messages' under the Miscellaneous tab [08:55] Ben64, okay do doing lsof -U /tmp/controlsockfile works well :) [08:56] Haha, Acutully, What i have installed is hexchat , although I use commend "sudo apt-get install xchat" [08:57] got it , thank you [09:00] yinflying: sp its fixed? [09:07] well i wil look in to it dont want to make a mickeysoft clone but simply want to add tile on desktop for easy use children. any other ideas now system(s) running on ubuntu mate [09:07] its about wms and des [09:08] wm's and de's. edubuntu just has programs preinstalled [09:08] there are a number of options. === yf_flying is now known as yinflying [09:12] Good,I have changed into hexchat,wow, I have just found that there are so may IRC clients ,what a shame... [09:13] lol, not touchd IRC since...not even remeber. Anywo weechat is nice [09:14] @iAmerikan thank you, so i know allready [09:14] Ben64 : r u there [09:15] jay__: yes [09:16] i got another vulnerability regarding proftpd-basic [09:16] What mean "lol" ? what I realized is computer game which is similar to Dota.... [09:16] default proftpd version is 1.3.4a [09:16] i need to upgrade to proftpd 1.3.5a or 1.3.6 [09:16] ftp is general is a vulnerability [09:17] ok [09:17] Ben64 : so i should not do anything about it [09:18] i'd strongly recommend using sftp over ftp [09:19] ok Using sftp over ftp will cover the vulnerability in 1.3.4a without patching ? right [09:19] well sftp is not really related to ftp at all, doesn't use proftpd, uses ssh to transfer files [09:20] but, i guess the client iis using proftpd [09:20] i work in hosting environment [09:20] lol stands for "laughing out loud" @yinflying [09:20] jay__: ok, well what makes you think 1.3.4a has a vulnerability [09:21] wot [09:21] its not my thinking, its from nessus scan [09:21] jay__: which we told you before has a lot of false positives [09:21] yes i agree [09:22] i checked the openssl it was really false positive, but this is vulnerable [09:22] whatever it is "finding" has almost assuredly already been patched [09:22] Ben64 :http://www.tenable.com/plugins/index.php?view=single&id=84215 [09:23] Ben64 : http://bugs.proftpd.org/show_bug.cgi?id=4169 this is from proftpd site itself [09:23] bugs.proftpd.org bug 4169 in mod_copy "Unauthenticated copying of files via SITE CPFR/CPTO allowed by mod_copy" [Critical,Closed: fixed] [09:23] the solution is simple [09:23] "Upgrade to ProFTPD 1.3.5a / 1.3.6rc1 or later." [09:23] yes it was fixed in [09:23] proftpd 1.3.5a [09:24] ah, proftpd is a universe package [09:24] Hey ppl [09:24] HEY [09:25] what was the offtopic ubuntu channel? [09:25] !ot | Extreme [09:25] Extreme: #ubuntu is the Ubuntu support channel, for all Ubuntu-related support questions. Please use #ubuntu-offtopic for other topics (though our !guidelines apply there too). Thanks! [09:25] thaaankks ;) cya [09:25] hmm i will check in ubuntu security [09:26] jay__: you could use sftp, since it's way way better, tell your clients to use that, you could install vsftpd, since it's in main and receives patches, or you could find a ppa for proftpd for precise with the appropriate version, or you could compile your own. the last two options are unsupported [09:27] hmm ok , ppa and compilation are unsupported got it [09:28] bad luck , it was patched in ubuntu 15 http://people.canonical.com/~ubuntu-security/cve/2015/CVE-2015-3306.html [09:28] The mod_copy module in ProFTPD 1.3.5 allows remote attackers to read and write to arbitrary files via the site cpfr and site cpto commands. (http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2015-3306) [09:29] jay__: why is that bad luck [09:29] thank you ubottu [09:29] Ben64 : bcause i cant use ubuntu 15 repos in ubuntu 12 [09:30] Ben64 : bad luck for ubuntu 12 users [09:30] that's what happens when you're running a nearly 4 year old release [09:31] HI, Anyone know how to resolve this problem with Steam and Dota 2 [09:31] when i try to lunch game, it says Missing executable :S [09:31] Hey guys. [09:32] I'm live on my new Unity install. Absolutely loving it. [09:32] serfgh, Is it missing some sort of .so file? I recall having to make a sym link to another directory to resolve that but I can't remember exactly how [09:33] llldino , maybe the problem is bescouse of 32-bit ubuntu version [09:33] :D [09:33] Just to install ubuntu 64-bit .. [09:34] can you see my text [09:34] jay__: yep [09:34] Ben 64 : ohh yes yes you are right, i guess i should inform to client [09:34] serfgh, If you do a google search and include the game and the exact binary thats missing you might come up with something, wish I could help more [09:35] !manual | HEXCHATTER, welcome. [09:35] HEXCHATTER, welcome.: The Ubuntu Manual will help you become familiar with everyday tasks such as surfing the web, listening to music and scanning documents. With an emphasis on easy to follow instructions, it is suitable for all levels of experience. http://ubuntu-manual.org/ [09:38] why in ubuntu15.04 the initctl is also efficacious under systemd? [09:38] who is ubottu ? Is it an artificial intelligence? [09:39] !ubottu [09:39] Hi! I'm #ubuntu's favorite infobot, you can search my brain yourself at http://ubottu.com/factoids.cgi | Usage info: http://ubottu.com/devel/wiki/Plugins | Bot channels and general info: https://wiki.ubuntu.com/IRC/Bots | Make a clone of me: /msg ubottu botclone [09:39] Is there a simple way to type special characters like on Mac OS, where alt+diacritic-modifier+letter results in said letter with the diacritic? Example: alt+u+a becomes ä. [09:39] !ubottu [09:39] I've never been a fan of remembering character codes [09:39] Xano, you can edit your keyboard codes [09:40] cfhowlett, Sure, just wondering about out-of-the-box solutions. I can hardly believe I'm the only one who dislikes character codes :) [09:41] llldino: i will install ubuntu 64 i think it can fix this [09:41] :D [09:41] serfgh, It may, it may not, what is the exact error it throws? [09:43] Xano: does "Shift + AltGr then U then A" work? [09:44] * mcphail is reading from https://help.ubuntu.com/community/ComposeKey [09:45] llldino: http://i67.tinypic.com/w162ag.png [09:45] :D [09:45] mcphail, Yup, got that! It'll take some time getting used to the specific key setup, but it's essentially similar to what I was used to under Mac OS. Thanks :) [09:45] Xano: excellent! Good to know [09:47] Oh, this has been around for a while, I see. Interesting :) [09:51] That manual is 150 pages. [09:51] Would be better if I could purchase it from Amazon. [09:51] serfgh, Hmm, it doesn't specify if it needs 64 / 32 bit [09:52] serfgh, According to this post: https://steamcommunity.com/app/570/discussions/0/523897277912736099/ It looks like you need a 64 bit build [09:56] it seems so, i need ubnutu 64 [09:56] ubuntu* [10:00] It is said that ubuntu 16.04a have been released. And the developer said that there would be some big changes... [10:01] Yee [10:01] Geez 16 is going to be LTS? It felt like yesterday 14 just came out q: [10:01] yinflying: join #ubuntu+1 for 16.04 discussion [10:02] yinflying: There's an announcement at https://lists.ubuntu.com/archives/ubuntu-devel-announce/2016-January/001163.html The best place to ask about it will be #ubuntu+1 though, the people there are the ones testing it [10:03] I should be [10:03] It should be LTS [10:04] Hi, anyone able to give me some hints on that one: http://askubuntu.com/questions/703081/merge-mst-stream-monitor-into-one-virtual [10:04] but 14.04 have also about two-year support... [10:04] moin [10:04] yinflying: 14.04 has 5 years of support, ending in April 2019 [10:05] we're having a fun issue on a cluster of 12.04.1 machines where they all report " [10:05] It's an odd one that can be "fixed" with hitting CTRL-ALT-F1 -- [10:05] er [10:05] * Stopping System V runlevel compatibility [OK] [10:06] the machines are all running normally, with services up & performing as expected, but for the guy that drove out to the DC in the middle of the night that was a bit of an unexpected "feature" [10:06] Is that a known issue? [10:08] xmj: haven't heard anyone else report it on here, although you might want to ask in #ubuntu-server (and include information about what changed on your cluster before the current issue) [10:09] hah, the latter will be more or less impossible to figure out ;-) [10:10] i'll try. thought asking because the web is full of bug reports regarding some x server startup not quite working [10:11] xmj: unlikely anyone is still running 12.04 here, as the #ubuntu channel tends to be desktop-orientated and 12.04 has been EOL'd on the desktop for a while now. I think #ubuntu-server would be your best bet, as someone there might know [10:11] hey everyone, new to ubuntu. I'm having trouble accessing a directory. Tried /home/myusername etc and just get no dir found [10:12] ah derp [10:12] mcphail: tyvm! [10:12] xmj: good luck [10:12] any ideas where I'm going wrong? I am trying to access a folder in my home dir (alongside Documents). tried cd /home/myusername/directory name but nada. tried just /home/myusername still nada [10:13] * xmj waves [10:16] mcphail: 12.04 desktop is still ok, it still gets maintenance updates until 2017 as long as the HWE has been installed [10:17] If it hasn't then it would have been August 2014 [10:17] yinflying: sorry not sure what happened there [10:18] DJones: aah - didn't realise that. The LTS ubottu factoid mentions desktop support for 12.04 in the past tense === lucy is now known as Guest95237 [10:40] VMware workstation 11 , virtual network device error during compilation on 15.10 ,, found this , UnAnswered http://askubuntu.com/questions/690645/vmware-workstation-11-virtual-ethernet-kernel-update-fails-on-ubuntu-15-10 [10:43] valtrip: You'll need to obtain a copy of vmware which supports the current kernel, I'm afraid. These are the perils of closed-source commercial products [10:50] yay, got temp sudo on dreamhost... :-\ [10:50] hello all, is there a way to forward any connections i get on port 2222 to port 22? [10:51] !ports | uubz [10:51] uubz: For instructions on how to set up port-forwarding (for games, torrents, webservers) see http://portforward.com - also see !firewall [10:55] <[Mew2]> sudo iptables -A PREROUTING -t nat -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 6000 <-- is this the correct command to forward all traffic from port 80 to 6000? [10:57] [Mew2] so that would forward anything connecting to port 22 to port 2222 ? [10:58] <[Mew2]> I'm not sure, I'm asking? [10:59] * uupz hrugs [10:59] * uupz shrugs === ^cj^ is now known as ^CJ^ [11:01] mcphail ,, thnx , one more , which is better on willy virtualbox or xen [11:04] valtrip: it all depends on your hardware, guest OS, usage and philosophy. Try virtualbox, xen and kvm and see if they fit your needs [11:05] virtualbox is easier to use for beginners [11:10] Yes. I've tended to use kvm, but I tried virtualbox a couple of months ago and it was very slick, clever and pretty [11:13] valtrip: another option, if you only need a "containerised server" rather than "full guest desktop" would be LXD on 15.10. It seems to be very fast and capable, although the documentation was somewhat lacking when I was experimenting === dupingping__ is now known as dupingping [11:17] mcphail: does ubuntu now ship with both lxc and lxd ? [11:17] akik: 15.10 does. Don't think older versions do [11:18] mcphil : i am thinking to go with virtual box. just need to run win for some exp.. hey i just installed willy and my terminal history is not getting saved,, once i reboot its gone [11:20] lxc and lxd returning not currently installed on 15.10 [11:20] How do you execute a command as www-data on ubuntu ? [11:20] All solution I found online doesn't work [11:20] "sudo su - www-data" gives "This account is currently not available.", and sudo -u www-data ask for the password of www-data [11:20] magnetik: what command [11:21] Any command ? [11:22] magnetik: but why [11:22] magnetik: what do you want to do? [11:23] iirc www-data doesnt have a login shell due to security reasons. so what you want to do might be not a good idea. [11:23] i'd like to execute a command as www-data. As it's a command executed by the webserver and it's having permission issues [11:24] magnetik: it would really help us help you if you would explain what you're trying to accomplish from this. It sounds like you're going down a path of reducing security and there is likely a better way to do what you're trying to achieve [11:24] sudo -u www-data should work [11:25] It's indeed working. Dunno what I did wrong before [11:27] magnetik: "sudo -u www-data" should ask for your password, not www-data's. That will then be cached for a while [11:28] Yep indeed; in fact I was executing a command that was calling sudo [11:28] That where I got confused [11:29] aah. Dangerous stuff if www-data is calling sudo [11:30] yep it was blocked but I was calling the wrong script [11:30] but this is a nasty part of the app that will be rewritten without having to call any script via www-data === m1dnight1 is now known as m1dnight_ [11:32] that sounds like a broken setup. [11:32] magnetik: if you need to change to www-data uid you could try "sudo su -s /bin/bash - www-data" [11:32] you dont want your webserver to get root permissions [11:58] hi there [11:58] i m running under ubuntu Ubuntu 14.04.1 LTS \n \l [11:59] so do I [11:59] Hello [11:59] but i always got a reporting of cron for this error : [11:59] /etc/cron.daily/apt: [11:59] FATAL -> Failed to fork. [12:00] so do you ? [12:02] I haven't met it so far [12:02] ertyup, time to upgrade to the latest version: sudo apt full-upgrade will get you to 14.04.3 [12:03] but i can't wait until you grow up [12:03] ciaoooo [12:05] ertyup: ? [12:10] I formatted a flash drive as FAT32 GPT, but Windows 8 says it must format the drive before it can use it. What did I do wrong? [12:10] how to solve this issue ? [12:10] Good morning all. Downloading Xenial Xerus now for testing =) [12:10] ertyup, first upgrade to point release three [12:13] !xenial | knob [12:13] knob: Ubuntu 16.04 (Xenial Xerus) will be the 24th release of Ubuntu. Announcement at http://www.markshuttleworth.com/archives/1479 - Discussion in #ubuntu+1 [12:13] cfhowlett, nice nice! On my way! =) [12:19] hi [12:19] https://bugs.launchpad.net/ubuntu/+source/udev/+bug/993868 <--- does anyone have a workaround? [12:19] Launchpad bug 993868 in udev (Ubuntu) "udev creates dvb directory with wrong permissions" [Undecided,Confirmed] [12:19] i added my user to video, audio and a bunch of other groups, but kaffeine still cant see the device [12:20] unfortunately in the bugreport the workaround is not disclosed [12:21] hi, I try to shrink a part on gparted but it wont do anythin [12:22] can it be a hardware issue? [12:22] hi all [12:22] hello [12:22] i have installed ibus on my ubuntu system [12:23] where i get uck support? [12:23] i can see entry when i do im-config [12:23] pa look in the kaffeine help menu for support options [12:24] Billyzekid: did you press the green checkmark to make it do the tasks? do you get an error message? is this s alive system and the partitions are not mounted? [12:25] http://pastebin.com/3hds65rH [12:25] pa "the permissions and ownership of the /dev/dvb and /dev/dvb/adapter0 directories are wrong (root:root instead of root:video)." I think the script is all there.... [12:25] @k1l when I cannot use resize/move option [12:25] uck stop my network manager [12:26] and i won't finish remaster! [12:26] Billyzekid: look at what i wrote. you need a live system to resize systempartiions. [12:26] ioria, then i guess if ls says root video, in 14.04, the bug is fixed? [12:26] http://pastebin.com/xDGLi0gQ [12:27] pa and it's not ? [12:27] pa: running "sudo chown -R root:video /dev/dvb" may resolve group ownership issues, but is there some (possibly security) reason Ubuntu adds the devices as root:root? Maybe worth investigating that first. [12:27] /msg NickServ VERIFY REGISTER yinflying dgdvfpqnblei [12:27] yinflying: New password time [12:27] ioria, well, i added my second user to video and audio, but i still cant access those devs [12:27] yinflying: do such things in the server window. and hoose another passwort :) [12:28] pa and for the first user ... ? it's working ? [12:28] @k1l it is not a live system [12:28] Billyzekid: you cant resize the system partitions while running that system. so boot a ubuntu-cd/-dvd/-usb. then you can do that [12:28] I am registering... [12:29] yinflying: Yeah, but in trying to register, you put the command in the channel giving away your password [12:29] ioria, yes, but that user is also sudo, adm, and whatnot [12:30] pa and you second use cannot be part of those gropus ? [12:30] *r [12:30] i'd rather not make that user admin [12:30] pa i see [12:31] pa: has your second user logged out then back in after being added to the video group? [12:31] mcphail, yes i rebooted [12:31] ha,I just put a blank space before the /msg .....but I have registered successfully [12:33] Hiyas all [12:33] And then I will try the Ubuntu Pidgin for IRC.... [12:36] :-D [12:40] :-D [12:41] yinflying1: please stop that, and keep this channel for Ubuntu support. Thanks [12:42] Hey [12:42] anyone with trouble? [12:42] nothing,I am just trying Ubuntu Pidgin [12:42] uck help! [12:42] ? [12:42] yinflying1: do you like terminal programs? or prefer a GUI? === viola is now known as Guest80191 [12:58] hexchat is nice if you prefer gui in ubuntu for ircing [12:58] Apachez: i like irssi :p [12:59] whatever floats your boat ;) [13:03] thank you for today Ben64 ubottu [13:04] c ya. [13:09] How do I burn a DVD with multiboot capacities? Like putting several Ubuntus on a single DVD eventually a 8.5GB variety. Considering that at least one, but not all are in ISOs [13:10] and providing the possibility to do Live CD (DVD) for each) [13:13] can someone help out with installing grub to a usb [13:15] i'm attempting to do sudo grub-install --target=1386-pc --root-directory=/media/name/usbname/boot /dev/sdc ,whenst running this, it returns an error of 'unrecognize option --target=1386-pc', why is this? [13:18] hhhh === florin is now known as Guest66716 [13:18] florin [13:18] bananaman23: think the "--target=1386-pc" syntax isn't necessary, nor is "--root-directory=" [13:22] bananaman23: run it without target [13:24] sudo grub-install /dev/sdc should work [13:24] What do ppl use for "virtual conferences" at work. I also need screen share functionality. Skype is crap on linux though :(. [13:25] p4trix: google talk ? [13:28] BluesKaj, it's possible. But it doesnt work as nice as I would like to... === asdfa is now known as horacio [13:30] p4trix: search for skype static. it might exist somewhere ...it was best skype for linux before MS bought skype [13:30] I ll look for it [13:30] Hi [13:32] BluesKaj, Static binary support has been removed and won't come back, sorry. (source: http://community.skype.com/t5/Linux-archive/Static-binaries-for-Skype-4-1/td-p/1209918) [13:32] Thx guys [13:32] I have a question regarding an error. Today php7.0.5 got released and I ran apt-get upgrade. Unfortunately I am an idiot and didn't noticed it removed php7.0-fpm, cli and dev. If I want to install them again I get the following error "php7.0-cli : Depends: libssl1.0.2 (>= 1.0.2d) but it is not installable". There is no such package on ubuntu. Anybody has a clue? [13:32] p4trix: bummer, that's because MS doesn't want skype to work on linux [13:33] I assume... [13:34] p4trix: the skype deb microsoft shares is a 32-bit version. so just install the 32-bit libs and then you can install it. works on 14.04 and 15.10 === step21_ is now known as step21 [13:35] I do have it akik. But the screen sharing funktionalities doesnt work good enough to read anything. [13:36] And I need it for work. [13:36] p4trix: i think i remember experiencing that :) [13:36] Hahah :) [13:36] I'm going to try to force the others away from skype :D [13:36] but yea google hangouts screen sharing works fine [13:37] It works close to fine. I have 2 screens, and you cant share only 1 single screen :S [13:37] Only 2 screens or a window program. [14:01] hi [14:06] I have a dedicated server with 2x2TB drives. can someone explain the partitions? http://pastebin.com/raw/h42aAM8f [14:06] sda and sdb are the main drives? sda1, sda2, sda5 are the partitions of the first drive? [14:06] what is sr0? [14:06] how do I access the second drive? [14:07] bencc: sudo mount /dev/sdbX /mnt [14:07] EriC^^: that mounts the second drive as /mnt? [14:07] benbetter use a "sudo parted -l" or a "sudo lsblk" [14:07] what is sdbX ? [14:08] X being the number of the partition [14:08] so sdb2 for example [14:08] bencc: sr0 is your cdrom drive [14:08] is it possible to add entries to the user-dirs.dirs file? [14:09] so that they appear in the places section of nautilus [14:09] Hey, what's the process name for a terminal in Ubuntu? I'm trying to kill one terminal from another one like "pkill terminal".. Or at least get the pid of that terminal and then do "kill -9 id" [14:09] The way I read that, sdb isn't partitioned, so there's no sdbX [14:09] stns, I use xfce, so for me it's "xfce4-terminal" [14:10] I dunno what gnome or ldxe etc.. is though [14:10] llldino: I use the default terminal, the one that comes with ubuntu.. Any idea? [14:10] anyone knows the implication of turning off the "Unknown: Unknown" vs on ? [14:10] k1l_: http://pastebin.com/raw/f7fdDrtE [14:10] http://postimg.org/image/6wciykbmv/ [14:10] stns, Do "ps -e | grep *terminal" see what happens [14:11] bencc: so sdb is new? it doesnt have any paritions on it [14:11] bencc: you have 4 partitions under sda , and none on sdb [14:11] With a terminal open of course [14:11] llldino, nothing!! :( [14:11] k1l_: yes, probably [14:11] luesKaj: why it's 1,2,5,6? why not 1,2,3,4? [14:11] stns, Sorry, you can omit the wildcard, try "ps -e | grep terminal" [14:11] bencc: new hdds come without partitions. [14:12] bencc: because there is a extended partition. [14:12] bencc: type sudo gdisk /dev/sdb and make a new gpt partition [14:12] bencc: because sda3 and 4 have been removed [14:12] llldino, Ah, "gnome-terminal"! Thank you!! [14:12] stns, Figures huh q: [14:12] bencc: 1,2,3,4 are only for primary paritions. but since sdb2 is a extended one 5 and 6 are logical parititons inside sdb2 [14:12] is it ok that partition 1 is ext2 and partition 5 is ext4? [14:13] bencc: yes [14:13] bencc: its the /boot partition. that is ok. [14:13] partiton 5? [14:13] sda is whole drive , sda1,2 etc are partitions on sda [14:14] ok [14:14] can I setup software raid now or do I need to re-install? [14:15] !pm | sagdatk [14:15] sagdatk: Please ask your questions in the channel so that other people can help you, benefit from your questions and answers, and ensure that you're not getting bad advice. [14:16] hello [14:17] question...in trusty tahr with unity desktop I'm trying to de-emphasize the "alt" key on my keyboard. Is there a package that contains a program for changing the GNOME keyboard mapping so that "alt" doesn't map to so many different things? [14:17] what might be a reason of sudden high CPU load? [14:18] sagdatk: file indexer maybe [14:20] okay... [14:20] Hello all [14:21] sagdatk: run htop in the terminal to check your processes [14:22] htop will tell me what? I just don't like how "hot" the alt key is in GNOME it triggers too many events and I lose access to my function keys because alt turns them into media keys [14:22] my keyboard has a separate key for turning function keys into media keys but its not implemented in GNOME [14:23] Is there a mysql 5.6 backport to ubuntu 12.04 (precise)? [14:23] I am not sure that graphics driver installed correctly, I have dual graphics on laptop (intel hd and nvidia gt630m). The running driver is nouveau display driver and on NVidia website it is said that it is not recommended to use the proprietary driver. But I am pretty sure that system fails to switch between two video cards. [14:23] silma: my answer wasn't directed at you [14:23] sry im using a console mode client hard to filter the noise...ill prob switch to empathy see ya later all [14:23] silma: i don't know how gnome handles those keys but you can use xmodmap to change key mappings [14:24] xmodmap...thanx [14:24] hey all when I run: 'sudo postmap sasl_passwd' I keep getting [14:24] postmap: fatal: open sasl_passwd: No such file or directory [14:24] sagdatk: which nvidia gpu ? and make sure you have nvidia-prime installed, [14:24] does that mean sasl_passwd is missing? [14:26] sagdatk: the proprietary drivers available from the repos should work fine [14:26] BluesKaj, GT630M, I'll check the nvidia-prime now [14:30] sagdatk: install the nvidia-352 driver,...it's the recommended driver for your gpu === greyback__ is now known as greyback [14:33] hello everybody, does someone know why directories and files have the permission 775 (minus the x bit for files) excepting certain directories (not files) at 755 !? [14:34] inside the home directory [14:35] my umask is 002, it's weird [14:36] i don't know [14:41] pierre_: it's hard to tell with so little info but some apps override the umask when they run. Some users can have their own umask set on their login script etc, etc [14:43] bumblebee, nvidia-prime or nouveau-prime. which is better? [14:47] thank you, I don't have enough data. I remember of all defaults directories in the home set to 755 at the installation of ubuntu, and new files set to 775 (664 without the x bit) [14:47] Hello :) - Is http://www.xrdp.org/ a good choice in order to use RDP to access an Ubuntu Desktop? Other suggestions - VNC is not a good option for this use case. [14:48] hi [14:49] any body? [14:49] Jazz0301, ask your ubuntu questions [14:50] Hi, can anyone help me with megaraid storage manager for a lsi card? cant get it working === ^CJ^ is now known as ^cj^ [14:51] How to completely uninstall all unused dependency packages? I used "apt-get" but it did not delete all packages [14:51] Jazz0301, sudo apt-get autoremove [14:52] : I have bumblebee installed and the primusrun command works but not the optirun command, this will not help you I suppose. [14:52] I did,but not all packages are removed [14:53] then they are dependent on something else [14:53] in a NFSv3 filesharing scenario, what is the best way to avoid client hanging (using automounter) when the server is shutdown? [15:00] Hello. I work in the terminal a lot. The mouse cursor disappears when I start typing in a term. Comes back when I click. How do I disable that? [15:01] joan_: "Mount the NFS-share on the clients using the mount-options "bg,intr,hard"." from http://unix.stackexchange.com/questions/29196/automount-nfs-autofs-timeout-settings-for-unreliable-servers-how-to-avoid-han === step21 is now known as step21_ [15:08] efg [15:14] anyone use spotify on ubuntu? i can't seem to play local files, and can't figure out why. [15:15] Chris, I only stream music from it. Any errors? [15:15] 111 [15:19] Hey all. I have a newbie question. I use DigitalOcean for some of my side projects, but I am not savvy with Ubuntu. What would be the easiest way to back up files on the digital ocean, to another remote location? Any advice of tools or solutions, etc? [15:21] squeakytoy2: I could be wrong, but ssh'ing into the device and downloading it maybe? [15:22] i want it automatic though, some how [15:22] Ashtasu: streaming works great, even playing downloaded files from spotify, but it just doesnt like playing the mp3's that i have [15:22] im guessing it's some missing library, but i have all of the ones that online forums say to get [15:23] Chris, I'm gonna give it a shot myself, will let you know hwat happens. [15:23] what* [15:23] somsip, thanks [15:23] Ashtasu: cheers! [15:24] How well does ubuntu work with.. ehm.. [15:24] What was it again.. [15:24] ATI drivers [15:25] Skyrider, in my experience, good if you stick to what you can get from the driver manager. [15:25] Last time I tried linux (currently on windows again) [15:25] I had quite a few issues with the driver set, especially with kodi [15:26] eg, lag in video play. [15:26] You can get into a rough spot if you download the drivers from their website, in my experience. [15:26] squeakytoy2: use rsync, which will work over an SSH connection, or it using source-code maybe use a DVCS like git with some post-commit hook script that pushes to a remote location [15:27] I never d/led ati drivers I believe, used ubuntu's default. [15:28] TJ-, the DVCS sounds good [15:28] The open source drivers have been good in my experience, just not for gaming. [15:28] Chriss, give me a few minutes, Spotify isn't even launching. XD [15:28] I have to check which RADEON it is. [15:30] squeakytoy2: I use git with a "published" branch for maintaining web-sites for example; I work locally on 'master' and 'feature' branches, testing those directly locally on the dev server, and then push (locally) to the published branch when the changes are mature, then i push the 'published' branch to the public server for immediate deployment. [15:31] squeakytoy2: correction: "then push (locally)" should read "then merge feature/master into published branch locally" [15:31] TJ-, i want to do nightly backups of a file on the digital ocean [15:31] squeakytoy2: sounds like a job for rsync and a cron a job [15:32] squeakytoy2: assuming the file isn't something that is in-use, like a database, in which case use the database manager's own export functionality [15:33] TJ-, i wish there was an easy service i could download, like dropbox [15:33] but dropbox is overkill to setup on a digitalocean instance [15:33] chrisss123456: Yep, same thing for me. Do you have the latest gstreamer packages installed? If I play it with the default video player, it prompts me to install them. [15:33] squeakytoy2: a one-line crontab entry is hardly difficult :) [15:34] i will try crontab [15:34] squeakytoy2: see for example https://help.ubuntu.com/community/rsync [15:34] crontab + git add, git push, is what you recommend, right? [15:34] Anyone know if rsync supports owncloud? [15:35] ls [15:36] squeakytoy2: it depends on what you're doing. if you're using git then that would work [15:36] TJ-, crontab + sftp sounds easy too though, hmm! [15:36] Ashtasu: I do have all the gstreamer i think i need... i can play all the files from other players, be it system defaults or other music players. [15:37] How to solve no space left on device error? [15:37] chrisss123456: Do you have another file format you could try? [15:38] in a NFSv3 filesharing scenario, what is the best way to avoid client hanging (using automounter) when the server is shutdown? this response is not conlcusive enough: http://unix.stackexchange.com/questions/29196/automount-nfs-autofs-timeout-settings-for-unreliable-servers-how-to-avoid-han === amir_ is now known as Guest24724 [15:39] Ashtasu: I've tried mp3 and aac and something else i dont remember... i'm not sure what the problem could be [15:39] chrisss123456, Ashtasu do you have ubuntu-restricted-extras installed ? [15:39] Hello. How I can change keyboard layout in gnome shell from terminal? Like simulate change keyboard layout from indicator. [15:39] hello [15:39] ioria: what's the quickest way to check? [15:39] TJ-, thanks :) [15:40] I wonder if there is anything that can be done at the server side (running some script/command) just before shutting down that informs the client about the ending of the service, so they can unmount the share and avoid hanging [15:40] chrisss123456, dpkg -l ubuntu-restricted-extras [15:40] link0802: setxkbmap [15:40] suppose you need to install various servers, a web server, git server, email server and so on. how do you calculate what kind of hardware you need? e.g. the amount of ram that you need? [15:41] net2014: it depends on load [15:41] somsip so, load per server? [15:41] ioria: i do have it [15:41] :( [15:41] net2014: load in general. A website nobody visits will need less resources than an Alexa top-500 site. Etc... [15:41] They do actually support local files on linux, right? [15:43] somsip gitlab site, lists hardware requirements per load, so, e.g. 100 users require 2 gb of ram, but if I also need a web server and that requires 2 gb per 100 visitors, then it means that in total I need a 4 gb ram machine? [15:43] somsip: When I change with setxkbmap indicator in panel not change and sometimes it even broke and don't work after that+ gnome shell rewrite setxkbmap [15:44] hey guys, is there a mitaka release at cloud-archive? [15:44] chrisss123456, what version of ubuntu ? 14.04 ? [15:44] 15.04 [15:44] Any suggestions how to disable mouse cursor hiding when working in terminal? I there a non-obvious, hidden, gnome tweak or something? [15:44] ioria: ^ [15:45] !info ffmpeg vivid [15:45] ffmpeg (source: ffmpeg): Tools for transcoding, streaming and playing of multimedia files. In component universe, is optional. Version 7:2.5.9-0ubuntu0.15.04.1 (vivid), package size 1147 kB, installed size 1751 kB [15:45] net2014: the requirements may well come down in aggregrate, but you may need a more flexible approach than you're suggesting. And you're in the realms of systems architecture consultancy on this, and that's not supported here [15:45] chrisss123456, you can try to install ffmpeg .... [15:45] link0802: it's what I use. Sorry I have no other ideas [15:46] ioria: already have ffmpeg too... is it possible that there are conflicting codecs? [15:46] somsip ok, thanks [15:46] am I correct saying VIM is VI ? [15:46] chrisss123456, i'm reading this long thread .... https://community.spotify.com/t5/Help-Desktop-Linux-Windows-Web/Linux-Local-files-do-not-play-on-Ubuntu-14-04/td-p/758497/page/3 [15:46] like a new VI? [15:47] chrisss123456: ffmpeg is not a codec [15:48] BluesKaj: fair, but doesn't it install a bunch of codecs ? [15:48] designbybeck: its Vi IMproved. [15:49] but in modern distros k1l_ when people say vi, they are saying vim correct? because isn't it vim that is installed? or both? [15:49] most times vim is shipped. [15:50] chrisss123456: ffmpeg isa program for transcoding multimedia files [15:50] and most of the commands are the same...just improved in areas i'm guessing k1l_ ? thanks [15:50] BluesKaj: Doesn't it come with a bunch of codecs when you install it? [15:50] I'm using Terminator for my terminal atm, and when i open it, it opens on the top left of the screen. How can I make it center by default? [15:53] hi [15:53] chrisss123456: https://en.wikipedia.org/wiki/FFmpeg, you're partly correct , but there are no conficting codecs as such [15:55] BluesKaj: Awesome :) thanks. But then there's still no reason why spotify shouldn't play local files :P [15:55] hi to everyone [15:56] chrisss123456, you may read the last 3 posts : https://community.spotify.com/t5/Help-Desktop-Linux-Windows-Web/Linux-Local-files-do-not-play-on-Ubuntu-14-04/td-p/758497/page/9 [15:56] chrisss123456: spotify as a player of local files, never heard that before [15:57] BluesKaj: I just want one program to have all the songs, and also be able to listen to spotify. It theoretically can do that but i'm just running into errors. ioria thanks! will try it out [15:58] chrisss123456, you are already vivid so you don't need deb http://cz.archive.ubuntu.com/ubuntu vivid main [15:59] chrisss123456, but change libavutil51, with libavutil54 === [UPA]Stefan is now known as Tronsha [16:00] ioria: hhm... i already had libavutil54 and it doesnt find libavcodec53 or libavformat53 [16:00] thoughts? [16:01] !info libavutil54 vivid [16:01] libavutil54 (source: libav): Libav utility library. In component universe, is optional. Version 6:11.2-1 (vivid), package size 132 kB, installed size 476 kB [16:01] sorry === mk is now known as Guest70553 [16:02] !info libavcodec56 vivid [16:02] libavcodec56 (source: libav): Libav codec library. In component universe, is optional. Version 6:11.2-1 (vivid), package size 4648 kB, installed size 16133 kB [16:02] chrisss123456, libavcodec56 [16:03] installing [16:04] !info !info libavformat56 vivid [16:04] 'libavformat56' is not a valid distribution: kubuntu-backports, kubuntu-experimental, kubuntu-updates, partner, precise, precise-backports, precise-proposed, stable, testing, trusty, trusty-backports, trusty-proposed, unstable, utopic, utopic-backports, utopic-proposed, vivid, vivid-backports, vivid-proposed, wily, wily-backports, wily-proposed, xenial, xenial-backports, xenial-proposed [16:04] !info libavformat56 vivid [16:04] libavformat56 (source: libav): Libav file format library. In component universe, is optional. Version 6:11.2-1 (vivid), package size 1027 kB, installed size 3103 kB [16:04] chrisss123456, libavformat56 [16:04] already had that one [16:05] still doesn't work. just bugs out and quits the program [16:06] chrisss123456, did you install libvpx1 ? [16:06] ioria: i already had it [16:06] :/ [16:07] chrisss123456, sorry the, maybe a reboot [16:07] ioria: i'll try... if that doesnt work? [16:08] chrisss123456, you play your mp3 with your default player ? [16:09] chrisss123456, check this before dpkg -l libmp3lame0 [16:11] ioria: got that one [16:11] but it works with all other players [16:11] it's very strange [16:12] chrisss123456, if you read the link i posted you'll note how several people solved with ubuntu-extras... [16:12] ioria: ok, i'll try and see if i can work it out from that :) thanks for all the help [16:13] chrisss123456, no problem .... but vivid is going to die soon, remember it ! [16:13] ioria: hahah i thought it was lts! [16:13] chrisss123456, ho no, it's not .... 14.04 is [16:13] brb [16:14] ioria: ahhh well [16:19] Hi all [16:20] Hi all [16:21] hey [16:21] what's up? [16:30] Can someone help me with pulseaudio or JACK? I'm trying to get a VLC music stream and my mic stream into one stream that I can use for Skype/Teamspeak/etc. I've seen guides, but you might as well be showing me Wingdings. I need some step-by-step instruction. [16:31] I have space on a hard drive that is "unrecognized or unused". I most likely have never used it but the devils advocate in me wants to know if there is any way I can reassure myself that it was indeed likely to be unused. [16:32] Ubuntu2330, I tried using JACK one time, most confusing piece of software I've ever used in my life. From what I understand running pulse and JACK at the same time causes issues, I was able to get jack working somewhat by disabling pulse but that's a bad scene man [16:32] Supposedly there's a way to do what I want with just PulseAudio, but I don't understand the process. Something about sinks and loopbacks? [16:32] Ubuntu2330: that kind of thing is usually done using some kind of loopback that takes the output (sink) of the master mixer as an input (source) for the microphone [16:33] Yeah that's where I got lost. I ended up getting a hardware mixer to be able to do what you want to do [16:33] Yeah, I've been able to get a sink to take loopback, I think, but my problem is that I can't figure out how they turned it into a source/input [16:33] llldino ^any ideas? (let me know if you dont understand the question) [16:33] Ubuntu2330: I used to do that years ago with ALSA, and PA, but not done it in ages [16:34] and googling keeps giving me people saying "use JACK" [16:34] pizzaguy, What's reporting that it''s unused? [16:34] Is there a way to override `node` with a different binary, so in scripts that I run calls to `node` will use the custom binary? === step21_ is now known as step21 [16:34] assuming the binary is a known location [16:35] Ubuntu2330: have you seen http://askubuntu.com/questions/257992/how-can-i-use-pulseaudio-virtual-audio-streams-to-play-music-over-skype#258369 [16:35] TJ-: yeah, I followed that, except it doesn't give me anything that shows up as a source [16:35] pizzaguy: what tool reports "unrecognised or unused" ? [16:36] llldino TJ- : palimpsest [16:36] Either I'm doing it wrong, or I'm missing a step that a basic linux user would usually know [16:38] pizzaguy, I only trust fdisk or gparted myself, but palimpsest is probably correct [16:38] TJ-: Basically, I think I did what it wanted me to, but the result shows up as a playback device option, not a capture device option [16:38] pizzaguy: it depends on how large the 'unused' space is; it isn't unusual for there to be small gaps of up to say 4MiB between partitions [16:39] I found a plugin for Teamspeak that at least lets me play music, but it mutes my mic when the music plays, so that's not a solution [16:39] TJ- the unused space is half the 1TB drive. [16:40] i must have purposely partitioned with the intention of having two partitions [16:40] Ubuntu2330: well, that 'askubuntu' answer looks pretty much as I used to do it. [16:40] TJ-: Can you walk me through it and see if I'm screwing something up? [16:40] pizzaguy: what does "parted -l" report for that device ? [16:41] llldino: do those two tools come preinstalled in ubuntu? [16:43] TJ-: I mean, looping signals into a stream is pretty obvious-soudning, but I don't know what I'm missing that turns Virtual1 into a source instead of just a receptor/playback thing [16:43] Ubuntu2330: well, there's the 5 pactl commands to set-up the null devices and loopbacks, then using pavulcontrol to link the (running,active) music output application to the first Null device, and then setting up the Recording loopback from the Null Output to the headset/microphone input [16:43] pizzaguy, fdisk does, gparted might too, you can always just grab it using apt-get [16:43] I dont have internet access on this machine [16:44] pizzaguy, Yeah check what sudo parted -l reports [16:44] Ubuntu2330: it might help to use the 2nd answer's pactl commands since they show you how to add descriptions to the null devices so you can pick them apart in the combo boxes [16:44] TJ-: So wait, what is teh device I'm setting as recording the Null, and how do I set it? [16:45] Ubuntu2330: start an application playing your music source. Then, on the Playback tab, direct its output to the first Null device. [16:45] TJ-, llldino: the corresponding space -- sdb2 -- has no filesystem [16:45] Ubuntu2330: then, with Skype/whatever running and connected to inputs, configure the Loopback to use that first Null Output as its input (the loopback is to the active microphone channel) === RaPtoRjEsUS is now known as RaptorJesus [16:46] pizzaguy, Yeah, so it's free for you to use as you wish [16:46] pizzaguy: oh, so you've got a partition there, but haven't allocated it for use by anything (no LVM, no file-system, no swap, etc.) [16:46] TJ-: Yeah, understand all of those looping stuff [16:47] TJ-: The problem is, Teamspeak/Skype doesn't recognize Null as a capture device option [16:47] TJ-: So how do I set that up? [16:47] llldino, TJ-: fdisk reports fat16 [16:47] yes i do have a partition [16:47] and actually palimpsest reports fat16 too [16:47] TJ-: I know that my Null being #27 on this pactl list must be useful somehow [16:48] Ubuntu2330: nor should it; as that askubuntu article shows, the application input device is the microphone device [16:48] TJ-: Wait.. what? [16:49] i wanna tail the latest modified file in my current directory. is it possible to dynamically tail a file? [16:49] pizzaguy: fdisk is only telling you what the partition type code represents, it has no bearing on what is actually contained in that partition [16:51] I need some help with a funky ssh tunnel. bear with me while I write it out [16:51] TJ- I dont understand... [16:52] I have a database "database" which can only be accessed by a particular app server "appserver". I don't have direct ssh access to appserver, I have to go via an intermediate server "bastion" [16:52] How can I set up an ssh tunnel from here, such that I can mysql to localhost, and have it go VIA the bastion, to the app server and to the database [16:52] is that even possible? [16:53] dist-upgrade is stuck on ": Unable to find an initial ram disk that I know how to handle. [16:53] Will not try to make an initrd. [16:53] rory, login via other server ? [16:53] login not direct ? [16:53] TJ-: I'm clearly not understanding something. Isn't my goal to make VLC/Built-In Audio loop into Virtural1 and my mic loop into Virtual1, then set Virtual1 as the capture source? [16:54] Braybaut: I need to use local database utilities [16:54] rory, use Database as local ? from other server ? [16:55] Braybaut: Yeah I want to connect to localhost, but have it really go via an ssh tunnel through the bastion [16:55] Braybaut: But the local tools will think they're connecting to localhost [16:55] Found it never mind. Thanks rubber ducks. https://github.com/csbrown/blog/blob/master/archive/RDS_from_localhost.md [16:56] llldino: Do you understand why parted shows no filesystem but diskutility/fdisk say fat16 [16:56] OK no. But this is a big clue and I'm sure somewhere here can answer this one [16:57] In the example there, it uses the following command to tunnel to the database through a single intermediate [16:57] ssh -N -L [localPort]:[dbEndpoint]:[dbPort] [ec2User]@[ec2Domain] -i [keyFilePath] [16:57] How can I set up such a tunnel, in a situation where ec2Domain is only accessible behind a bastion? [16:58] rory, I think i'm way out of my league here, but can you ssh into bastidon, and then invoke a command as soon a s you connect to that server that biounces you over to where you want to go? === rifff is now known as riff [16:59] hello everyone, i have problem with installing viber app on ubuntu 15.10? anyone encounter same one? [16:59] rory: here's another option https://github.com/apenwarr/sshuttle [16:59] friendofkiwi: For PC or for phone? [16:59] @genii for PC [17:00] pizzaguy, Sorry i'm really not sure, If you don't know what's on it I wouldn't be too concerned though [17:00] friendofkiwi: did you install it first on your phone, as per the instructions? [17:00] ooo lunch === riff is now known as sir [17:01] @genii yes, i have it on my phone === sir is now known as Guest78843 [17:02] on previous version of ubuntu it was quite easy to install, but now, it seems to have somekind of problem === Guest78843 is now known as riff === riff is now known as horsy [17:05] Is there any application like connectify in ubuntu for making a wifi as hotspot? [17:08] hello [17:10] friendofkiwi: You have downloaded the package from http://download.cdn.viber.com/cdn/desktop/Linux/viber.deb and used: sudo dpkg -i viper.deb on it? [17:11] friendofkiwi: Please excuse lag, I am trying to eat and IRC simultaneaously here [17:12] @genii will try that option now :) happy meal [17:12] joyce__, this might be useful for you: https://help.ubuntu.com/stable/ubuntu-help/net-wireless-adhoc.html [17:13] yahn: thanks [17:13] Hey all, i killed my Ubuntu box. /boot /bin and /etc are gone. Is there a possibility to regain these files? If not, if I custom-reinstall the box is it possible to manually create a link to /home (there is the Data which will be used again)? [17:14] yahn: But the thing what I wanted when I referred conectify was that I want to make a wireless wifi connected to my system as hotspot [17:14] yahn: This works only with wired networks [17:15] And, yeah, part of /dev is gone too [17:15] joyce__, ah I see. So it creates a 'virtual' router [17:16] Ubuntu2330: I've just tested it on 15.10, with a single Null device which i called MUSAK, and 2 loopbacks, Playback set from Amorak to MUSAK, and Recording "Loopback to MUSAK" from "Built-in Audio ...". The application's Recording stream " " on "Monitor of MUSAK" contains both the microphone and muisic sources [17:17] sab_: The best option is probably to boot to a liveCD/DVD/USB, copy the files in the old /home directory off someplace safe, reinstall, then copy the files back === de-facto_ is now known as de-facto [17:17] yahn: Yea. === kpease_ is now known as kpease [17:17] TJ-: And can you still hear from Amorak somehow, yourself? [17:17] genii: yeah.. i kinda feared that option [17:17] joyce__, I've never tried this before but hostapd might help. http://askubuntu.com/questions/126545/i-would-like-to-make-a-virtual-router-on-ubuntu-12-04 [17:18] TJ-: I've gotten it able to send music and voice justa moment ago, but I can't hear anything now [17:18] Ubuntu2330: no; that'd have caused local feedback [17:19] Ubuntu2330: but in the askubuntu article, with the *two* Null devices in use, the 2nd one can be used to play the music source locally [17:20] Ubuntu2330: ensure in pavucontrol you have the "Show:" set to "All Streams" (located at the bottom of the window) [17:20] TJ-: Ok, I'm not understanding how to make taht happen. I'm using exactly what teh article has - two Nulls and three loops [17:26] Ubuntu2330: I've got it working here now; On Recording tab configure "Loopback to Built-in Audio.." set to "Monitor of MUSAK"; on Playback tab set "Loopback of Monitor MUSAK on" to "Built-in Audio..." [17:27] sab_: If you had a separate /home partition you would be able to reinstall and be fine, but if you don't then yeah, do what the others have suggested. [17:28] Ubuntu2330: on the Playback tab I now have *two* sources targeted at the MUSAK sink: The audio-player, and the "Loopback of Built-in Audio..." [17:29] TJ-: I don't have monitor of MUSAK on playback, it's all monitoring of my mic [17:29] TJ-: All 3 === j__ is now known as tp43_ [17:30] Ubuntu2330: on the Recording tab I have *two* sinks: "Loopback to Built-in Audio..." set to "Monitor of MUSAK", and " from" set to "Monitor of MUSAK" [17:31] Ubuntu2330: the Playback monitor won't appear *until* you're configured the Recording loopback [17:31] TJ-: On Recording I have Loopback to Null Output (3 times) [17:31] TJ-: And on Playback I have 3 monitors of my mic === marshal0605 is now known as marshal0505 [17:31] so.. something obviously isn't working [17:32] Ubuntu2330: If I were you I'd start again; looks like you've loaded the null module too many times [17:32] TJ-: I only did the 5 commands listed on the page :[ [17:33] TJ-: OK wait, now I have 2 monitors fo Mic,a nd one monitor of Null [17:34] TJ-: I see, I think.. ko... but it won't let em monitor Null #1 [17:35] TJ-: Yeah, it's refusing to let me monitor the Null for VLC [17:35] guyss [17:36] i got into a little problem [17:37] i wanted to start dual booting again and i downloaded ubuntu, created the usb drive etc, went to installation and it didnt have the ´install alongside windows´ option so i figured i would just install it on another drive [17:37] i did that and [17:37] now i cant choose between the OS to boot into [17:40] friendofkiwi: Any progress (or lack of progress) on trying to install Viber? [17:45] benskey: if you have windows on one drive and ubuntu on another, you'd need to go into your BIOS/EFI and select which drive you want to boot from === bizukifu is now known as Guest79904 === Guest79904 is now known as bizukifu_ [17:47] mayhew: its on the same ssd [17:48] but on different partitions [17:48] any advice? [17:49] benskey: check out https://help.ubuntu.com/community/Boot-Repair [17:49] benskey: you don't need boot-repair yet. [17:49] did you try pressing/holding shift during boot to bring up Grub? [17:50] and do you know if your windows partition was EFI or Legacy? and did you install ubuntu as EFI or Legacy? [17:51] sve bi dao samo kad bi mogo postat srbib [17:51] srbin* [17:51] tako vas volim [17:51] im sure i installed ubuntu as uefi [17:52] nicomachus: didnt hear of that.. i know that grub wouldve installed automaticly via ´ínstall alongside windows´´ [17:52] so just hold shift when booting up? [17:58] i'm having a problem with ubuntu on a medion laptop/tablet hybrid: the integrated keyboard stops working after i boot from grub [17:59] anyone got any ideas? [17:59] proog: maybe the keyboard is connected using USB internally, and the BIOS/firmware Setup menus don't have "USB Legacy" support enabled [17:59] the touchpad works, and an external usb keyboard works as well. It's all connected through some sort of docking mechanism where the base of the laptop is a dock for the tablet part [18:00] proog: oh, integrated KB *stops* working once the kernel starts? [18:00] yes [18:00] proog: can you "pastebinit <( dmesg )" [18:00] sure [18:01] For a second I thought proog is a bot with an awful syntax. === cristi is now known as Guest16792 === Guest16792 is now known as Sillycat [18:04] s.a [18:04] hi [18:05] it's there an OP here? [18:05] Vapez: why? === step21 is now known as step21_ [18:05] TJ-, http://pastebin.com/aPZPWgCL [18:06] the Logitech Logitech USB keyboard is my external keyboard (which works) [18:07] selamın aleyküm [18:08] hello people [18:08] revived my father's ubuntu box after a long time [18:08] wifi doesn't seem to work [18:09] the latest problem being the gcc version mismatch between the kernel and the one installed on system [18:09] linuxnoob, hi! What version of Ubuntu is it? [18:09] 14.04 [18:10] proog: lines 670 onwards seem to indicate a USB port failure that affects an HID (Human Interface Device) which may be the keyboard [18:10] how is it possible that a kernel in repo is compiled using a different gcc version!! [18:10] linuxnoob, oh... so not that old then. Can you temporarily connect it with a network cable? [18:10] how I know it's the problem: https://github.com/lwfinger/rtl8188eu/issues/102 [18:11] I am on the same system [18:11] yes TJ-, i noticed that. Not sure what to do about it though? [18:11] linuxnoob, okay. What kernel version is it running? [18:11] 3.19.0-43-generic [18:12] from lts enablement stack [18:12] linuxnoob, newer than mine :-) So which gcc version is it saying is older? [18:13] Ubuntu is an ancient African word meaning "I can't configure Debian." :( [18:13] I have a headless server running on 12.04lts, I am having really odd networking issues, I am getting a no route to host when using git, but the address nslookups and digs just fine. Git is fine on the same network using the same dns on my laptop [18:13] any ideas? [18:13] Sillycat, lol! [18:13] cat /proc/version [18:13] Linux version 3.19.0-43-generic (buildd@lgw01-16) (gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) ) #49~14.04.1-Ubuntu SMP Thu Dec 31 15:44:49 UTC 2015 [18:14] gcc --version [18:14] gcc (Ubuntu 4.8.4-2ubuntu1~14.04) 4.8.4 [18:14] linuxnoob, ouch... the one in the kernel is older :-( [18:14] yes :( [18:15] and that is supposedly the problem [18:15] linuxnoob, problematic but not impossible to fix. If it were me, I would remove gcc, grab the .deb for the version in the kernel and install it. [18:15] is that the only way? [18:16] can I pin gcc to this version goign forward? [18:16] linuxnoob, probably not. But it's what I would do. [18:16] let me try that [18:16] thanks for being so kind and helpful OpenSorce :) [18:17] linuxnoob, sure! Just glad it was something I could offer some help with :-) [18:19] I'm trying to get ipmitool to work. I downloaded the package from the repos and then tried to modprobe the IPMI kernel modules (modprobe ipmi_devintf; modprobe ipmi_si). Impi_devintf worked fine, but when I try ipmi_si I get "no such device". I tried manually doing it using insmod and the .ko modules in /lib/modules/$(uname -r)/kernel/drivers/char/ipmi/ but I go the same error. Any ideas? [18:20] Islo56 spamming anyone else? [18:21] hi folks, I got an ubuntu server and somehow when doing sudo apt-get update, I get lots of 404s for the sources. When I do apt-get upgrade, it fails due to missing dependencies [18:21] TJ-? [18:22] !eol | Hackwar1 ??? [18:22] Hackwar1 ???: End-Of-Life is the time when security updates and support for an Ubuntu release stop, see https://wiki.ubuntu.com/Releases for more information. Looking to upgrade from an EOL release? See https://help.ubuntu.com/community/EOLUpgrades [18:22] proog: it seems from reading a kernel-thread on devices with similar issues, the cause is a faulty USB descriptor data block returned by the device. Better report it to the manufacturer [18:22] thx [18:22] okay, that's too bad. Thanks for your help though [18:23] Hackwar1: Mean as only to verify the release you are on at this time . [18:23] TJ-, can you link me to a thread that i can send along? [18:24] hey guys im trying to compile some code that requires libavdevice. i downloaded it (dpkg -l shows its there), yet when I do apt-get install libavdevice (I did that before I figured out I had it) it says that libavdevice package is not found. === moot is now known as Guest42082 [18:24] OpenSorce: can't seem to figure out how to do it [18:25] Bashing-om: I'm on Utopic Unicorn... I was under the impression that that wasn't EOL yet... === Guest42082 is now known as moot [18:26] !utopic [18:26] Ubuntu 14.10 (Utopic Unicorn) was the 21st release of Ubuntu. Support ended on July 23rd, 2015. See !eol, !upgrade and http://ubottu.com/y/utopic [18:27] genii: thx [18:28] forcing gcc version from synaptic is not doing anything [18:28] linuxnoob, apt-get remove should do it. [18:28] linuxnoob, then re-installing from the deb [18:29] proog: it appears from this, the issue is caused when a manufacturer has a composite device. http://www.spinics.net/lists/linux-input/msg36975.html [18:32] okay, thanks TJ- [18:32] proog: you have to follow that thread to the new thread titled "HID: Add driver for synaptics keybard with broken rdesc" http://www.spinics.net/lists/linux-input/msg36123.html to get more detail about the background [18:32] TJ-, i actually found this thread http://ubuntuforums.org/showthread.php?t=2247265 [18:33] it suggests recompiling the kernel with HID_MAX_USAGES turned way up [18:33] ubuntu making a noise in hd [18:33] that seems like a pretty daunting task though [18:33] Is there a guide anywhere to building a custom core image for snappy? [18:33] what it can be [18:33] proog: that's not fixing the issue the correct way though [18:34] proog: it looks that "ITE" manufacturer is a common cause of these issues; presumably their USB firmware developers are useless [18:34] absolutely not, but i feel like i'm out of options here. It's either that or going back to windows === administrator is now known as Guest49754 === fish is now known as Guest46072 [18:36] proog: if you look at Simon Wörner's patches they create a synthetic keyboard descriptor that is used in palce of the one the keyboard receives; and in the synthetic descriptor that value is corrected. [18:37] hi === rahul is now known as Guest14014 [18:37] oh cool TJ-, how do i apply it to my installation? [18:37] i need to rewrite my upstart (https://bpaste.net/show/357cbdcbf550), to systemd, anyone provide suggestions [18:37] where are the network config files in 12.04lts, I think I have eth0 set as static but there is nothing in /etc/interfaces or /etc/NetworkManager/NetworkManager.conf [18:38] proog: you'd need to take an existing patch as a basis for creating a new patch specific to that keyboard [18:38] irctc119: for ifupdown /etc/network/interfaces{,.d/*} [18:38] irctc119: for Network Manager, /etc/NetworkManager/system-connections/* [18:39] TJ-, how would i do that? [18:39] i have no experience with customizing the kernel [18:39] does anyone know if its save to have libav and ffmpeg at the same time. running ubuntu 14.04 here ?? [18:40] it's safe** [18:40] <[Mew2]> Hey guys, how do I view all ip tables rules? [18:40] thanks TJ- it was the latter [18:41] iptables -L -n [18:41] <[Mew2]> Thanks sgtnasty :) [18:41] proog: best to report the bug, possibly to the linux-input mailing list as those links show, and see if the mainline developers can work with you to create a fix [18:41] http://explainshell.com/explain?cmd=iptables+-L+-n [18:42] hd making noise in Ubuntu, which could be [18:42] anyone know how to get electron to make in 15.10? it seems the npm package is too old [18:42] PauloHNeves, It might be spinning down to save power when not in use [18:42] wanted: {"node":">=0.10.32"} (current: {"node":"0.10.25","npm":"1.4.21"}) [18:42] <[Mew2]> Nice website^^^ Ty [18:43] not gonna happen TJ-, but thanks a lot for helping me out :) [18:44] proog: open a bug report on https://bugzilla.kernel.org/ with that dmesg attached and references to those mailing-list threads I gave you, then subscribe and email linux-input mail-ing list, reference the b.k.o bug report with a concise overview and ask for help [18:44] is normal Ubuntu do the hd makes more noise than the windows, or not [18:45] PauloHNeves, I answered your question above [18:45] ok [18:46] PauloHNeves, check the disks utility, and s.m.a.r.t. to see if there is something wrong. [18:46] else no, windows makes more noise :-D === step21_ is now known as step21 [18:47] hi [18:47] OerHeks I checked and will not appear any error [18:47] Alter was geht ? [18:48] !de [18:48] In den meisten Ubuntu-Kanälen wird nur Englisch gesprochen. Für deutschsprachige Hilfe besuche bitte #ubuntu-de, #kubuntu-de, #edubuntu-de oder #ubuntu-at. Einfach "/join #ubuntu-de" eingeben. Danke für Dein Verständnis! [18:52] hello [18:55] hi [18:55] hi [18:55] hi [18:56] Hello finn_ [19:08] test [19:10] Gustav_: don't do that in here. [19:13] who likes kubuntu? [19:14] milquinhentosset: Ask your real question, as many like kubuntu - else it would not be . === PriceChild is now known as Pricey [19:14] Bashing-om is it possible to install xchat or bitchx in an ubuntu server? [19:16] milquinhentosset: Do you have X on that server...? [19:16] milquinhentosset: Sure ... but but but ... a server is my nature GUI-less .. why pollute ? irssi is one CLI alternative . [19:16] irssi or weechat [19:17] i had [19:17] hmmm but i really diddt know about irssi or weechat === darent is now known as taiget82 [19:18] im gonna install one of them === step21 is now known as step21_ [19:27] I have a raid1 question [19:27] anyone out there? [19:28] quit [19:28] I am wondering if I can use half of a drive for raid partition and half as a regular ext4 partition [19:28] anyone done that? [19:32] toggy: why would you want to do that? also raid1 is disk mirroring, iirc? [19:32] mirroring yes [19:32] hahahaha [19:33] I'd like to have the root drive protected by raid1 yet have extra space that would survive a reinstall/reconfig [19:33] raid is technically for access redundancy, not data redundancy [19:34] I like raid1 so when a drive dies I keep going and add another in yes [19:34] and I assume I can leave another partition at the end of each drive that can be formatted as ext4 normally [19:35] or maybe a better questions is. if I configure a md1 and a md2 both as raid1 [19:35] after a reinstall can I leave md2 as it was [19:36] with it's data intact [19:37] toggy: I believe mdadm supports mirroring of volumes and/or disks [19:37] toggy: but unless you're putting different data on the "two" md2 mirrors, why not just do a normal raid1 of the entire disk? [19:38] because I like to have a "data" drive to keep my stuff. if I do a re-install, the data stays there on that partition [19:38] the root drive gets wiped and a new OS [19:39] toggy: yes, you can have a plain partition on the same disk [19:39] I can take thesee two 1TB drives and have (for example) 500GB for root and 500GB for data [19:39] but I am thinking I might just do the whole thing [19:39] raid1 the whole thing [19:39] hi, how can I remove old kernels? I got a little problem where my /boot is full... [19:40] Hackwar1: What results [19:40] Hackwar1: did you try `apt-get autoremove` ? [19:41] nacc: Doesn't work with kernels [19:41] Hackwar1: What results ' sudo apt-get autoremove ' ? If the package manager is in a consident state, this will also remove the old kernels . [19:41] toggy: as well as RAID-1, sounds like you should be using LVM. With that you can install multiple OSes if you want, just requiring an additional Logical Volume. You can also assign minimal space to the LVs to begin with and extend them as the need arises [19:41] Bashing-om: I'm doing an apt-get upgrade and it fails while updating the kernel because /boot is full. [19:41] ok, I will try autoremove [19:44] Bashing-om: sudo apt-get autoremove fails with unfulfilled dependenices... [19:44] I'll delete a few kernels manually.. [19:45] genii: hrm? autoremove works fine with kernels, if they really aren't used and were installed by the package manager? [19:46] nacc: Kernel things usually will not be removed automatically, unless it's something like kernel headers or kernel extra packages and the kernel they belong to has already been removed [19:46] hi [19:46] genii: nacc I think it's nuanced; autoremove will work if the system is using the default linux{,-image,-headers}-{generic,lowlatency} meta-packages [19:47] TJ-: ah yes, that could be it, sorry [19:47] Hi all, on Ubuntu 14.04 how do I install spice-gtk? I tried to follow the directions here: https://launchpad.net/~bderzhavets/+archive/ubuntu/lib-usbredir3 but I'm told that https://launchpad.net/~bderzhavets/+archive/ubuntu/lib-usbredir3 (as well as the 386 versions) return 404s [19:48] genii: by default the installer uses the meta packages so autoremove should work; if the user has removed those meta packages and/or installed kernel packages manually, it won't [19:49] !find spice [19:49] Found: libspice-protocol-dev, libspice-server-dev, libspice-server1, libspice-server1-dbg, qemu-kvm, easyspice, ngspice, ngspice-doc, tclspice, browser-plugin-spice (and 21 others) http://packages.ubuntu.com/search?keywords=spice&searchon=names&suite=wily§ion=all [19:50] Thanks MonkeyDust [19:50] Katronix, that https://launchpad.net/~bderzhavets/+archive/ubuntu/lib-usbredir3 has only Oneiric packages. [19:50] Hi [19:51] Any software for translation? [19:52] TJ: I won't be doing multiple OSs, just the occasional rdo [19:52] redo [19:52] OerHeks, ah okay [19:52] so I am content with simple raid [19:52] How do I add translation to this program? GoldenDict. [19:52] and perhaps extra ext4 drives are unneeded. It was an idea [19:54] happy____, tons of translation software and services, https://en.wikipedia.org/wiki/Comparison_of_machine_translation_applications [19:54] <[Mew2]> guys whats the location of the iptabels rules file? [19:55] [Mew2]: it's up to you [19:55] <[Mew2]> where is default [19:56] [Mew2] there's /usr/share/ufw/iptables [19:56] time to read https://help.ubuntu.com/community/IptablesHowTo [19:56] [Mew2] there's /usr/share/ufw/iptables/ <-- correction [19:56] <[Mew2]> thanks MonkeyDust and OerHeks and TJ- [19:56] [Mew2]: there isn't one. iptables is a binary tool; other packages may use it but they will decide where to put rules files. if you edit /etc/network/interfaces manually you set the path/file you prefer [19:57] you need to save and restore them yourself, afaik [19:57] [Mew2]: if you're working with iptables that implies IPV4; I hope you're also aware of ip6tables for IPv6 [19:57] <[Mew2]> im just looking for one rule [19:58] [Mew2]: rules file location will be dictated by whatever firewall management package you've enabled [19:58] <[Mew2]> ok let me ask this [19:58] <[Mew2]> how do i view all rules pertaining to a certain port [19:58] <[Mew2]> is it possible [19:59] <[Mew2]> using grep [20:00] ok, so after cleaning up a bit, running apt-get upgrade again and then running apt-get autoremove, I still have 6 kernels installed. apparently autoremove does not remove older kernels. ;-) [20:01] Hackwar1 try sudo apt-get clean; sudo aptitude purge ~c; [20:01] <[Mew2]> do i need to restart iptables after adding a rule? [20:01] [Mew2]: "iptables -vnL | grep 80" might show all rules related to port 80, but you'll probably want the context of which chain the rule is in (due to default policy) [20:01] [Mew2]: iptables is just a program that tells the kernel to do something with the kernel's internal rules; there's no restart involved. [20:01] I'd keep them just in case. Many one time have I had to use an older kernel in order to boot cuz an update mess something up [20:02] <[Mew2]> ok [20:02] <[Mew2]> thank you [20:03] <[Mew2]> reboot brb [20:03] old habits die hard [20:05] MonkeyDust: that is cleaning up a lot. Looks interesting. :-) [20:06] Hackwar1 glad i could help [20:09] <[Mew2]> guys [20:09] <[Mew2]> sudo iptables -A PREROUTING -t nat -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 6000 [20:09] <[Mew2]> this doesnt work for some reason === _atg is now known as AndyTechGuy === krphop_ is now known as krphop [20:11] <[Mew2]> wait [20:11] <[Mew2]> sorry [20:11] <[Mew2]> it just worked [20:11] When I install Samba it is ignoring smb.conf shares and auto sharing anything in /exports, can someone tell me where that is configured to do that? [20:11] anything in /etc/exports is what I meant to say [20:12] hi, i have ubuntu server with ufw, and i don't see any deny rules... does it mean everything is allowed? [20:12] <[Mew2]> ok so heres the problem [20:12] cdavis, you use zfs or something that can share on its own, without samba [20:12] <[Mew2]> sudo iptables -A PREROUTING -t nat -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 6000 [20:12] <[Mew2]> now its connectable on both 80 and 6000 [20:12] <[Mew2]> instead of just 80 [20:14] How do I add translation to this program? GoldenDict. [20:14] [Mew2]: well, if port 6000 isn't otherwise blocked, that is expected [20:15] <[Mew2]> how do i make it connect only on 80 and not 6000? [20:15] I have a problem with extern HDD, some files work no good. Have Ubuntu a special application example research and or is possible repair to extern HDD? [20:15] happy____, http://goldendict.org/dictionaries.php [20:17] I'm not talking about dictionaries [20:17] I want him to be a translator [20:17] happy____ what is your ubuntu question? [20:17] zippo^, what you mean exactly with "some files work no good" ? [20:18] "How do I add translation" sounds different to me than how to use goldendict [20:18] some files on my extern hdd doesn't reaction [20:18] a wait, i copy text, ioria [20:18] How do I add translation to this program? GoldenDict. [20:18] zippo^, ok, it'a a data storage disk ? [20:18] happy____ to what program? [20:19] zippo^, or you have an OS installed ? [20:19] !find goldendict [20:19] Found: goldendict, goldendict-wordnet [20:19] GoldenDict [20:19] Hello. [20:19] or any program [20:19] ioria, : Fout bij splicen van bestand: Invoer-/uitvoerfout [20:20] this si dutch [20:20] happy____ what's wrong with the link OerHeks gave you? [20:20] my intern hdd works great (os works great too). data example images on my extern hdd, ioria [20:20] zippo^, Error splicing of file: Input / output error [20:20] yes this [20:20] happy____: Are you looking for something like this? https://translations.launchpad.net/ubuntu/ [20:20] can I do something? [20:21] zippo^, so you have ubuntu installed on that external hhd ? [20:22] nope, ioria [20:22] trr [20:22] trt [20:22] hh [20:22] h [20:22] h [20:22] h [20:22] zippo^, it'a storage data disk ? [20:22] images, docs, etc. are on my external hdd [20:22] zippo^, ok [20:22] Can I fix this or must I format this, ioria ? [20:22] I want to add Google translation [20:23] zippo^, which file system ? ext4 or ntfs ? [20:23] no idea, i go see [20:24] I cannot find, where can I see the way that I see which file system is this, ioria ? [20:24] zippo^, df -t [20:24] boa tarde [20:24] zippo^, sorry, df -T [20:25] in terminal? [20:25] zippo^, yes [20:26] zippo^, that splice error sounds like there is a space in the filename you want to copy [20:26] lord4163, : fuseblk [20:26] ioria, [20:27] zippo^, can you paste the filename you're copyng ? [20:29] ioria, : http://paste.ubuntu.com/14413825/ [20:30] zippo^, ntfs [20:30] see, /media/ekremkoc/ekrem koc with a space... [20:31] yes [20:31] zippo^, can you paste the filename you're copying and gives you troubles ? === mate is now known as Guest2941 [20:32] how, ioria ? [20:32] yes indeed, oerheks [20:33] zippo^, you got that error when you try to copy some files or what ? [20:33] The guy who invented that is a millionaire :-D .. use "/media/ekremkoc/ekrem koc" or /media/ekremkoc/ekrem\ koc [20:33] zippo^, keep also in mind that the file could be damaged .... [20:34] zippo^, or the drive could be [20:36] ioria, : http://picpaste.com/pics/Schermafdruk-Naamloos_venster-U8wsjp73.1452026164.png [20:36] also spaces in names [20:37] hello, i am having trouble updating my 14.04 install - i am getting a 'your install is likely broken' message running apt http://pastebin.com/uVt4NEj4 [20:37] zippo^, too long to translate .... [20:38] zippo^, try to copy that file with quotes cp "filename" etc. etc . [20:38] thx for help, but i go search via google [20:38] i'm having trouble configuring courier mta to work with spamassassin on ubuntu server, is this the correct place to seek help? [20:38] my english is no so good [20:38] zippo^, connected to usb2 or 3 ? [20:39] zippo^ speaks spanish ? [20:41] and running the suggested command from that output produces the following string of events http://pastebin.com/aAkR06tp [20:43] pero, looks like there is a PPA problem with liblove:amd64 0.9.2ppa1 [20:44] OerHeks, i just removed love and liblove and apt-get upgrade seems to be running [20:44] :-) [20:44] no idea what it is anyway [20:45] never heard of it before too: LÖVE is an awesome framework you can use to make 2D games in Lua [20:46] how much of a concern should a lot of usage of virtual memory be by applications? Like right now I see nemo running with a 1.4GB VM size and bash running with a 1.3GB size and I know for a fact bash is just logged in and not doing ANYTHING! [20:47] and basically right now I don't have much running at all and my total memory usage is 1.4GB [20:47] apt-get sure has a frozen heart [20:47] I'm concerned cuz my system only has 2GB and I'm constantly having it hang up when I try and do several things at once. [20:48] kevinfish: pastebin the output of free -m [20:48] good evening, my first time here and i am a beginner, wanted to install cuda on ubuntu but it tells me to close x server first.. when i do that.. my screen just get black with a blinking bar... anyone knows what to do ? [20:49] stephan__: how are you trying to install cuda [20:49] i downloaded the run file from the offical website of nvidia [20:49] they give you like the command to install it [20:49] which i did [20:49] you shouldn't do that [20:49] i posted before and they told me thats the way to go [20:50] so thats what i did :( [20:50] installing software from outside the ubuntu repositories is unsupported here [20:50] if theres an existing package, use apt-get [20:50] i am sorry [20:50] Ben64: http://pastebin.ca/3318291 [20:50] someone sets it up for you, that way [20:50] bunch of results if you search for "cuda" in the software center [20:51] i was told it is a bug with 14.04 that you can only install it with the run file :( [20:51] kevinfish: well you got 555MB free.... upgrade ram if you can [20:51] if i type in cuda in my software center, i only get 2 results, both magazines i can buy [20:51] weird.. [20:52] Ben64: I can't. That's a big part of the problem. So VM size isn't really related to the actual amount of Ram and Swap the program is hogging? [20:52] Ben64: I mean, why would nemo be wanting 1.4G? [20:52] Any alternatives to Skype (that actually support skype?) - PS. don't kill me [20:52] Ben64: isn't that just the file manager that manages my desktop icons? [20:53] kevinfish: virt is the virtual memory allocation for a program, which can be potentially huge; rss is the more relevant measure often [20:53] stephan__, at the bottom of software center, theres text you can click to show technical items [20:54] on the left side [20:56] nacc: ok, thanks [20:58] kevinfish: what is the nature of your hang? system stalls? is the disk getting hit hard (swapping?) [20:59] Hi... where are the channels list? I closed him than i don't see where i can choose a chanel damm! [20:59] Thanks in advance! [20:59] Zundap: try /list [21:00] nacc: I think I'm running out of memory. Also though sometimes an app will start hogging all the cpu time [21:01] thanks kevin, but nothing... [21:01] im a noob in this kind of [21:01] nacc: I was getting chromium doing that so I removed it. Seems I've had it happen with firefox too though [21:02] Zundap: what client you using? [21:02] kevinfish: are you using flash or anything in the browser? [21:02] nacc: almost certainly [21:02] kubuntu [21:02] kevinfish: tends to be a memory hog :) [21:02] kevinfish: which Ubuntu release is that? and which architecture (i386, amd64, armhf, etc.) ? [21:03] Zundap: that's your distro. Do you know what IRC client its using? Is there a help->about menu entry? [21:03] wow.. whait! [21:03] TJ-: I'm actually on the latest peppermint with amd4 [21:04] 3.16.0-57-generic #77~14.04.1-Ubuntu SMP Thu Dec 17 23:20:00 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux [21:04] kevinfish: peppermint? That's not Ubuntu, and not supported here [21:06] how can I replace `start on runlevel [2345]`, in context with systemd syntax - https://github.com/jeff1evesque/drupal-demonstration/blob/4583a0d88d154b2892cd566e5c207148e4f776cf/puppet/environment/development/manifests/vagrant_mounted.pp#L19? [21:06] TJ-: way to blow me off. :\ === fra is now known as Guest52458 [21:07] kevinfish: we can't support things we have no experience of [21:07] kevinfish: we have no idea what differences there may be in the build, or linkage, of packages on that distro [21:07] TJ-: its ubuntu with a slightly improved installer and mostly stylistic differences [21:08] Thanks Kevin! It's simple like select some lines in the chat and choice a chanel! [21:08] jeffreylevesque: you're going to need to write a systemd unit for vagrant [21:08] does anyone have an issue with nvidia 352 and multimonitor setup where [21:08] a) lightdm starts -> b) login to unity w xorg.conf generated by nvidia-settings -> c) after a minute, xorg conf ignored, and monitors' res is set by something else [21:08] Thanks, thanks! It's so niiice trie the vintage of the netzzz! [21:09] Zundap: glad to hear it. I think your client is kde telepathy for future reference [21:09] kevinfish: no, it' isn't Ubuntu, that's the point. You have multiple processes apparently reporting use of extreme amounts of memory. That suggests their common loaded shared library usage may be the culprit, which points to issues with some low-level libraries linking in more SOs than they should be doing (or something statically linked). [21:09] Thanks one more time man!! ;) [21:10] thebwt: yea i was looking at the "a template unit" - http://askubuntu.com/questions/626771/migrate-basic-upstart-script-to-systemd, but only got as far as `Description` [21:10] TJ-: ok, criticism taken. I'll go post that on one of the forums. Thanks. [21:11] jeffreylevesque: I've seen more on writing docker units, my google fu is retuning nothing on doing the same with vagrant [21:11] returning* [21:14] kevinfish: my suggestion would be to focus diagnostics on the 'bash' process; since 1.4GiB is obviously too much there. Look at its /proc/$$/ nodes [21:16] TJ-: Ok, I appreciate it. I'll pass that along too. I'm probably not the best to be delving into the libraries at this level [21:17] kevinfish: check /proc/$$/statm which prints the status of memory. To decode the fields you'll need to see the Linux kernel's Documentation/filesystems/proc.txt Table 1.3 [21:18] hey dudes. i'm having a problem with my raspi. trying to ssh but it times out. the web server running on the pi is still up, as is the cmus. why can't i ssh into it? [21:18] kevinfish: this link should get you started: http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/Documentation/filesystems/proc.txt#n263 [21:19] anticore: because the sshd isn't running, or there's a firewall rule blocking you [21:20] anticore: are you sure the ssh client doesn't make a connection but that gets dropped by the sshd? ("ssh -vvv ..." will help debug connection issues like that) [21:21] TJ-: ok, thanks. I take it you're pretty sure ubuntu doesn't have this problem? [21:21] kevinfish: I've only ever seen those symptoms with systems where they've either used statically linked binaries, or else custom installed a self-built set of core system libraries (using the wrong build flags) [21:22] also /50 [21:22] kevinfish: .../statm and also .../stat should help you pinpoint which memory count is excessive, which should help narrow down the possibilities [21:22] So ubuntu is giving me a read only error on a MicroSD card [21:23] TJ-: okay, well, I'm sure this will be good info for the devs over there. === ilbelkyr is now known as u [21:25] Ubuntu is saying my MicroSD card is read only when it's not [21:25] Bray90820: can you elaborate [21:26] Make sure that little tab on the SD card is not switch to RO [21:27] When I try to copy files to the SD card it says destination is read only [21:27] It's a micro SD card so there is no tab [21:30] Bray90820, so what partitiontype is on that card? sudo fdisk -l # can give a clue [21:30] Bray90820: pastebin the output of "mount" [21:31] Bray90820: that's a common issue for some cheap/bad/fake SD-cards where the device firmware locks out writes to the device. check /var/log/kern.log for clues on the device state (as opposed to any file-system state) [21:35] Ben64: http://pastebin.com/raw/Y0JmY7Ym === u is now known as ilbelkyr [21:39] Hey there. How do fix? :P http://paste.ubuntu.com/14414358/ [21:40] FUCK YOU [21:40] I need the 32bit SDL package to compile this: https://github.com/Hinsbart/koku-xinput-wine [21:40] FUCK YOU [21:40] /mode +b *!*@24.6.45.239 [21:40] oops, you saw through the magic [21:41] heh [21:41] Bless you Pici. [21:41] NUCKFIGGERS:, what a neat guy huh [21:41] such good time he had, to spread his message of love [21:41] nimble29: move on. [21:41] ? [21:41] nicomachus: I'm waiting for help, I'm just sitting here [21:41] he's gone, back to support topic. [21:44] But yeah, I think it's just a missing package. How would I go about installing that? === graham is now known as Guest62894 [21:44] nimble29: See if this relates to your issue: https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/949606 [21:44] Launchpad bug 949606 in mesa (Ubuntu) "64 bit dev packages should include 32 bit .so library file" [Medium,Triaged] === scotty is now known as Guest67701 [21:46] Anyone know offhand what is the "proper" directory to put user made shell scripts in to conform to POSIX/Linux FS goodness? [21:46] ~/bin/ maybe? [21:46] Ben64, That's what I've always done, yeah [21:47] llldino /usr/bin/ and /usr/sbin/ are common [21:47] llldino: /usr/local hierarchy, either in /usr/local/bin or /usr/local/sbin [21:48] llldino: As per recommendations at http://www.tldp.org/LDP/Linux-Filesystem-Hierarchy/html/usr.html [21:48] Ben64: did you look at my paste [21:48] MonkeyDust, genii , For user scripts? Non admins/staff don't have write access to anything in /usr I thought [21:49] Bray90820: ok, so its not mounted read only [21:49] But... [21:50] llldino: If it is only for the one user only to run, then in a bin directory under their home directory [21:50] Ben64: http://pastebin.com/raw/i9w6anRg [21:50] genii, Right, okay, thanks! [21:50] llldino: If it's a script multiple users will use, then /usr/local hierarchy [21:51] Bray90820: not seeing a problem, vfat doesn't support linux file permissions [21:51] Bray90820, sudo chmod 777 does not work on not-posix partitions like fat ntfs vfat and such [21:51] maybe you just run out of space [21:52] df -h # would tell [21:52] Ben64: OerHeks that's good to know [21:53] Bray90820: as I said earlier... that's a common issue for some cheap/bad/fake SD-cards where the device firmware locks out writes to the device. check /var/log/kern.log for clues on the device state (as opposed to any file-system state) [21:53] TJ-: it copy on other systems to i don't think it's the SDcard [21:53] OerHeks: http://pastebin.com/raw/NXmp4B8X [21:54] Bray90820: check the logs for clues [21:55] Bray90820: the device is 120GB? how are you connecting it to the PC - via a USB<>SD-Card reader? [21:55] unclean filesystem perhaps .. but then again it would not mount rw [21:55] uh oh, limited sdcard reader to 32/64 gb ... [21:56] OerHeks: device firmware boched, or USB bridge capacity exceeded, usually [21:56] Bray90820: "Ubuntu is saying my MicroSD card is read only when it's not" - where is it saying that? [21:59] bgardner: Idk why but it's copying now === _atg is now known as AndyTechGuy === SonikkuAmerica is now known as S-USA|StandWithI === S-USA|StandWithI is now known as S-USA|VivaIan [22:35] Greetings folks. I am in the process of installing Ubuntu 15.10 server. It states near the end of installation that there are about 1667 packages. Should I skip these or do they matter? Would the apt-get update be better. Also there is a selection for Manual Package Selection. I chose all in that dialogue box. Was that a good idea? === nimble29 is now known as Dumle29 === bonkers is now known as b0 === b0 is now known as b00 [22:40] Hi, anyone around that could help me install drivers for an LSI raid card? [22:40] ive installed 10 different once but none seems to bite [22:41] Zulu_Too: selecting 'all' sounds like the wrong thing to do; is that the selector where you can choose 'tasks' like install LAMP stack, mail server, DNS server, etc., [22:42] b00: what Ubuntu release, and what is the PCI-ID of the device ("lspci -nn") ? [22:42] ubuntu 12.04 [22:42] Yes. [22:42] TJ- Yes. [22:43] Zulu_Too: I think you should *not* select 'all' there. Only install what you know you need. You can add packages later as you realise the need [22:43] 0b:00.0 RAID bus controller [0104]: LSI Logic / Symbios Logic MegaRAID SAS 2208 [Thunderbolt] [22:44] I wanted all features but didn't know about Manual Package Selection. If I exit it I suppose I can go back to that box and either uncheck it or just exit the installer and do an apt-get update later. [22:44] b00: that output doesn't show the PCI-ID, which is inside [...] brackets near the end of the line [22:44] b00: e.g. "[1180:0592]" [22:45] b00: Thats what the -nn part of the command will give us, the vendor:device [22:45] Thanks for the input TJ- If all else fails a reinstall is easy. :) [22:45] [1000:005b] [22:46] It is on a Vitural Box install. [22:46] b00: that device is managed by the megaraid_sas module [22:46] Thanks again. [22:46] b00: I think, with that PC on 12.04, the module may not be available [22:46] Im trying to use soundconverter and the plugin I need for ubuntu leads to a 404 error, any ideas? [22:47] but lsi have drivers for 12.04 [22:47] so thats what i dont understand [22:47] Im trying to pull the make an mp3 from an mpeg BTW [22:48] b00: Can you show us in a pastebin what "modinfo -F alias megaraid_sas" reports ? [22:48] rypervenche, I've got a seperate home partition! [22:48] modinfo -F alias megaraid_sas [22:48] ERROR: modinfo: could not find module megaraid_sas [22:49] b00: Looks like you need the appropriate linux-image-extra package for the installed kernel [22:50] b00: oh, not even that. It should be there. What does "uname -r" report? [22:50] 3.11.0-15-generic [22:50] ive been dabbling with kernels all day, upgrading and downgrading [22:51] b00: that might have upset the apple-cart a bit, too. I was expecting to see v3.10 there [22:52] b00: OK, so that 3.11.0-15-generic will be for the LTS enablement for 12.04.4 [22:52] allright? [22:54] b00: that kernel went out of support in August 2014; the system should have been updated to 12.04.5 and have the 3.13 kernel from 14.04) [22:55] it only gives me the option to upgrade to 14.04 [22:55] b00: but all those kernels do have the megaraid_sas module; so if it isn't there that's a worrying issue. Once found, the 2nd issue is whether it declares an alias for the ID linux-image-extra [22:56] b00: s/linux-image-extra/1000:005b/ [22:56] bash: s/linux-image-extra/1000:005b/: No such file or directory [22:56] Hey! Are there any Ubuntu versions (or even other distros with a GUI) that would fit on a 700MB CD? [22:57] ubuntu server lts fits on a cd [22:57] Cissaa: you can install a minimal distro from a cd then install a gui as well. [22:57] Cissaa: Lubuntu ISO still fits on a normal CD [22:58] sab_: iAmerikan: genii: I need a LIVE CD thing. Lubuntu still the best option? [22:58] Cissaa: If you need it under 700M with GUI, then yes [22:58] genii: All Lubuntu versions? [22:59] that would make sense. [22:59] Cissaa: At least 14.04.3 64 and 32 bit x86 ones [22:59] Then that's what I'll use. [22:59] Thanks and see ya! [22:59] Cissaa: You can check the others at http://cdimage.ubuntu.com/lubuntu/releases/14.04/release/ [22:59] ... [23:01] TJ- do the 3.11 kernel have that module? === shawniverson is now known as Guest89034 [23:03] Wifi keeps disconnecting. card: Broadcom BCM43142. Can You help me with problem? :/ [23:03] wifi works only over very short distances.. When it is larger, after about 20 seconds keeps disconecting [23:03] the longer it means that the signal strength indicator is about 45% [23:04] on Windows, everything worked so the netrowrk card is ok; / [23:04] i have lenovo g510 [23:04] b00: On a 12.04 system here, megaraid_sas isn't in the 3.11 kernel [23:04] hihi, i'm trying to test a feature of an app that's supposed to be triggered by doing control-option-s [23:04] !b43 | szmq [23:04] szmq: Help with Broadcom bcm43xx can be found at https://help.ubuntu.com/community/WifiDocs/Driver/bcm43xx [23:04] anyone know the equavalent for "option" on ubuntu? [23:04] figures, how do i upgrade to 12.04.5? [23:05] pantato: Use the Alt key. [23:05] SonikkuAmerica: doesn't do it [23:05] pantato: Are you on a Mac now? [23:05] negative [23:05] pantato: Then what the heck is "Option" then. === Gabbo is now known as Guest40982 [23:05] on windows, it's supposed to be alt [23:05] Hi. 14.04 server. two part question... part 1 I am forgetting a command. I think it is called at. I want to issue a command(as root) at a certain time tomorrow morning. [23:06] not sure what is going on with ubuntu [23:06] !details | pantato: Can I have specifics? I don't even know what you are doing. [23:06] pantato: Can I have specifics? I don't even know what you are doing.: Please elaborate; your question or issue may not seem clear or detailed enough for people to help you. Please give more detailed information, errors, steps, and possibly configuration files (use the !pastebin to avoid flooding the channel) [23:06] b00: "sudo apt-get dist-upgrade linux-image-generic-lts-trusty" [23:06] b00: but I've not confirmed it is in that kernel either; give me a mo [23:07] cntrl-alt-s does what it's supposed to on windows [23:08] with the same keyboard [23:08] ubottu: i'm being obscure for a reason, sorry. [23:08] why is it the option key [23:08] pantato: I am only a bot, please don't think I'm intelligent :) [23:08] derp derp [23:08] iAmerikan: it's supposed to be [23:08] what's the option key supposed to be in ubuntu [23:08] non mancs have ctrl, alt, fn, and the win or mod key [23:09] pantato: what are you trying to accomplish with this key combo [23:09] lets ping [23:09] iAmerikan: trying to trigger a feature of a web app i'm testing [23:09] and it just closes the tab if i do cntrl-alt-s [23:10] that may have to do with your browser. [23:10] ehhh [23:10] iwconfig wlan0 power off [23:10] iAmerikan: I think cntrl-alt-s just closes any window on ubuntu [23:10] sry [23:10] b00: Yes, the -trusty 3.13 kernel has megaraid_sas and it supports it: "pci:v00001000d0000005Bsv*sd*bc*sc*i*" [23:10] nope [23:10] http://scr.hu/30by/w8b7h [23:10] * iAmerikan just tried ;) [23:10] minimizes, rather [23:10] upgrading now [23:11] I am on openbox.. [23:11] hmm perhaps if i disable the binding [23:11] yeah, haha [23:11] pantato: map it to something else or change the binding [23:14] iAmerikan: that worked, thank you [23:14] good news o/ === TuxTek is now known as nuno_nunes [23:21] hello all - I have a question regarding VBOX networking. I have connected a USB ethernet interface on the Host PC/ added the interface on my VM/ selected Bridged Mode/ booted the VM/ ensured that the DHCP server running on the router to which the VM is connected to through the USB adapter is working properly. After running ifconfig I see a random IP address on that IFACE. I tried changing the routing table on [23:21] my VM's OS/ set static IP ensuring that it's within the subnet range provided by the router but I am unable to ping the router. Any ideas? trying to obtain IP automatically did not work as what I am seeing is a random IP address that has nothing to do with the router's subnet. Finally from the router's web interface it looks like I have a valid ip address, but when i issue "ifconfig eth1" i don't see that. [23:21] klimt, might want to ask #vbox or #networking [23:21] i did and noone is available [23:22] i believe this may be OS specific [23:22] as I am sure VBOX and the Router are fine. but the OS fails to report/give the correct IP [23:23] dhclient hangs when I try to run it on that IFACE [23:23] hi guys, i have a geforce 540m video card and it working fine, but it is running as second card cuz i have a intel video card (optimus).. I just need to use only the nvidia vga instead of INTEL. (the games can I run via optirun) i need to put nvidia as primary card to it stays always on. ty guys... [23:23] for the record I have 2 IFACES/ the first taking the correct IP from another Router. [23:24] klimt, that usb network interface should be handled by the host, not the VM. just enable bridged networking, not NAT, in the vbox settings of your vm [23:24] !virtualbox [23:24] Virtualbox is a virtualizer for x86 and amd64 architectures. It's available in the package "virtualbox" in the !repositories, and you can download the Virtualbox Extension Pack for additional, non-Free functionality at http://virtualbox.org . Additional details can be found at https://help.ubuntu.com/community/VirtualBox [23:24] I have used bridged networking 0erHeks [23:25] I accidentally installed a package (nagios-nrpe-plugin) which installed a bunch of other stuff. I removed it by doing apt-get remove nagios-nrpe-plugin but all the other things it installed are still showing up [23:25] do I have to reinstall it and do an auto-remove? [23:25] Rapture type "sudo apt-get autoremove" [23:25] no need to reinstall [23:25] hi guys, i have a geforce 540m video card and it working fine, but it is running as second card cuz i have a intel video card (optimus).. I just need to use only the nvidia vga instead of INTEL. (the games can I run via optirun) i need to put nvidia as primary card to it stays always on. ty guys... [23:25] klimt: 0 upgraded, 0 newly installed, 0 to remove and 138 not upgraded. [23:26] it installed the apache web server which this doesn't need [23:26] Rapture: run sudo apt-get purge nagios-nrpe-plugin as well [23:26] Rapture : "sudo apt-get dist-upgrade" [23:28] 0erHeks : I use that adapter in order to connect VMs through a second router that I have. It has worked in the past, not sure what's the issue now [23:28] Rapture, did you stop naigos before you performed this action? [23:29] bekks & klimt - I did both those commands and still see the extra packages it installed [23:29] OerHeks: it's not running nagios, only the nagios-nrpe client [23:30] Rapture : can you please paste into pastebin what you see and provide the link? [23:31] klimt: http://pastebin.com/raw/sysKHWtF [23:32] basically I just want all those 'extra' packages removed [23:32] <[Mew2]> so just a noob questions, why do some apps have to run as root? like mysql, apache etc? [23:32] 0erHeks : http://pastebin.com/hJELJpg6 [23:33] any one experienced in using LXD? [23:34] Rapture : why don't you just do "sudo apt-get remove apache2 apache2-bin apache2-data apache2-utils bsd-mailx fontconfig-config fonts-dejavu-core libapache2-mod-php5 libapr1 libaprutil1 libaprutil1-dbd-sqlite3 libaprutil1-ldap libfontconfig1 libgd3 libjbig0 libjpeg-turbo8 libjpeg8 libjs-jquery libtiff5 libvpx1 libxpm4 nagios-images nagios3 nagios3-cgi nagios3-common nagios3-core php5-cli php5-common php5-json [23:34] php5-readline postfix ssl-cert" [23:34] aren't all these packages that that plugin installed? [23:34] Hi, what's a good MIME type / file format for structured text on Ubuntu / Linux that would also be easily cross platform with Windows? [23:34] <[Mew2]> so just a noob question, why do some apps have to run as root? like mysql, apache etc? [23:35] Rapture : I assume that you havent been using apache or nagios before... [23:35] Well my laptop appears to be using AMD Radeon HD 6480G [23:35] klimt: correct, this is a new server totally unrelated to apache [23:35] Hey guys, I've stumbled upon a bit of a problem. I currently run Win7 and I made a bootable USB with the 14.04 Ubuntu .iso file since I want to dual-boot. But, when I tried to install it alongside Windows, it seems that it doesn't detect I have another operating system. So, I proceeded to free up space from Windows and try to create the root and swap partitons myself, but apparently Ubuntu sees as free space all of my hard disk, it completely ignores [23:35] Windows' files. How can I fix this? Thanks. [23:36] I am seeing in my sys log: "Not enough host controller resources for new device state". Is there something I can change via sysctl or something to up the resources available to the kernel? [23:37] klimt: thanks I was looking for a way to auto-remove but the command you suggested works as well [23:37] ovidiug: MBR partitioning ? AND Windows uses all 4 of the primary partitions ? [23:37] Where are file permission bits stored? Is it in the file ehader? [23:38] Hi guys, how can I find out in which way the Ubuntu ubiquity installer installs GRUB2 on my systems? Eg. commands, flag etc.. [23:39] Can I find the required information in the Ubuntu live CD/USB? [23:39] Rapture : glad I helped [23:39] I have found that in /usr/lib/ubiquity there are some Python scripts [23:40] digitalboy01: ' sudo debconf-show grub-pc ' ?? [23:40] Could someone point me in the right direction? [23:40] Bashing-om What that command is supposed to do? [23:42] digitalboy01: Lots of info about grub install . [23:42] Bashing-om: I only have 2 partitions. [23:42] ovidiug: Pastebin ' sudo fdisk -lu ' so we see what we are working with . [23:44] Bashing-om Thank you for the info but I would like to know how (the exact command, various flags) the GRUB2 bootloader is installed whenever the installation procedure finish [23:44] Bashing-om: I can't run that command, I'm on Windows... [23:44] hi [23:45] can i install ubuntu on a hardware raid? [23:46] ovidiug: You are attempting to install ubuntu desktop, no ? Then boot the installr in "try ubuntu " mode . Key combo ctl+alt+t to gain a terminal interface . [23:46] Guest25371: it is possible to do so. Whether you personally can depends on your skills :) [23:47] Bashing-om: Oh, yes, I'm sorry, I'll do it now. [23:47] Is that kind of information publicy available? [23:47] digitalboy01: Grub is a deep subject. It parses several files and has a lot of hooks into the kernel and kernel space . [23:48] Bashing-om So you are telling me that the final installation command depends on the hardware of my PC that get "scanned" during the installation phase? [23:48] digitalboy01: thats correct so far. [23:49] bekks Thank you [23:49] Seveas where can i find information how to install ubuntu on a "hardware raid"? [23:50] digitalboy01: Yes and no ... MBR installs one way, EFI another . There exist limited direction of where grub gets installed using the wizard to conduct the install . [23:50] digitalboy01: why are you asking anyways? [23:50] digitalboy01: basically, the installation process "scans" your hw, and proposes to install grub onto a) the mbr/boot sector of the first disk detected, and b) onto the partition where /boot resides [23:52] Bashing-om Ok, thank you for the info but there is a script that I can look at to grasp the basic information about the structure of the installation command? [23:52] !Firefox [23:52] firefox is the default web browser on Ubuntu. To install the latest version, see https://help.ubuntu.com/community/FirefoxNewVersion | To install plugins: https://help.ubuntu.com/community/FirefoxPlugins [23:52] Also thank you guys, EriC^^, bekks [23:53] digitalboy01: no, there is no such script. [23:53] digitalboy01: Not that I am aware of .. it pulls from a lot of places .. many of these "placs" I am not aware of . maybe start -> [23:54] !grub2 | digitalboy01 [23:54] I'm trying to reinstall GRUB2 (MBR) to a disk that has the MBR wiped by the Windows PE bootloader [23:54] digitalboy01: GRUB2 is the default Ubuntu boot manager. Lost GRUB after installing Windows? See https://help.ubuntu.com/community/RestoreGrub - For more information and troubleshooting for GRUB2 please refer to https://help.ubuntu.com/community/Grub2 [23:54] digitalboy01: why do you want the command ubiquity uses? [23:54] Bashing-om That should fit! [23:54] Thank you! [23:55] Does anyone know a way I can burn this ubuntu iso from within Puppy Linux? [23:55] Puppy linux is a piece of shit. [23:55] digitalboy01: You can apt-get download ubiquity, ar -x , then mkdir data, tar -xvf data.tar.xz data/ then examine the scripts in data/usr/share/grub-installer directory [23:55] dig ;) glad to help . [23:56] EriC^^ To approach the nearest possible to the "standard" Ubuntu way of installing the bootloader [23:56] genii Thank you! [23:56] slacko_25105: you can use dd [23:56] Sorry for my bad english btw.. [23:57] digitalboy01: Not sure it will help you much, but that's the stuff ubiquity does when it installs [23:57] Guest25371: your hardware vendor's documentation will tell you how to create raid arrays. Ubuntu will just recognize them and install. [23:58] genii: or you can open the .deb with file-roller :) [23:58] Seveas: Ssshhh! :) === shawniverson is now known as Guest98611 [23:59] genii The link that you posted uses Ubuntu 11.10 and 11.04 as examples, do you think that the guide is still valid for current versions of Ubuntu?