/srv/irclogs.ubuntu.com/2009/08/11/#ubuntu.txt

rwwblognewb_: sudo apt-get install libfcgi0ldbl00:00
HighLordObsiaww man, the mic sounds all garbled...(yes i know thats not a real word)00:00
jedcblognewb_,  it looks like that package is in universe, if you got to System->Administration->Software sources, is "Community maintained Open Source software (Universe)" checked?00:00
innomenArthur_Rainbow, np man, good luck, i did the same thing to my number pad, i pried the numbers off and made it like a phone, and i had to remap the numbers :P00:00
jamescarrhow can I enable my emerald themes? there's a preferences window for them, but when I select them nothing happens00:01
trisminnomen: I figured out how to insert the nulls directly if you use vim, ctrl+v+@00:01
innomenvim?00:01
trisminnomen: may work in other text editors that don't use ctrl+v for paste00:01
trisminnomen: it is a command line text editor00:02
innomenwouldent that be control v shift 2?00:02
legend2440jamescarr: http://ubuntuforums.org/showthread.php?t=113124600:02
trisminnomen: yes00:02
trism!vim00:02
ubottuText Editors: gedit (GNOME), Kate (KDE), mousepad (Xfce4) - Terminal-based: nano, vi/vim, emacs - For HTML/CSS editors, see !html - For programming editors and IDE, see !code00:02
HighLordObsiphooey00:02
Jonii^stroyan, how to edit file? :>00:03
=== unforgiven512-aw is now known as unforgiven512
innomentrism, could i impose upon you to help me find out a way to do it in scite? you seem to know the terms00:04
dahliawhen I use the System->Administration->Create a USB startup disk  thing, I tell it which .iso to use (ubuntu desktop 9.04 x86) and tell it which usb disk to use, then it just sits there with a progress bar that says "Starting up" but it never moves00:04
innomentrism, scite seems ot call them control characters00:05
ElronMcBongb3rz3rk3r: Well the router belongs to my neighbours and yesterday I tried to configure wpa_supplicant with a WEP key they used but that did not work out. as far as I understood from google-ing was that there was a problem with the encryption. Something was seemingly incompatible. The an hour ago I asked them to change the encryption to WPA and I reconfigured wpa_supplicant. It got beyond the previously mentioned error, but did n00:05
jamescarrwow it's fast00:06
stroyandonavan_: Your google earth troubles sound like typical issues interacting with compiz.  See https://help.ubuntu.com/community/GoogleEarth for more details.00:06
stroyanJonii^: I like vim myself.  You may prefer nano.00:06
gizmobayCan someone help with a command to do a symbolic link00:06
ravilgizmobay, ln -s name source00:07
dumontquestion: i have this command for linux -> find -name '*.rar' -exec unrar x {} \;            how can I modify it so that if there is a file called *part01.rar then it does not search for all .rar and only unpacks *part01.rar ?00:07
gizmobayI have two directories /abc and /abc/xyz00:07
trisminnomen: would like to help, but never used scite00:07
gizmobayI want all the files in /abc/xyz to be linked in the directory /abc00:07
dumontgizmobay soft link?00:07
gizmobayyes00:07
LinuxGoldanybody used qdevelop?00:08
innomentrism, ok00:08
dumontgizmobay have you tried cp command?00:08
dumontcp --help00:08
iceroot!anyone | LinuxGold00:08
ubottuLinuxGold: A large amount of the first questions asked in this channel start with "Does anyone/anybody..."  Why not ask your next question (the real one) and find out?00:08
innomendoes anyone else have any idea how i could go about inserting a nul control character into a volume of text?00:08
dumontwill have an option to copy all the files and make all the copied files soft link00:08
gizmobayI have other files in the directory and I don't want them to get mixed up00:08
=== Vincent is now known as Guest92177
LinuxGoldiceroot: thanks, just wanted to know if it is useful before I apt-get.00:09
Frank83Greetings. Is it possible to protect the contents of " /usr/src/linux-headers-2.6.28-14-generic/include/config/kernel.release" from being written over? Somehow (Dunno) the contents of the file were changed with not so good consecuences.00:09
dumontquestion: i have this command for linux -> find -name '*.rar' -exec unrar x {} \;            how can I modify it so that if there is a file called *part01.rar then it does not search for all .rar and only unpacks *part01.rar ?00:09
=== lipsin_ is now known as lipsin
innomenbah i'll just do it with the mouse, stupid open office00:10
innomentrism, thanks for helping though, you rock00:10
icerootLinuxGold: i only know kdevelop and like it much00:10
innomenand others00:10
stroyangizmobay: I think you want          for f in "/abc/xyz/*";do ln -s "$f" "/abc/$(basename $f)";done     But I could be wrong.00:11
icerootLinuxGold: some kind of visualstudio00:11
gizmobaythanks stroyan00:11
Cobra_GirlMy old graphics card was NVidia chipset MSI and I just picked up a new GeForce9400GT00:11
stephans_legend2448 thank you!00:11
Cobra_Girlhowever, my screen is all choppy now and I can't seem to get things to run smoothly00:11
legend2440stephans_: your welcome00:12
joeyeyedumont: find . -iname "*part01.rar" -exec unrar x '{}' \;00:12
Lostinspace_46If it takes 2 keys to produce a result e.g., <ALT>+<TAB> = Cycle Windows shouldn't the keycode refer to the non-modifier key?00:12
buckyCobra_Girl: dpkg -l nvidia-glx*  which nvidia version do you have installed?00:13
dumontjoeyeye what does iname do? i don't want it to just match part01.rar i want it to match .rar IF and ONLY if part01.rar is not found00:13
Cobra_Girl169.12+2.6.24.18 NVIDIA binary XFree86 4.x/X.Org 'new' driver00:14
buckyCobra_Girl: that's what dpkg -l nvidia-glx* says ?00:14
WormDrinkeish00:14
Cobra_Girlyes00:14
WormDrinkI have to honestly say00:14
joeyeyedumont: -iname is just case-insensitive form of -name. I think you need exec to call a script instead of unrar'ing in place00:14
WormDrinkubuntu is poor quality00:14
buckyCobra_Girl: which version of ubuntu are you using?00:15
Cobra_Girlhardy heron00:15
buckyic00:15
Cobra_Girl8.0400:15
WormDrinkfor some reason mmap2 is failing with ENOMEM in gdbm ... and there is just no reason for it00:15
joeyeyedumont: in the script you can test for $1part01.rar existence and call unrar00:15
WormDrinkand my disk crashed after the update to 9.0400:15
WormDrinkubuntu should just disable the release update feature ... cos its basically a lie00:16
buckyCobra_Girl: you might need a newer nvidia driver.. is there one available in the Hardy repos?00:16
WormDrinkit doesnt work, it just breaks00:16
server_sideis xubuntu just ubuntu with xfce enviroment?00:16
Cobra_GirlI tried, but I couldn't seem to unpack it00:16
Cobra_Girlis there a way to upgrade manually from LTS to current stable?00:17
jedcCobra_Girl, have you tried System->Administration->Hardware Drivers?00:17
heoHow can I kill a process in the third window of the GNU Screen? I am looking for a faster way rather than using "ps aux" and kill by PID.00:17
dumontjoeyeye i only code in php and i don't know what kind of a script i could call, and what language to write it in00:17
buckyCobra_Girl: do you have that upgrade icon in the upper right hand corner?00:17
int203hi-anyone have problems with jaunty + mount.cifs and mount.smbfs seg faulting upon execution?00:17
WormDrinkCobra_Girl, if you want to trash your system then just enable updates to current via synaptic settings ...00:17
joeyeyedumont: write it in bash00:18
dumontdon't know bash :(00:18
* bucky laughs at WormDrink00:18
dumontany great tutorials?00:18
dumontor just google it00:18
Cobra_Girlwell, I sort of need all my files and such  :P00:18
=== No9931720 is now known as bubble
WormDrinkwell then dont upgrade ubuntu ...00:18
doug__HEy.. does anyone know of a application for Ubuntu that can be used for beats?  Iv always used programs like Fruity Loops and ProTools but am looking for somehing that will work on Ubuntu00:18
Cobra_Girlright now in Hardware Drivers, only my LAN card is listed00:19
syntaxdoug virtualbox00:19
doug__syntax thanks ill check it out00:19
suitis this chan for karmic, too? I vaguely remember an alternative channel for bleeding edge stuff00:20
Kalistoanyone from NZ here?00:20
WormDrinkno honestly, I am real disappointed - its quite pathetic the fact that updates break like that - and I have run gentoo for allot longer on another system, sure updates takes longer, and involves more work, but the point is it works - this is just basically like a "I dont want a pc that works anymore, also throw in some totally random shit"00:20
IndyGunFreak!karmic | suit00:20
ubottusuit: Karmic Koala is the codename for Ubuntu 9.10, due October 2009 - Karmic WILL break - Discussion and support in #ubuntu+100:20
jedcCobra_Girl, i remember having problems with nvidia drivers, you might try installing and running the envyng-gtk package, it downloads and install the newest nvidia drivers i believe00:20
suitright! thanks00:20
legend2440doug__: http://lmms.sourceforge.net/00:21
Dr_Willisdumont:  theres dozens of good sites with bash tutorials and many free ebooks you can download.00:22
doug__syntax: is VirtualBox just an app like wine or is an actual application for mixing00:22
doug__legend2440: thanks ill check that out00:22
Dr_Willis!virtualbox | doug__00:22
ubottudoug__: virtualbox is a x86 !virtualizer. A !free edition is available from the package 'virtualbox-ose'. A non-free edition is available at http://virtualbox.org for most Ubuntu releases (help in #vbox) - Setup details at https://help.ubuntu.com/community/VirtualBox00:22
syntaxvbox will allow you to use 2 os at the same tme00:22
Lostinspace_46Cobra_Girl: I came in late on this, but if you enablecustom desktop effects, it should automatically use you nvidia driver00:22
syntaxwine isnt that good for fl studio00:22
IndyGunFreakdoug__, i'mnot sure why you'd use virtualbox for mixing music unless you're looking to run a virtual os00:22
kaiser10123can someone help me find the edid for my tv00:22
Kuifje111where does ubuntu save the .bash_history file if the home directory of the user doesn't exist?00:22
Cobra_Girlthose are enabled, however all effects are extremely choppy00:22
squarebrackethow do i set a variable so that i don't have to do an export each time?00:23
syntaxfor fl studio he could use it tho..Like having fl studio in windows00:23
Dr_WillisKuifje111:  i think its in ram/cache/tmp untill the shell exits..00:23
WormDrinkbloody pathetic, and Canonical tries to push ubuntu server to enterprise market ...00:23
Cobra_Girlinstead of 30fps, I'm seeing about 7fps00:23
doug__IndyGunFreak: yeah im not looking to run multiple os's just looking for an app that is available for Ubuntu.. im cchecking out that multimedia link00:23
Lostinspace_46Cobra_Girl: Ahh I see00:23
IndyGunFreaksyntax, he asked for a program like fl studio, not how to use fl studio00:23
superciukciao00:23
stroyandumont: You can also "apt-get install abs-guide" and look at /usr/share/doc/abs-guide/html/index.html00:23
jedcsquarebracket, put the export in your .bashrc file00:23
Kuifje111Dr_Willis: is there any other file where executed commands are being saved?00:23
syntaxnothing matches with fl studio as well00:23
syntaxTrust me00:23
syntaxi use it00:23
Dr_WillisKuifje111:  never noticed.  Never worried about it. whats the original problem?00:24
syntaxpray they make a linux version of it00:24
IndyGunFreaksyntax, well he asked for instructions to ride a bike and you sent him instructions to build a car.00:24
IndyGunFreakkinda silly00:24
superciuklist00:24
syntaxnot really00:24
syntaxsimple00:24
IndyGunFreaklol, he said he wanted an ubuntu app.00:24
Kuifje111Dr_Willis: compromised account, and want to know whatever the 'hacker' executed.00:24
IndyGunFreakif one doesn't fit his needs, he'll be back00:24
doug__syntax: yeah iv always used that and Pro Tools on my mac but im looking for osmething i can use on my ilnux box00:24
YodaMasterhello00:24
YodaMasterall00:24
Dr_WillisKuifje111:  i imagine theres not going to be a way. even .bash_history is not reliable00:25
syntaxyawns00:25
syntaxword00:25
Lostinspace_46If it takes 2 keys to produce a result e.g., <ALT>+<TAB> = Cycle Windows shouldn't the keycode refer to the non-modifier key?00:25
syntaxi dont see any programs that can match fl studio imo00:25
Kuifje111Dr_Willis: all right, thanks for your help.00:25
syntaxon linux00:25
IndyGunFreaksyntax, but that wasn't the question00:25
Dr_WillisKuifje111:  if you have 2 shells going each has its own history.. so the saved history will not always be the one that did the work.00:25
syntaxDude dont take up for dude00:25
syntaxlet him talk00:25
syntaxsimple00:26
elechey guys, i am having problems with my audio (alsactl identifies as: "HDA-Intel" "Realtek ALC1200" "HDA:10ec0888,10de0175,00100101") .. it just doesnt play, i've checked just about all the forums and played with my "options snd_hda_intel" settings and ensured my sound was actually turned up.. the only odd thing is that if i boot off of a livecd, it works.. (but i get no video when booted from live cd, unrelated, so i cant trouble shoot from that) more info here:00:26
IndyGunFreaksyntax, i'm not, i'm telling you what he said.. pay attention00:26
syntaxi know what he said and hes asking for a program like fl to work as a linux app00:27
IndyGunFreaksyntax, ok.. and you answered to use vbox00:27
IndyGunFreakthatsnot a program "like fl"00:27
syntaxYou use fl in that duh00:27
syntaxdude00:27
syntaxbe gone00:27
IndyGunFreakmoron00:27
superciuklist00:28
elec..00:28
IndyGunFreakthank goodness00:28
doug__can fl be installed with wine?00:28
syntaxyea00:28
Dr_Willissuperciuk:  this isent a warez channel. :)00:28
syntaxbut doesnt work as well00:28
IndyGunFreakdoug__, well acording to the grand wizard, no00:28
IndyGunFreakit doesn't work00:28
doug__ok00:28
Lostinspace_46My dumb question for the day..what, exactly, does the marker bar mark?00:29
bdfosterhey guys when i leave my computer on sometimes when i come back to it my mouse disappears. it tends to happen after a few hours, but doesn't always happen. is there a solution to this problem?00:30
Dr_WillisLostinspace_46:  what marker bar mark?00:30
Lostinspace_46Dr_Willis: The one in here00:31
bdfosterIndyGunFreak, you from indiana?00:31
IndyGunFreakbdfoster, affirmative00:31
bdfosterindianapolis?00:31
legend2440elec: have you read this? http://ubuntuforums.org/showthread.php?t=115933400:31
IndyGunFreakyup.. beech grove00:31
kaiser10123how do i change my xorg to work with my lcd tv00:31
Dr_WillisLostinspace_46:  theres dozwens of 'irc clients'  - In here.. means  'in theis irc room' to me. :) i imagine its some sort of history/last read line tag.00:31
bdfostersweet00:31
ShoeWhen I try to import all of my songs into Rythmbox Music Player so that I can reorganize and sync some more shizz onto my iPod, I get this message: "No packages with the requested plugins found. The requested plugins are: ( Idon't exactly remember the name. Something like Windows Media codec decoder or something)"00:31
IndyGunFreakbdfoster: u?00:32
kaiser10123everything is really big00:32
Dr_WillisIndyGunFreak:  Im in Kokomo :)00:32
bdfosteri was born at st francis beech grove before they stopped doing pregnancies00:32
Dr_Williskaiser10123:  whats your video card?00:32
IndyGunFreakDr_Willis: really?.. i never knew that00:32
kaiser10123Dr_Willis: nvidia fx 550000:32
doug__I it possible to install Linux MultiMedia Studio using terminal?00:32
Lostinspace_46Dr_Willis: Yep that was what I meant00:32
doug__http://lmms.sourceforge.net/home.php00:32
trenchcoatWhat's the file name supposed to be for a synaptic key file?00:32
bdfosterIndyGunFreak, southside of indianapolis00:32
Dr_Williskaiser10123:  use the nvidia-settings tools to set the proper res for monitor perhaps.00:32
kaiser10123Dr_Willis: somesaid i need to find my edid for my tv?00:33
bdfosteri was born at st francis beech grove before they stopped doing pregnancies, IndyGunFreak00:33
Dr_Williskaiser10123:  whats the connection to the tv? vga/dvi/hdmi/svideo?00:33
kaiser10123Dr_Willis: i already tried that00:33
IndyGunFreakbdfoster: lol, i live like right around the corner from there.00:33
bdfosterwow00:33
kaiser10123Dr_Willis: vga00:33
bdfostersmall world00:33
Lostinspace_46If it takes 2 keys to produce a result e.g., <ALT>+<TAB> = Cycle Windows shouldn't the keycode refer to the non-modifier key?00:33
IndyGunFreakyup00:33
bdfosternow i live in italia lol00:33
ShoeUm, guys, I need help. Go to #Ubuntu-offtopic to continue this conversation please00:33
IndyGunFreaklol00:33
trenchcoatI'm trying to add a file named pubkey.txt and synaptic isn't finding it00:34
IndyGunFreakShoe: ?..lol whatever.00:34
Dr_Williskaiser10123:  ive never had issues with nvidia-settings and my external monitors. or svideo tv.  never had to mess with edid's.00:34
syntaxdoug sudo apt-get install lmms00:34
eleclegend2440: yes i have, no luck00:34
doug__syntax: thanks00:34
kaiser10123Dr_Willis: in sobayon i dont have issues could i copy xorg file from sabayon live cd and use it with ubuntu?00:34
Fingelcan someone cat me their /etc/modprobe.d/blacklist file in a PM I accidently nuked mine00:34
Dr_Williskaiser10123:  if you are getting a picture that the wrong res. perhaps try the xrandr tool's to change the res. or see what it says it supports.00:34
kaiser10123sabayon00:34
legend2440elec: have you asked in channel  #alsa?00:34
Dr_Williskaiser10123:  try it and see. or se it as an example.00:34
* bdfoster is away: My computer goes down on me more than my wife does.00:34
Fingela better question, where can you find stock config files?00:35
ShoeWhen I try to import all of my songs into Rythmbox Music Player so that I can reorganize and sync some more shizz onto my iPod, I get this message: "No packages with the requested plugins found. The requested plugins are: ( Idon't exactly remember the name. Something like Windows Media codec decoder or something)"00:35
kaiser10123the file for esolution is xorg.conf right?00:35
eleclegend2440, yes, they asked for my configuration but no response00:35
FingelShoe: try medibuntu00:35
Dr_Williskaiser10123:  thats used to be the main X setting file yes. but with latest ubuntu releases - X auto-configures for the most part.00:35
ShoeIn Add/Remove?00:35
jedcShoe, try sudo apt-get install ubuntu-restricted-extras then try again after restarting rhythmbox00:35
Dr_Williskaiser10123:  but its possible your old xorg.conf might work. Backup your current one.00:36
ShoeTheanks jedc00:36
buckyFingel: you don't have anything in /etc/modprobe.d/  ?00:36
Dr_Willis!find xrandr00:36
kaiser10123Dr_Willis: but xorg.conf is just display? right00:36
ubottuFound: libxrandr-dev, libxrandr2, libxrandr2-dbg, lxrandr00:36
Fingelbucky: I have everything but accidently echo'd over blacklist :P00:36
jedcShoe, no problem :D00:36
Dr_Williskaiser10123:  No. it has mouse/keyboard/input/other stuff in there (or it did at one time) its rather minimal now.00:36
Fingelbucky: default one back would be nice00:37
=== _unforgiven512 is now known as unforgiven512-aw
buckyFingel: i have no file called /etc/modprobe.d/blacklist00:37
Fingelbucky blacklist.conf?00:37
BookmanHow can I start ubuntu 9.04 desktop version with just a command line and no x?00:38
arandHow do I read the label of an ISO (DVD) filesystem from terminal?00:38
innomenhow do i see thefonts on my system?00:38
Dr_Willispastebinit  /etc/modprobe.d/blacklist.conf00:38
innomenlike preview i mean see what they look like00:38
Dr_Willishttp://pastebin.com/f713300fa00:38
Dr_Willis:)00:38
Fingelthanks Dr_Willis!00:38
jollyrogerAnyone that could help would be much appreciated.00:38
trisminnomen: I use fontmatrix, it is kind of slow though00:39
innomentrism, i fixed my problem by adding the words one at a time, thankfully i didnt have to use the mouse it could be done with the spellcheck dialog using keys (down enter enter)00:39
innomentrism, i will google font matrix00:40
Hasanibrahimhow can i install flashplayer ??00:40
trisminnomen: it is in the repos00:40
trisminnomen: sudo apt-get fontmatrix00:40
IndyGunFreakHasanibrahim: its in the repos.00:40
Hasanibrahimi trie a lot of times :(00:40
innomentrism i had to do it to 6 pages of words, my wrist hurts00:40
IndyGunFreak!flash | Hasanibrahim00:40
ubottuHasanibrahim: To install Flash see https://help.ubuntu.com/community/RestrictedFormats/Flash - See also  !Restricted and !Gnash00:40
Dr_WillisHasanibrahim:  normally i install 'ubuntu-restricted-extras' it grabs flash , java, and other things you proberly want.00:40
trisminnomen: at least you got it working00:41
nickoHello  - how do i uninstall plugins from shiretoko?00:41
jollyrogerI'm having some problems with firefox if anyone could help.00:41
bankixGood eavening.00:41
innomentrism, indeed, sudo apt-get fontmatrix00:41
innomentrism,E: Invalid operation fontmatrix00:41
HasanibrahimDr_Willis: i am getting an error when i try to install :((00:41
syntaxsame result inno00:42
IndyGunFreakHasanibrahim: what is the error?00:42
Dr_WillisHasanibrahim:  tell the channel the error.. perhaps adobe moved/changed somthing again.00:42
mebaran151how do00:42
* bdfoster is away: My computer goes down on me more than my wife does.00:42
IndyGunFreaklol00:42
mebaran151how do I change the default sound card for flash00:42
jollyrogerWhenever I start firefox I have this error.  DCOPClient::attachInternal. Attach failed Could not open network socket00:42
mebaran151I want to redirect it through my hdmi out00:42
trisminnomen: sorry00:43
=== unforgiven512-aw is now known as unforgiven512
mebaran151aplay has found the card and I can get it to make a test tone00:43
trisminnomen: sudo apt-get install fontmatrix00:43
Hasanibrahimi install flash player and when i try to enter youtube, i am getting same error "you must install flash player " :(00:43
trisminnomen: my mistake00:43
innomentrism, i'm dim, i shoulda caught that00:43
Hasanibrahimi closed and open again and again00:43
IndyGunFreakHasanibrahim: well, you said you got an error, what was the error, and how have you tried to install it00:43
innomentrism, no no thats a joint failure :P00:43
Hasanibrahimi tried in opera, too00:43
nickoyeah i got same problem on my sheritoko00:43
=== davidm is now known as Guest28928
bankixHasanibrahim: Which of the three "flash players" did you choose?00:44
IndyGunFreakHasanibrahim: answer the uestion or stop whining00:44
Hasanibrahimbut i couldn't enter videos on youtbe yet :(00:44
nickoslash plugin for 64 bit sucks00:44
bankixHasanibrahim: And what version do you use -- x86 or amd_64?00:44
Hasanibrahimi wanna answer IndyGunFreak but you are very fast00:44
LoafersDoes anybody have "Unsupported Updates (hard-backports)" enabled?  How stable is ubuntu afterwards?00:44
SpoinkHello.  I installed VirtualBox by double clicking it.  How to uninstall?  (1) Apps -> Add/Remove doesn't list it, (2) system->admin->synaptic doesn't show it as installed00:44
jollyrogerCan anyone help me out here?00:44
IndyGunFreakHasanibrahim: you typed probably 8 sentences after my question.. almost everything you said was irrelevant00:44
Loafers!ask | jollyroger00:44
ubottujollyroger: Please don't ask to ask a question, simply ask the question (all on ONE line, so others can read and follow it easily). If anyone knows the answer they will most likely reply. :-)00:44
=== Shinobi is now known as Guest94965
bankixSpoink: Where did you doubleclick?00:45
Spoinkbankix: on the installer00:45
Hasanibrahimi entered http://get.adobe.com/flashplayer/00:45
bankixSpoink: Which installer?00:45
Hasanibrahimthan choose00:45
Hasanibrahimdeb for ubuntu00:45
jollyrogerI've ask the same question 3 times now and I keep getting ignored for the same guy not being able to figure out flash and not know any errors so I've kinda peeved.00:45
bankixHasanibrahim: Ah. Why didn't you use the package provided with your distro?00:45
innomentrism, what is it with no one wnating to do things in bulk but me00:45
Spoinkbankix: http://download.virtualbox.org/virtualbox/2.2.0_BETA2/    VirtualBox-2.2.0_BETA2-45227-Linux_x86.run00:46
Hasanibrahimbankix: add/remove ??00:46
IndyGunFreakbankix: he said he got an error, but  has never mentioned that error.00:46
innomentrism, is there a way to cycle through fonts without clicking on each one?00:46
jollyrogerAnyway, I get the error "DCOPClient::attachInternal. Attach failed Could not open network socket:DCOPClient" whenever I start firefox and it doesn't load it just freezes then the error pops up again.00:46
jedcjollyroger, i found a thread with your problem but no solution, http://ubuntuforums.org/showthread.php?t=380520 aparently running dcopserver will fix it temporarily... you need to give people time to figure things out00:46
bankixSpoink: Wasn't the version provided with Ubuntu not bleeding edge enough?00:46
rpaddockHow do I lock a package so the update manager doesn't keep trying to update it?00:46
bankixSpoink: However, you have to locate and delete the files manually.00:47
HasanibrahimIndyGunFreak: i mean i am getting same error "get the latest flash player"00:47
bankixSpoink: If you had used a package instead of that silly installers, this would be three clicks.00:47
Spoinkbankix: is that all?  no 'windows registry' type bollox?00:47
jrib!pinning | rpaddock00:47
ubotturpaddock: pinning is an advanced feature that APT can use to prefer particular packages over others. See https://help.ubuntu.com/community/PinningHowto00:47
bankixSpoink: There is no such thing as a registry.00:47
arandSpoink: My guess is that virtualbox provides an uninstaller with that one, finding it is another matter00:47
IndyGunFreakHasanibrahim: type this w/o quotes.. you're way to hard to follow.. "/join #indygunfreak"00:47
jollyrogerjedc: much obliged that was the problem I just updated from 8.04 to 8.10 and now to 9.04 so I thought something was borked in there.00:47
* Spoink searches00:48
LoafersSpoink, You'll need to know the version number I think.  Read more here: http://tinyurl.com/kp9lzx00:48
innomentrism, nm i think00:48
Hasanibrahim"/join #indygunfreak"00:48
IndyGunFreakHasanibrahim: w/o quotes.00:48
IndyGunFreakyou also seem to have a problem following instructions00:48
bankixjollyroger: Stop whining, if somebody knows an answer to your question, he will probably tell you.00:48
rpaddockjrib: Thanks00:49
innomentrism, "Specimen Font Previewer" in the repos did what i needed00:49
trisminnomen: I'm not sure, it may have some keyboard shortcuts, but it isn't clear what they are00:49
jedcjollyroger, did that work to fix the problem? if so you can have it run on startup, until you find a better fix00:49
trisminnomen: I'll check it out00:49
jollyrogerbankix: jedc already fixed the problem for me I was just thanking him.00:49
innomentrism, fontmatrix is more advanced than i needed00:49
bankixHasanibrahim: There is a flash test page at the adobe website. Does that work.00:49
innomentrism, what i want oo should have done as part of the drag drop00:49
innomentrism, err drop down00:50
Hasanibrahimbankix: no :(00:50
jollyrogerjedc: I always had dcopserver running in 8.04 but apparently 9.04 doesn't do that.00:50
jedcah00:50
SpoinkLoafers: Thx! Is there a way to list all installed packages?00:50
bankixHasanibrahim: Which processor type and installation (32 bit / 64 bit) do you use? And are there any Firefox plugins like noscript etc?00:50
jollyrogerWell thank you everyone and have a pleasant day.00:51
ShoeAre there any programs I can get from Add/Remove that are almost exactly like iTunes? Because I have music, video, podcasts, and other stuff for my iPod00:51
Hasanibrahimthere is no plugin about flash and i am using 32 bit00:51
arandSpoink: I think you might be able to run the installer file with a uninstall parameter, try running it with --help and see if it tells you anything00:51
=== marvinp is now known as me
bankixHasanibrahim: Okay, if you enter "about:plugins", is there flash mentioned?00:52
=== me is now known as marvinp
LoafersSpoink, Hmm this was the best I could find :(: http://tinyurl.com/2gbfxl00:52
jedcShoe, gtkpod helps for administering ipod, its not a music player, but helpful for syncing or taking music off the ipod00:52
computerhi guys, do i just sudo apt-get install compiz to install compiz?00:53
jedcShoe, if it is an ipod touch or an iphone there is less support i believe00:53
Hasanibrahimno bankix :(00:53
ShoeIt's an 80GB iPod. Bought about 3 years ago00:53
Loaferscomputer, type aptitude search compiz and install the one you want00:53
jedccomputer, yes, but i think it installed by default but that will tell you if that is the case00:54
talntid!seen jblack00:54
ubottuI have no seen command00:54
Dr_WillisShoe:  also start using the synaptic package maanger not the 'add/remove' one . the ones in add/remove are a limited list of all avail packages.00:54
|kosh|computer: compiz is installed by default on ubuntu00:54
bankixHasanibrahim: Then the flash player is not properly installed. Use synaptic to install the package flashplugin-installer00:54
Digital_Away /nick Digital_Warrior00:54
=== Digital_Away is now known as Digital_Warrior
SpoinkLoafers: very cool: 'For extra credit, you can find the locations of the files within a package from the list by using the dpkg -L command'00:54
jedcShoe, or "apt-get install gtkpod" is quicker :p00:54
LoafersSpoink, :) But I wish i knew a way to do a search for an installed program without looking at the entire list00:55
Shoethanks jedc and Dr_Willis00:55
SpoinkLoafers: grep?00:55
Othorcomputer, you may be wanting the setting manager for compiz - sudo apt-get install ccsm00:56
SpoinkLoafers: hmm this just shows what Synaptic shows.  it doesnt list virtualbox00:56
LoafersSpoink, I think if you do sudo aptitude search virtualbox it will list whats instaleld and whats not00:56
bankixLoafers: "dpkg -l name|grep ^ii" will list you only the installed packages.00:56
Shoejedc00:56
ShoeI think you misspelled it00:56
jedcShoe, nope, if it couldnt find it then you probably dont have universe enabled, you can enable it from System->Administration->Software Sources00:58
arandSpoink: That's the crux, if you use the .run installer it operates outwith the packaging system, and all the organization goodness is lost.00:58
MrJoeyUKcould anyone help me? I've upgraded from 8.04 and my mic isn't working at all.. not in skype, sound recorder etc.. none of the fixes on the forum seem to work.00:59
jedcShoe, or you might be forgetting sudo "sudo apt-get install gtkpod"00:59
Shoethats it00:59
jedcShoe, sorry about that :p00:59
Loafersbankix, are you sure that's the right command?  I keep getting no packages found matching name and i typed firefox but it couldn't find that...00:59
Hilikus_hey guys00:59
Loafers!hi | Hilikus_01:00
ubottuHilikus_: Hi! Welcome to #ubuntu!01:00
bankixSpoink: That why I was asking if the version provided by ubuntu wasn't bleeding edge enough.01:00
Hilikus_i'm trying to optimize my bootup time. how do i use bootchart? i don't understand the graph01:00
Spoinkbankix: awesome .. found an uninstall.sh .. worked!01:00
bankixLoafers: I just tried "dpkg -l firefox|grep ^ii" and it listed firefox.01:00
Loafersbankix, Ah okay got it.  Thanks!01:01
MidasManchuHi guys, i'm losing my hardwire soon and need to pick up a wireless card.  Anyone know of any wireless-N adaptors that work with 9.04?01:01
Loafers!wireless | MidasManchu01:02
ubottuMidasManchu: Wireless documentation, including how-to guides and troubleshooting information, can be found at https://help.ubuntu.com/community/WifiDocs01:02
bankixHilikus: The graph shows you which process is running over what time. From top to bottom is the order of the processes, from left to right the time they started and they were running.01:02
MrJoeyUK 01:03
IndyGunFreakMidasManchu: iv'e been looking for some usb devices as well.01:03
MidasManchuLoafers, I've already checked out those docs, but figuring out which adaptor is comaptible with which spec isn't overly obvious.01:03
Loafersbankix, Just could you explain the command?  So far what I udnerstand is debian package manager list searched name, but what does the ^ii do?01:03
Hilikusbankix: that much i know, but how can i tell which ones are slowing down the process, some of them run in paralell while some seem to block the progress01:03
bankixHilikus: Maybe puzzeling is that bootchart also shows you the initrd processes.01:03
IndyGunFreakMidasManchu: is it a PC or laptop01:03
=== jeremy_c is now known as johndoey
MidasManchudesktop01:03
=== johndoey is now known as jeremy_c
IndyGunFreakMidasManchu: honestly, if its a PC, i'd looka t some of the PCI options(assuming you have a PCI slot).. most of them seem to be atheros based, so they should be fairly easy... mos the usb ones, seem to be ralink.01:04
LoafersMidasManchu, Hmm try typing the brand name and if your lucky it might list whats compatible and what's not.01:04
strebloi'm trying to serve static files (still in development) so that my templates will be displayed with a stylesheet. the stylesheet is being served (i can go to its url and see it), but none of my templates are being displayed with the stylesheet. can someone help me understand what's going on?01:04
streblohere are my URLconf's:  http://pastebin.com/d14c8657b01:04
bankixLoafers: Normally, dpkg -l lists all _known_ packages matching that name (where "*" is allowed, e.g. "fire*"), regardless if they're installed or not.01:04
ed0n0nI have a problem with package global E: Sub-process /usr/bin/dpkg returned an error code (1). Using 9.04. Is it a serious problem? How can I fix?01:05
MidasManchustreblo, which cms are you using?01:05
gafirHello, I need help for another background issue. I've pasted some code here: http://drupalbin.com/10905 -- what I'm trying to do is have .bckleft and .bckright stretch down to the entire height of the page -- but with the code described, it only stretches up to the fold of the browser, if you scroll down, there's no background. Any idea how to get these two divs to stretch down to the bottom of the page for real? Than01:05
gafirks!01:05
streblooh damn, this is the wrong channel, sorry01:05
Loafersbankix, ok thanks01:05
bankixLoafers: The first two characters show the status -- ii are installed, un are uninstalled etc.01:05
askvictorI have a usb disk I keep my secret keys (ssh, gpg) on. I keep an ext3 partition for that purpose so permissions are set OK, but there are user permission problems - my UID on my home machine is different to my work machine. Any solutions for this? using FAT won't allow me to chmod 600...01:05
gafirwoups wrong channel too01:05
streblothanks anyway MidasManchu01:05
MidasManchuno sweat01:05
Um_cara_qualquerexcuse me folks... anybody knows how to activate an ATI video-card?01:05
bankixLoafers: Due you only wanted installed packages, you use "grep ^ii" which searches for "ii" at the beginning of the line.01:05
bankixHilikus: That's not easy to tell.01:06
bankixHilikus: Look for single processes taking long time, then you'll have your time eaters.01:06
Hilikusbankix: that's the thing, you can't really tell what's long time01:06
Loafersbankix, Ic.  what does the asterisk do?01:06
bankixHilikus: The more you look on the upper left, the more single processes you'll find.01:06
bankixLoafers: Asterisk is a wildcard. "dpkg -l fire*" will list you all packages starting with "fire".01:07
Hilikussome just stay there the whole time, but they don't block anything01:07
Loafersbankix, ok thanks a bunch!01:07
bankixHilikus: Then they're no blockers.01:07
Hilikusso which ones are?01:08
bankixHilikus: It's not easy to find a time eater in ubuntu 9.04. It's already pretty much cut to the bones.01:08
jedcUm_cara_qualquer, are there any available under System->Administration->Hardware Drivers?01:08
Hilikusbankix: oh really? :s01:08
ipfwanyone using Google Chrome Browser ?01:08
=== mac9416 is now known as macOut
bankixHilikus: Upload the graph somewhere, maybe I find one.01:08
Um_cara_qualquerjedc yes01:08
arand!anyone | ipfw01:09
ubottuipfw: A large amount of the first questions asked in this channel start with "Does anyone/anybody..."  Why not ask your next question (the real one) and find out?01:09
Aluno[pablo]01:09
Alunokjgvb01:09
Alunojjgihaiudsh789vy8i01:09
Alunojdasgiuhvu9yuisdcviojpso01:09
[pablo]Aluno yes?01:09
YodaMasterhey guys, what means JLcfnt?01:09
arandAluno: plese stop01:09
jedcUm_cara_qualquer, did it work to enable the reccomended one?01:09
ipfwIs the latest Google Chrome Beta build from the PPA for Jaunty worth a crap ?01:10
server_sidehi all01:10
Hilikusbankix: http://img403.imageshack.us/img403/7747/hilikuspcjaunty20090810.png01:10
LordLandonipfw: it's got a dude's head instead of the x button01:10
Um_cara_qualquerjedc i'm not sure i'm following you... what do u mean by "the reccomended one"?01:10
ipfwLordLandon:  I can get past that, for day to day operations, is it fairly stable, and is it honestly faster than ff3.5 ?01:11
kaiser10123Dr_Willis: it worked i copies xorg.conf from sabayon live cd:)01:11
Stargazerubuntu server will work on a dual-cpu motherboard, right ?01:11
kristiek can anyone tell me how to pick up other peoples wireless signals around me01:11
YodaMasteris anybody user acer aspire one A0751h with ubuntu?01:12
bankixHilikus: One time eater is readahead-list -- but if you remove this, the rest of the boot process will probably slow down01:12
arandipfw: compared to? I haven't used it in a while but I'm not sure how the flash/java support goes, and I do think it's faster, though possibly more unstable.01:12
Hilikusbankix: i read that01:12
jedcUm_cara_qualquer, click on the driver you want and click Activate, usually one of them has [Recommended] after it, but it might not i have an nvidia card01:12
hailukahhow do I change the default browser so that swiftfox is launched when I click a link in a terminal?01:12
bankixHilikus: And of course udev is time consuming, but nothing to do about this.01:12
Um_cara_qualquerjedc oh... yes sure but there's no one =/01:13
Um_cara_qualquerjedc i mean... it says i don't have any01:13
prohI've got a hp pavilion note book.. sound wasn't working, so I had killed pulse audio and changed everything  to use alsa in the sound preferences... still no sound... what more should I do?01:13
arandipfw: Forced to make a choice? Run both?01:13
Hilikusbankix: what about that wpa_supplicant? i don't have wifi, this is a desktop01:13
server_sidecan i speed up ubuntu boot times?01:13
bankixHilikus: And smartd.01:14
ipfwarand: thinking of testing it on mine, leaving the wifes system alone, she has a low tolerance for computer glitches01:14
bankixHilikus: wpasupplicant -> WPA Wireless01:14
renagadeXI download Catalyst Control Center (display driver) (for linux) and, suprise suprise, its "not compatible". I cant see anything01:14
renagadeXIm in windows01:14
jedcUm_cara_qualquer, hmm, you could try to install envyng-gtk, it is supposed to download the appropriate drivers and install them for you, but i havent used it with an ati card01:14
renagadeXright now01:14
Hilikusserver_side: that's exactly what we're talking about but it seems there isn't much to cut01:14
bankixserver_side: Not much I think.01:14
ipfwarand:  was thinking of giving the windows version a shot through wine as well, just for grins01:14
Bob_DoleStargazer, if it's dual x86 with normal firmware, yeah. if it's other architectures... Well, you can get builds that'll probably work. (if it isn't normal firmware, specifically designed to not work with something else, probably not, but such things are quite rare)01:14
gladidegI'm using VSFTP to upload files. When file is uploaded, i'm trying to make it "hide" from owner. (chown_username, umask_local), but no matter what, Vsftpd put ownership so uploader can see it. How can I hide file from whoever uploads to ftp?01:15
Hilikusbankix: how do i disable that or what??01:15
server_sideyeah, i mean its fast enough, i love it compared to other distros. but you always have to try and push it :)01:15
Um_cara_qualquerjedc why the first time i installed ubuntu it recognized the video card instantaneosly?01:15
bankixHilikus: These are daemons/services started via init scripts. See update-rc.d01:15
ed0n0nanyone ever had a problem with the 'global' package in Ubuntu 9.04?01:15
jedcUm_cara_qualquer, how do you know that your video card isnt working?01:15
Um_cara_qualquerwhen i go to system -> administration -> hardware drivers... it opens a window that says i don't have any being used right now01:17
bankixHilikus: Takes about 20 seconds till gdm starts. That's pretty fast. Perhaps you can safe 3 or 4 seconds by disabling some services... but that's all then, I think.01:17
bankixHilikus: Once Ubuntu really uses upstart, it will be much faster. gdm cold be startet a lot earlier.01:17
prohI've got a hp pavilion note book.. sound wasn't working, so I had killed pulse audio and changed everything  to use alsa in the sound preferences... still no sound... what more should I do?01:17
server_sidewhats a good desktop widget program for monitoring pc performance and resources?01:18
poseidonI can't find any good themes for ubuntu that aren't knock-offs of windows/mac.  Any suggestions (I've checked gnome-look)01:18
Hilikusbankix: well the whole benchmark is stupid, i measured it and it takes 59seconds from grub to a wallpaper in gnome. i don't know when the bootchart script is loaded but it does not take 25 secs01:18
bankixproh: There are alternative drivers. Open Sound System (oss). Are required for some very _rare_ cards.01:18
jedcUm_cara_qualquer, what version of ubuntu are you using?01:18
Um_cara_qualquer9.0401:18
elecanyone care to help with my sound issue: http://ubuntuforums.org/showthread.php?p=776576401:18
innomenIs there a better terminal app out there?01:18
elecaterm? eterm?01:19
bankixHilikus: How many RAM do you have?01:19
Hilikusbankix: 3G01:19
innomeni'm speaking of better than what comes default with ubuntu jaunty01:19
prohbankix, nope. No luck01:19
Um_cara_qualquermaybe that's why... i usually used 8.10...01:19
innomenelec, i'll look into those thank you01:19
bankixproh: You did try OSS as wellß01:19
bankixß01:19
bankix?01:19
elecnp01:19
jedcUm_cara_qualquer, i found this thread that might help, or bash your hopes hehe01:20
jedchttp://ubuntuforums.org/showthread.php?t=118565801:20
prohbankix, yes01:20
bankixHilikus: Hm. Couldn't tell you why loading the wallpaper takes such a long time.01:20
arandinnomen: terminator is otherwise popular01:20
innomenarand, thanky01:20
bankixproh: Sorry, no help then.01:20
Um_cara_qualqueruahauha nice01:20
renagadeXI dl'ed a Graphics driver that crashed my computer01:20
Um_cara_qualquerlets see01:20
Hilikusbankix: which one is that?01:20
bankixHilikus: It's not on that graph, because bootchart ends when the last init script is executed.01:21
jedcUm_cara_qualquer, hopefully your card isnt on that list and the solution works01:21
Um_cara_qualquerexactly01:21
Um_cara_qualqueri guess...01:21
innomenarand: spesifically what i'm afetr is control shift arrow to jump words01:21
dassoukimy lssusb can see my webcam, but i can't use it01:21
innomenand maybe a working control c01:22
Um_cara_qualquerbrb... i'll try that01:22
Stargazerubuntu server can handle dual-cpu, right ?01:22
Luig1Alright, certain Java programs I use frequently (including FrostWire) ceased working a few weeks ago, and now I've decided I need some of them again. If I uninstall OpenJDK and reinstall Sun Java, will that probably fix things?01:22
renagadeXI dl'ed a Graphics driver that crashed my computer01:22
emanuxis there a connector for exchange server 2007 in evolution01:22
bankixHilikus: What strikes me strange is that you have a very low disk thoughput but a very high disk utilization.01:23
bankixHilikus: I think you use ext3 filesystem?01:23
Hilikusbankix: yes, except for home01:23
bankixHilikus: What are you using for home?01:23
Hilikusbankix: jfs01:23
jedcLuig1, probably?01:24
minimecdassouki: lsusb only tells you, that the device a such has been recognized. dmesg will tell you, if ubuntu has the according driver for your device. Read the output of dmesg and look for your device and souspicious messages.01:24
SunStealerhmm, anyone here run wow under wine?01:24
sergei1Hi.01:24
sergei1How to install video driver for01:24
Jonii^Does anyone have any idea about what's in common with windows desktop disappearing and ubuntu gnome desktop failing to start, and X crashing due to "no screens found"?01:24
bankixHilikus: I don't know how jfs performs. But look at the graph (second) yourself: At the end of the boot process, the disk access hits the ceiling and the thoughput sinks to the ground.01:25
jedcSunStealer, yes it works well except you need the newest version of wine and there is a bug with the install where you cant click accept for the licence agreement you need to google for01:25
Luig1Are there any advantages to remaining with OpenJDK?01:25
koolkatwhy does my computer not appear in my own samba menu in network under the "places" menu, but I can see my other computer in there perfectly fine?01:25
bankixkoolkat: Probably because you did not set up samba yet.01:26
ubuntuHi guys, I'm having this weird disk crash, where Sytem Monitor see my 450Go of occupied disk, but a du -sh on the same disk gives me 65Mo01:26
jedcLuig1, only philosophical ones i think01:26
SunStealerjedc: hmm, well I have gotten it installed and kind or running. It just is "black" when i start it. I get the sound (the dragon flying) and i can tab-login... but the screen is just black. And I can't see any error messages when running it from terminal either, so it is a bit weird01:26
bankixsergei1: Which driver?01:26
koolkatbankix: how do you setup samba?01:26
Luig1Good. Thanks jedc01:26
autotecI guess once everything is ported to open source then no, but for now I just downloaded jdk with netbeans which i install in ~/01:26
ubuntuI really need to recover my 450 Go of data, and I really don't know where to go from, any pointers?01:26
frewsxcvhow do you update the index so 'locate' can find the newly created files?01:26
bankixkoolkat: Install the package system-config-samba and use it.01:26
autotecsudo updatedb01:27
sergei1bankix, integreted Radeon 2100 )01:27
opyneris there a trick to getting 8.04 to connect to windows workgroups?01:27
ubuntufrewsxcv: updatedb01:27
U-b-u-n-t-uI am trying to connect to a localhost:port and I have the port open on firestarer and it still wont answer....... what could it be?01:27
sergei1proprietary drivers..01:27
frewsxcvthanks ubuntu01:27
bankixsergei1: When you did try the hardware drivers installer from the system settings menu...01:28
miguelfor a home computer, use 4 15k hd and a perc 5 worth it??01:28
=== miguel is now known as Guest10026
hailukahopyner: what version of windows is it?01:28
sergei1bankix, it dose nothing found ..01:28
sergei1doese01:28
rchapIf i was to save a channel(or server) to favorites, how do I bring up my favorites?01:28
bankixsergei1: Then you'd have to install the diver manually. Hope you're familiar with commandline...01:28
Guest10026for a home computer, use 4 15k hd and a perc 5 worth it??01:29
bizzohi, I'm running Ubuntu 8.04 and I just got a segate 1.5Tb HDD model ST31500341AS but I can't get this damn drive to format correctly, gparted sees it, but wont format01:29
ubuntuI'm having this weird disk crash, where Sytem Monitor see my 450Go of occupied disk, but a du -sh on the same disk gives me 65Mo, any pointers on how to recover my data ?01:29
bankixbizzo: Try fdisk on the commandline.01:29
ubuntuplease guys, my life is stuck in an invisible place...01:29
=== Carlos is now known as campusano
U-b-u-n-t-uI am trying to connect to a localhost:port and I have the port open on firestarer and it still wont answer....... what could it be?01:30
bankixubuntu: what filesystem?01:30
ubuntuext301:30
jedcSunStealer, hmm my time ran out so i cant try, i found this thread http://ubuntuforums.org/showthread.php?t=1219629 but it isnt very helpful, you might try running wow using openGL and making sure your video card drivers are up to date01:30
=== taunt_ is now known as Ky|e
sergei1bankix it is strange why ubuntu did not get an driver for this videocard.. probaly becouse of the using of x64 arhitecture ubuntu?01:31
jedcSunStealer, and make sure you are using the latest version of wine (not from the ubuntu repos)01:31
bankixbankix: there is a recovery tool for deleted data, ext3grep. But this will require a checked (fsck -y) filesystem.01:31
geneticxhi everyone.01:31
ubuntua pointer would be just fine, I've been using a live cd for a month, can't work at home, really crappy personale situation :/01:31
bankixsergei1: This could be a 64-bit problem, yes. But I'm not experienced with the new ATI drivers.01:32
jedcSunStealer, good luck i need to pick up a pizza :p01:32
=== macOut is now known as mac9416
bankixubuntu: there is a recovery tool for deleted data, ext3grep. But this will require a checked (fsck -y) filesystem.01:32
bankixubuntu: Other options are photorec and foremost for data recovery. The later is a forensic tool. Both support a number of file formats.01:33
ubuntubankix: thanks, any other ideas ?01:33
rahmanhello01:33
bankixubuntu: But however, don't expect too much, and keep a backup.01:33
ubuntu(I'm trying to gather as much ideas as possible, I'm hijacking a wifi connection :/)01:33
bankixubuntu: Yes, restore from your old backup...01:33
rchapif I downloaded a .tar.gz file, (it is inkscape) how do I extract/install it via terminal if possible?01:34
xps9000ubuntu: I am sorry,I joined in a bit late, are you looking for data recovery?01:34
johnf1I'm trying to solve the problem at work of managing backports and inhouse packages ad auto building them for multiple releases. Should I look at the buildbot bits of launchpad for this or is there something a bit less complex?01:34
ubuntubankix: :) I wouldn't be there01:34
ubuntuxps9000: yup, "system monitor" see 450Go on a crashed ext3, du -sh only give 63M01:34
koolkatbankix: didn't work01:34
Hilikushow do i disable or remove wpa_supplicant? if i try to uninstall the package it tries to uninstall ubuntu-desktop with it, lolo01:34
bankixkoolkat: Why not?01:35
bankixHilikus: You disable services via update-rc.d01:35
koolkatbankix: i don't know why my own computer isn't visible to me in networks01:35
bankixkoolkat: Did you install system-config-samba?01:36
=== jan is now known as Guest873
xps9000ubuntu: Hmm. Thinking. The best, most economically sound recovery software is Spinrite, from Gibson Research Corporation. But, let me look into this, I don't run into many drive errors like these. Just curious, old, new, or stable drive?01:36
koolkatbankix: yes, it didn't work.01:36
etyrnalanyone available to help me with trying to build linux drivers for a d-link dwa-130 rev B usb wireless adapter for Ubuntu server 9 ?01:36
bankixkoolkat: What didn't work when installing system-config-samba?01:36
xps9000ubuntu: Many heavy data recovery corporations actually use his software, then charge 2,000 dollars for the recovery, lol.01:36
ubuntuxps9000: new sata 560001:36
xps9000ubuntu: Model please?01:37
innomenSo am i correct in assuming it is absolutly impossible to select text using the keyboard in gnome terminal?01:37
charnel1hi does anyone knows where can I find the 915resolution I googled and found only the old-stable . Does anyone knows the oficial page ?01:37
ubuntuxps9000: I'm in north africe .. :)01:37
koolkatbankix: it installed fine, it just didn't help anything.01:37
ubuntuxps9000: Samsung, dunno what sn01:37
bankixkoolkat: What did you do after installing system-config-samba?01:37
Hilikusbankix: all i found with that is wpa-ifupdown01:38
Hilikusi don't think that's all of it01:38
koolkatbankix: i looked at my shares and added a new one then rechecked to see if I could see myself in Networks01:38
Hilikusjust one ofe the scripts01:38
xps9000ubuntu: Just curious, are you running any form of RAID?01:38
bankixkoolkat: What did I tell you to do? I told you to start system-config-samba and configure your shares.01:38
bankixkoolkat: Why do you expect installing a configuration tool will read your mind and do whatever you intended?01:39
bankixHilikus: That's the one.01:39
bankixkoolkat: You'll find system-config-samba in your system settings menu.01:40
ubuntuxps9000: not at all01:40
bankixkoolkat: Called just "Samba".01:40
Hilikusupdate-rc.d: /etc/init.d/wpa-ifupdown exists during rc.d purge (use -f to force)01:40
Hilikusis it ok to force it? i don't reall understand the error so i don't want to01:40
bankixHilikus: Yes, force it.01:40
koolkatbankix: I told you I did that01:41
blognewbshould i chown php5-cgi as well?01:41
bankixkoolkat: Okay, and _what_ did you configure?01:41
xps9000ubuntu: Can you get ahold of Gibson's Spinrite? I'm confident that it'll recover the drive, I run it every few months for maintenance.01:41
test34do we absolutely need to install wmtile to add Window Tiling functionality?01:41
koolkatbankix: my shares01:41
bankixkoolkat: So you added a new share?01:42
ProfOakIs there a way to make a multi iso live dvd/cd of a bunch of mini linuxes?01:42
koolkatbankix: that was the 2nd thing I did01:42
bankixkoolkat: Good. What workgroup do you use in the server settings?01:43
xps9000ProfOak: I am sure there is away, make sure you are using a multi session setting on the burner. Though, personally, I have not tried.01:43
koolkatbankix: workgroup01:44
bankixProfOak: Do you mean something like putting three or four .iso images onto one CD and select then which to boot?01:44
bankixkoolkat: Is that the workgroup of your windows machines?01:44
ProfOakbankix: Yes01:44
|kosh|screenshot: http://donlindsay.wordpress.com/2009/08/11/one-three-three-t/01:45
bankixProfOak: Then a multisession CD is no help.01:45
ProfOakbankix: I figured01:45
bankixProfOak: This would mix up the files of the isos.01:45
koolkatbankix: that's the workgroup of all my machines01:45
bankixProfOak: When I tried it last time, there was no solution to boot several .iso from one CD/DVD, sorry.01:45
filgyif I have a directory listing from ls where a directory has a background color of green, what does that mean?01:46
bankixProfOak: The problem is there would have to be some emulator or hypervisor mapping the .iso to a (virtual) optical drive.01:46
Dark_WolfAnyone have experience with SANE backends?01:46
filgydoes it mean it is other writable ?01:46
ProfOakbankix: there's actually a project that does this, but all the distros are out of date01:46
xps9000Prof0ak: Please, follow the directions here: http://www.math.nyu.edu/aml/CDwrite.html  I believe it will suit your needs.01:46
jiralfaceanyone up to helping a beginner? x_x01:46
bankixkoolkat: Hm. Is there any firewall installed on your ubuntu machine?01:47
ProfOakjiralface Just ask a question01:47
test34jiralface: ask to ask to ask first01:47
koolkatbankix: I don't think so01:47
SnaresDoes anyone here have a process in their system manager in which the ID constantly changes, and the process has no name?01:47
bankixProfOak: Interesting! Could you post a link to that (even outdated) project?01:47
filgyok yeah it looks like if a directory listing has a background color of green from ls in ubuntu... it means the dir is other user writable01:47
Hilikusbankix: that didn't do it. the wpa daemon is still running01:47
bankixkoolkat: I did set up a share just a few days ago using system-config-samba, and there were no problems.01:48
bankixkoolkat: Strange.01:48
ProfOakbankix: Sure, it's called "Multi Iso LiveDVD Security" If you search that (for future references) that would yield results01:48
Hilikussomething else is starting it01:48
jiralfaceokay. i just installed ubuntu on my desktop, and i'm in the process of getting my wireless card to work. i'm using ndiswrapper. got the driver installed and the alias written01:48
bankixHilikus: Of course, it would disappear first on the next bootup.01:48
Hilikusbankix: yes, i just rebooted01:48
ProfOakbankix: http://www.darknet.org.uk/tag/multi-iso-dvd/ I love darknet01:48
koolkatbankix: I can see files on the other computer just fine01:48
rchapim having trouble understand and installing inkscape. it is a .tar.gz. I already extracted it to a home folder, but now im lost on what to do01:48
jiralfacebut when i do ifconfig wlan0 up it gives me SIOCSIFFLAGS: no such file or directory01:48
SnaresAnyone here see a process in their System Monitor that has no name and has an ID that keeps changing?01:49
koolkatbankix: just not on my own01:49
zefyxhrm, im trying to autostart vncserver.. i did cd /etc/rc3.d && lln -s /usr/bin/vncserver S99vncserver   ... & its not working, any ideas?01:49
xps9000Of course, Magiciso works fine too, for multi-boot dvds.01:49
test34Window tiling howto ?01:49
filgywhere is the default ls dircolors for unbuntu 9.04 stored?01:49
mazda01_lln -s isn01:49
mazda01_''the right command for creating a symlink, it's ln -s. typo maybe?01:49
bankixkoolkat: Seeing other shares involves only the samba client, but presenting shares requires a running server.01:49
losherzefyx: /usr/bin/vncserver is not an rc startup script, so you can't do that...01:49
renagadeXI dl'ed a Graphics driver that crashed my computer. What do I do because it wont start?01:50
zefyxoh?01:50
zefyxhrm..01:50
zefyxwhat should i change it too?01:50
test34jiralface: did you read http://www.linuxquestions.org/questions/linux-wireless-networking-41/siocsifflags-no-such-file-or-directory-184147/ ?01:50
zefyxahh, /etc/init.d/vncserver01:50
zefyx?01:50
SnaresAnyone here have an unnamed process running?01:50
mazda01_zefyx: you can add it to startup apps.01:50
losherzefyx: better...01:50
bankixProfOak: Hmpf, only a torrent link.01:51
koolkatbankix: they say you have to open ports 137-139, 445. does that mean port forwarding?01:51
zefyxthat was a durh moment :p01:51
ProfOakbankix: It's not worth it. I waited so long and tried it out. Be glad that you know the version numbers before you dl'd.01:51
losherzefyx: see also update-rc and "bum" for easy ways to manage startup scripts..01:51
bankixProfOak: I would like to have a look into the ISO. According to the description, they remastered the ISO.01:51
jiralfacetest34: i did read that01:52
zefyxhrm..01:52
bankixkoolkat: These ports refer to a firewall.01:52
zefyxstill not working =\01:52
SnaresProdego: Do you happen to know why one would have an unnamed process whose ID is constantly increasing?01:52
ProfOakbankix: There needs to be an easy way to do it01:52
filgyanyone know where DIRCOLORS settings for ls are stored ?01:52
ProfOakbankix: actually, that would be a good coding project01:52
SnaresI mean, ProfOak *01:52
jiralfacetest34: and i tried the dmesg command, it gave me a huge list of things i had no idea what to do iwth01:52
=== draz|lab is now known as drazak
losherzefyx: does it work when you run it manually...01:53
ProfOakSnares What? I didn't ask about processes.01:53
koolkatbankix: do I have to open the ports on my router? how would I do that?01:53
SnaresProfOak, I know, I'm asking about them :)01:53
SnaresProfOak: I can't figure out why there is an unnamed process with an ID that keeps changing...01:53
test34jiralface: you could tried pasting the output of dmesg on a pasting website and giving out the link here01:53
* Prodego waves01:53
=== Carlos is now known as Guest27774
=== andi is now known as Guest3871
zefyxrunning /usr/bin/vncserver works.01:54
bankixkoolkat: Are the windows machines and your ubuntu machine in the same physical network? Connected via a switch? Or ist here a router between them?01:54
losherSnares: run ps axf and see if it has a parent pid...01:54
ProfOakSnares can you post a screenshot of the process?01:54
jiralfacetest34: err...my ubuntu machine doesn't have any connectivity..what should i do01:54
test34jiralface: copy it on a disk01:54
=== c is now known as charitwo
koolkatbankix: they're all ubuntu machines and there's a router between them.01:54
autotecjiralface try:  dmesg | grep -i whatYouLookin401:54
=== jforte is now known as Jena
test34usb or floppy or cd01:54
=== Guest27774 is now known as campusano
bankixkoolkat: Why didn't you mention this earlier? I thought you're speaking of a local network...01:55
mazda01_if i build a package from source will it overwrite the package installled from synaptic?01:55
koolkatbankix: i am01:55
test34jiralface: dmesg > dmesg_output.txt01:55
heoA process called "Firefox" changes all the time its PID. How can I kill it as its PID changes every time I look at "ps u"?01:55
bankixkoolkat: Then you'll have to do some heavy router reconfiguration.01:55
blbrownhttp://img43.imageshack.us/img43/2312/screenshotdevsdagparted.png  anyone see that,  How can I give more space to my sda3/windows partition?  Also, how do I use grub to dual boot either sda1 or sda301:56
bankixkoolkat: Not only editing the router firewall, but also install port forwarding for the mentioned samba ports.01:56
losherzefyx: running /usr/bin/vncserver is not the same as running /etc/init.d/vncserver. Does the latter work?01:56
filgykoolkat: is it a home network running with a 'multiport' consumer router or an actual router01:56
mazda01_if a ./configure runs once but warns of not having libhal-storage-dev and libhal-storage1 can i run ./configure again and all will be ok?01:56
mazda01_heo: sudo killall firefox01:57
koolkatfilgy: its a consumer router01:57
loshermazda01_: in general, you can run configure as many times as you like. But if it needs libhal-storage-dev and you don't have it, eventually the compile will fail...01:57
autotecmazda01_:  you can run it again after depends have been satisfied, but you could also run make clean just to be sure.01:57
bankixkoolkat: If you see your samba share under Places/Network, then samba is configured properly.01:57
geneticxheo: sudo killall -9 firefox would work too.01:57
bankixkoolkat: (on your ubuntu machine, seeing your own share)01:57
filgykoolkat: like linksys or something? in that case your local network  is technically operating through a switch...01:57
mazda01_losher: i know, i am installing what it needs now.01:57
loshermazda01_: then autotec's advice is good...01:58
filgybankix: he's connected through a switch with his local network. not router it sounds like01:58
SnaresProfOak: It's just the first process listed...weird it seems to be gone now. It was "Process name <blank> - "Status Sleeping" "ID 0-<increasing>" "Waiting Channel <blank>"01:58
zefyxlosher, no01:58
zefyxdoesnt work01:58
mazda01_autotec: what is the command to run after make but before make install to have it make a deb for easy uninstalling01:58
koolkatfilgy: so I have nothing to worry about?01:58
mazda01_?01:58
test34mazda01, you could tell configure where to install it to make sure its doesnt overwrite the old one (./configure --prefix /home/user/program maybe)01:58
zefyx-su: /etc/init.d/vncserver: No such file or directory01:58
mazda01_sorry about question mark01:58
jiralfacetest34, do yu know any pasting websites?01:58
test34pastie.org01:59
SnaresProfOak: Nvm, it's randomly appearing again.01:59
mazda01_zefyx: do a find / -name vncserver   and you'll see where the exectuable is and then just add the command you want to your startup apps.01:59
filgykoolkat: i'm not sure what your initial problem was... i just saw the thing about editing router tables by bankix and figured you might actually be using a home router/switch combo01:59
heogeneticx: mazda01_ This boy is rock bottom. The Commands "sudo kill -9 firefox" did not kill it. Rootkit?01:59
zefyxthats what i did earlier01:59
autoteci don't make debs sorry,  make install installs program01:59
mazda01_jiralface: pastebin.com or is it pastebin.org?01:59
zefyxits at /usr/bin/vncserver01:59
test34heo: sudo killall firefox-bin ; sudo killall firefox02:00
jiralfacetest34: http://pastie.org/57939102:00
mazda01_heo: it's sudo killall firefox02:00
mazda01_what test34 says02:00
legend2440Snares: read post #17  https://bugs.launchpad.net/ubuntu/+source/vino/+bug/34051502:00
ProfOakOk so instead of having the multiISO bootable DVD, I'm just gonna use virtual box02:00
koolkatok, bankix what should my next step be?02:00
[KirinoxzerO]good night or morning02:00
Snareslegend2440: TYVM!02:00
losherzefyx: I see. When you said: ahh, /etc/init.d/vncserver I assumed you'd found a startup script. Apparently vncserver doesn't come with one. You're going to have to write your own. Doesn't that sound like fun?02:01
test34jiralface: it looks like it doesn't find the firmware : [ 2267.323640] b43legacy-phy0 ERROR: Firmware file "b43legacy/ucode2.fw" not found or load failed.02:01
donavan_anyone know why I get white flashiness when I run openGL makes it really hard to use things like google earth02:01
heotest34: mazda01_ Your commands give an error message:  "firefox: no process killed". I can still find it with "ps aux | grep firefox".02:01
autotechey, i'm on Hardy.  I tried once install and seutp virtualbox and it could not find my wifi.  how do i make wifi work in virtualbox?02:01
funkjaMy dvd drive on my laptops lights up and opens when I push the button before ubuntu starts up (dell bios screen, in grub). but will not open or light up once inside ubuntu. Why?02:01
mazda01_losher: you don't have to write a startup scrip to get an app to start after bootup. just put the command you'd run from a terminal in the startup apps within system , preferences02:01
jiralfacetest34: how do i fix that? i know i should be going over to ndis for help about it but i'm being ignored, sadly02:02
koolkatbankix:02:02
jiralfacetest34: any help would be really really appreciated02:02
acuI am swapping continously - and when I boot also, it takes a lot of time when it reaches the swap - can I clean it ? How can I see what is in there02:02
mazda01_heo: i don't know then. sudo killall firefox or sudo killall firefox-bin should work. if it doesn't then try to restart your machine. otherwise can't help you.02:02
losherzefyx: see mazda01_ post above. Thanks mazda01_...02:02
test34heo: did you try firefox-bin02:02
legend2440Snares: can you right click on that process and choose Open Files. may give a clue if its vino or something else02:03
bankixkoolkat: Have a look at "Network" in the menu "Places". Does there show up the share of your very own ubuntu machine?02:03
malekHi, my usb hard drive gets unmounted and remounted when I don't use it for a while, and then when I try a command I get "ls: reading directory .: Input/output error".  Can anyone help?02:03
heotest34: Yes. It won't kill it.02:03
Snareslegend2440: I cannot. The problem is, the ID is constantly changing.02:03
koolkatbankix: no I said02:03
blbrownI partition /dev/sda1, 5, 6, etc.  How do I see how those map to grub.  Shouldn't they have a hd0, hd3?02:03
funkjaheo: try kill -9 {the process number}02:03
bankixkoolkat: A, sorry, did not see this.02:03
losherzefyx: if you must do it 'the old fashioned way', see if there's something here you can adapt: http://www.realvnc.com/pipermail/vnc-list/2001-February/020413.html02:03
bankixkoolkat: Then there is a configuration error with your samba server.02:04
autoteci agree with bankix windows file sharing worked out of the box for me on hardy.02:04
heofunkja: the process number changes on the fly. It is impossible.02:04
koolkatbankix: no problem02:04
Luig1Every time I try to star frostwire it claims to be unable to find the JRE binary anywhere. I reinstalled Sun Java and it didn't help. I'm thinking this is a packaging problem, so I'm here.02:04
malekby the way, I'm using Jaunty 32 bit.02:04
koolkatbankix: then what should I do02:04
test34jiralface: sorry I never used ndis... but the solution might be at: http://ubuntuforums.org/showthread.php?t=98576102:04
bankixkoolkat: Maybe out would help if you pastebin the /etc/samba/smb.conf02:04
test34heo: ssh on the right box ?02:05
Dr_Willisblbrown:  no..  sda is hd0, sda1 is hd0,002:05
jvaikill it thru the GUI thru the process app02:05
test34heo: pastie the output of : ps aux02:05
Dr_Willisblbrown:  grub starts counting at zero. :)02:05
koolkatbankix: maybe what would help?02:05
mazda01_heo: do NOT paste it here.02:05
autotecmaybe koolkat running home edition?02:05
mazda01_heo: paste it at pastebin.com02:05
[daemon]!paste02:05
ubottupastebin is a service to post multiple-lined texts so you don't flood the channel. Ubuntu pastebin is at  http://paste.ubuntu.com | To post !screenshots use http://tinyurl.com/imagebin | !pastebinit to paste directly from  command line | Make sure you give us the URL for your paste - see also the channel topic02:05
test34heo: the process # doesnt change on the fly02:05
brummbaerhey guys, has anybody here been able to successfully configure sauerbraten to connect to servers in 9.04?02:06
bankixkoolkat: Please post your /etc/samba/smb.conf02:06
bankix!pastebin | koolkat02:06
ubottukoolkat: pastebin is a service to post multiple-lined texts so you don't flood the channel. Ubuntu pastebin is at  http://paste.ubuntu.com | To post !screenshots use http://tinyurl.com/imagebin | !pastebinit to paste directly from  command line | Make sure you give us the URL for your paste - see also the channel topic02:06
brummbaer*i tried #sauerbraten, they've got nothing.02:06
Dr_Willisbrummbaer:  someone was having issues with that  just the other day.   It did work here for me however. let me try again02:06
brummbaerDr_Willis: do you know if they were able to get it fixed?02:07
blbrownDr_Willis, is there anyway to map that.  E.g. I know what /dev/sda1, 3 is etc02:07
autotecbankix: if he running home edition of windows, then I think some xyz administrator HAS to be logged in, yes?02:08
autotecthat is if he running windows share.02:08
Dr_Willisbrummbaer:  it worked for me just now.02:08
foobarbecuecan anyone help with my TFTP server? It doesn't respond to any requests. Using tcpdump I can see the requests being made... I set up the config file, the tftp root directory, and restarted xinetd. Any ideas?02:08
foobarbecuethe client just gets "timed out" when i try to get a file02:09
brummbaerDr_Willis: did you have to do any special port-forwarding/firewall type arrangements?02:09
acufoobarcecue: I I am not expert by any means - I use proftpd - I get the same problem is I run it as inetd -   if I install it as standalone it works02:09
mazda01_foobarbecue: have you looked at the access logs?02:10
ZappoHow do i get SDL?02:10
longhihi02:10
foobarbecuemazda01_: no. can you tell me where they are?02:10
longno02:10
acuso uninstall it and install it and choose standalone02:10
longfuck off02:10
longbitch02:10
longpussy02:10
longwhore02:10
FloodBot2long: Please don't flood, use http://paste.ubuntu.com to paste, don't use Enter as punctuation.02:10
* Snares calls for a banhammer02:10
foobarbecueacu: proftp is ftp right, not tftp?02:11
mazda01_someone please kick lon* off.02:11
bankixautotec: No clue...02:11
acuyes - and there is gadmin-proftpd  a graphic interface for it02:11
mazda01_foobarbecue: you need to look in /var/log/02:11
* losher hates if when people ask a question and then don't stick around more than a couple of minutes to hear an answer02:11
foobarbecuei'm talking about tftp, for loading a kernel to an embedded device02:11
acu preety easy to add users - folders - restarts server02:11
foobarbecuemazda01_: thanks, i'll look02:11
jiralfacetest34: thanks! i followed that page, and now i don't get any errors when i run ifconfig wlan0 up. but now what?02:12
funkjamy dvd drive works while the dell screen is shown but once ubuntu starts it won't light up or open. Where do I being to troubleshoot?02:12
acufoobarbecue - yes proftpd is ftp server02:12
mazda01_foobarbecue: or you can look at the startup script for tftp and see if the command logs to a certain file. i am not familar with tftp02:12
bankixkoolkat: You'll have to give us the pastebin url so we could see your config.02:12
autotecbankix:  I do know that I could not print to windows shared printer on XP home when admin was not logged into xp box.02:12
acuyou can use as clients everything you can konqueror or if you want mozilla there is fireftp it is a plugin to access ftp02:12
test34jiralface: continue to follow ndis instructions02:13
klickerhi guys anyone know02:13
klickerwindows X server ?02:13
klickeri mean windows xp or vista X server02:13
Dr_Willisautotec:  in the past. i found things work a little 'easier' if i have identical named users on the linux and windows box's  (i also used identical passwords)02:13
foobarbecuemazda01_: I think I need to edit my tftp config file to make it log. I'll try that.02:13
Dr_Willisklicker:  if you want to have a 'X server' running on windows - check out 'xming'02:13
autotecklicker search google for cygwin02:14
klickerDr_willis02:14
Piciklicker: ##windows would be a more appropriate place to ask02:14
klickerstrange xming no longer download able02:14
mazda01_foobarbecue: what does the startup script say?02:14
Dr_Willisklicker:  Hmm. i got it just the other day..02:14
autotec? how to i make noise in xchat when someone says my nick?02:15
justPatrickis someone having problems with ubuntu repositories? specially launchpad ppa's ? i have really slow download speeds :(02:15
klickerreally whats the official website u mean the latest version ?02:15
NalfI'm having trouble with ICS, the client pc isn't receiving the 192.xxx.xxx.xxx address.02:15
brummbaerDr_Willis: don't know what's going on, maybe Sauerbraten uses diff ports on linux than windows, but flushing iptables rules let me connect, so i've got enough to be off and running.02:15
Dr_Willisklicker:  http://www.straightrunning.com/XmingNotes/02:15
koolkatbankix: i need some time to change the personal details of that file02:16
Dr_Willisbrummbaer:  i have no Iptables rules. :) so that may be it.02:16
julio_hello02:16
bankixkoolkat: Hm? There are no passwords...02:16
julio_help Quality of Service???02:16
=== sander_ is now known as Snadder
owen1_i added medibuntu with this command: sudo wget http://www.medibuntu.org/sources.list.d/jaunty.list --output-document=/etc/apt/sources.list.d/medibuntu.list  how to get rid of it?02:16
jiralfacetest34: YES! success. thanks so much!02:16
Piciowen1_: sudo rm /etc/apt/sources.list.d/medibuntu.list02:17
mazda01_owen1_:  gksudo gedit /etc/apt/sources.list  and just put a # symbol in front of that line or just delete the whole line.02:17
test34jiralface: np02:17
mazda01_sorry, do what Pici  says02:18
ZappoDoes anyone know how to install SDL?02:18
bankixkoolkat: You have to paste it. I'm not able to accept ddc.02:18
SunStealeri got wow working, now I just have to map my mouse :-P02:18
justPatrickanyone having really slow download speeds from canonical servers? (http://ppa.launchpad.net/...)02:18
owen1_Pici: mazda01_ works, thanks02:18
bankixZappo: Yes, using the package manager. And your _real_ question is?02:18
mazda01_owen1_:  np02:19
justPatrickZappo: search for "libsdl" in the package manager (Synaptic)02:19
mazda01_does anyone know if I compile a program from source will it overwrite what the package manager installed? I want to use an experimental version of pcmanfm. and if I try to uninstall it it wants to remove all of lxde and I obviously need the desktop manager, i only want to change teh file manager02:20
bankixkoolkat: (using pastebin allows others to help as well, so that's the preferred method)02:20
NalfCan anyone help me with ICS?02:20
ryanakcaThe right arrow key on my keyboard seems to have died, is there anything I can do to find out if it's a hardware issue or not?02:20
ZappojustPatrick: and specific one i should install?02:20
chris_lenz123guys i have a window open that wont disappear, i have used xkill as well02:21
bankixryanakca: Yes, start xev, then press the keys. If it's still sending keycodes, they'll appear there.02:21
heotest34: mazda01_ http://pastebin.com/d2fc4a9e02:21
test34heo, I dont see firefox02:21
mazda01_heo: i don't see firefox02:21
Coralcan somebody help me run world of warcraft through wine?02:22
justPatrickZappo: SDL should be installed by default, but try installing libsdl1.2debian-all02:22
heotest34: mazda01_ odd. Why can I see it with command "ps aux | grep firefox" but not in the list?02:23
donavan_how do I figure out what version of driver I am using for my video card02:23
=== sander_ is now known as Snadder
chris_lenz123guys i have a window open that wont disappear and i have used xkill, what do i do02:23
justPatrickZappo what is the problem you're having?02:23
Coralswitch workspaces02:23
nick125chris_lenz123: find out the process that owns the window and kill -9 it02:23
bonez46how can I change my FQDN?02:23
bankixdonavan_: Have a look in /var/log/Xorg.0.log02:23
heotest34: mazda01_ Can you  see firefox if you try "ps aux | grep firefox" even if it is closed?02:23
bonez46I need to change it for my system.. so that mail and other things will work02:23
donavan_chris_lenz123... I know its cheating but you could always reboot02:24
heoI cannot understand.02:24
kerm|twhats the best way to send audio to a different computer's sound card?02:24
justPatrickdonovan_ "glxinfo | grep vendor" in the terminal02:24
ZappojustPatrick: im trying to install something and its telling me i need to install SDL 1.202:24
nick125bonez46: Couldn't you just change it in /etc/hostname? *shrug*02:24
Coralcan somebody help me get world of warcraft to work with my computer?02:24
chris_lenz123i dont understand02:24
test34heo: funny.. you will see the grep process02:24
bonez46nick125: is that all that's needed?02:24
justPatrickZappon: hum, really strange, 'cause SDL comes installed by default, can you tell me what you are trying to install? e what version of ubuntu are you using?02:25
test34heo: but firefox isnt really running02:25
bankixZappo: By default, libsdl 1.2 is already installed.02:25
nick125bonez46: Try that and add your FQDN to /etc/hosts (the loopback line)02:25
Doug__I searched around and couldn't find much information about the Asus Xonar HDMI 1.3av, is there support for this in ubuntu? I'd really like to get LPCM out on my HTPC.02:25
donavan_justPatrick ... thanks but that didnt give me the actual version of the drivers just the vendor02:25
bankixZappo: How did you install that programm? With a .run file, or a package?02:25
ZappojustPatrick: im on 9.04 im trying to install Aleph One.02:25
Coralcan somebody please help me figure out what to do to my computer to make it able to run world of warcraft through wine?02:26
Doug__Coral, you just install wine and then run wine "path to installer"02:26
justPatrickdonovan_ do you know wich videocard you have?02:26
Dr_WillisCoral:  the wine app database discuss that program in  aganozing detail. Theres proberly a forum thread on it also.02:26
=== shamm is now known as LinuxGold
heotest34: mazda01_ Is it the Grep process? http://dl.getdropbox.com/u/175588/firefox.png02:26
ZappojustPatrick: i dont really know what to call it. i got it from source .bungie.org02:27
Dr_Willis!appdb  | Coral02:27
ubottuCoral: The Wine Application DB is a database of applications and help for !Windows programs that run under !WINE: http://appdb.winehq.org - Join #winehq for application help02:27
test34heo: yes02:27
test34heo: that why the PID always changes..02:27
heotest34: lolz    :)02:27
heotest34: never thought that. Thank you.02:27
bonez46nick125: after changing those.. anything i have to do to update the system so that it will be recognized, for those changes?02:27
legend2440Zappo: is   libsdl1.2-dev  installed?02:27
blognewbhi which command do i run to check if fastcgi is running??02:27
justPatrickZappo i think you download the source code of this software, so if you need to compile it from source, you should install libsdl1.2-dev02:28
nick125bonez46: Easiest would be to reboot.02:28
Doug__So noone knows anything about the Asus Xonar HDMI card? I found info that the Xonar it self is supported but nothing about the HDMI version.02:28
bonez46ok..02:28
Volt9000Ok, I need someone's help in troubleshooting my Ubuntu box, it won't boot.02:29
Volt9000Oh BTW, hello. :)02:29
Doug__Volt9000 kind of vague there02:29
ZappojustPatrick: i will try now02:29
kekekewhat is a02:29
SupermiguelVolt9000, is it plugged in?02:29
kekekeoops02:29
Volt9000Ok, I Just wanted to make sure someone was paying attentiont02:29
justPatrickVolt9000 what have you done for it to not boot? :p02:30
Volt9000Supermiguel: oooh that's what it was! ;)02:30
SupermiguelVolt9000, :)02:30
Volt9000ok, seriously, so here's what happened02:30
Volt9000Had a major power outage, and now the box won't boot. Gets to the splashscreen and the progress bar, then says it needs to run a file system check02:30
Volt9000Gets to 4% then dumps me to a terminal window, complaining that it died with exit status 402:30
Volt9000I do some checking and find that my file system is mounted as read only.02:30
SupermiguelVolt9000, what brand is the HD?02:30
Volt9000WD02:31
=== ecto is now known as ectospasm
bankixVolt9000: Then use a live cd, preferably Ubuntu, and run the fsck manually.02:31
Volt9000Everything was working perfectly fine before the power outage.02:31
Doug__Volt9000, hmm could be a corrupted HD02:31
arandVolt9000: use a livecd and do an offline fsck02:31
SupermiguelVolt9000, go to WD website and download their testing tool, sounds like a bad HD02:31
nick125Volt9000: In the shell, run fsck.ext3 on the drive02:31
Volt9000Oh crap02:31
ElronMcBongwhen starting wpa_supplicant manually, how do I know that a connection has been successfully established? I bet it doesn't say YEAH FINALLY YOU GOT IT, does it?02:31
Volt9000I REALLY REALLY hope it's not a bad hard drive :(02:31
Volt9000Yeah I dont have a livecd, downloading one now.02:31
SupermiguelVolt9000, http://support.wdc.com/product/download.asp?lang=en02:31
HenWendoes anyone have power saving suggestions?  I have many many different apps and utilities: powertop, laptop-mode, acpi, acpi-tools, powewrtools, and powersave.  But Ubuntu still drains more power than my tinyxp partition02:31
Volt9000Ok, do I need to specify any special arguments when running fsck.ext3?02:32
Volt9000Or do I just run it and specify the device?02:32
SupermiguelVolt9000, run the diags from the wd page...02:32
Volt9000Sheeeeiiiiiiiiiiiit.... :(02:32
bankixVolt9000: fsck.ext3 /dev/yourdisk02:32
Volt9000Alright, I'll give it a go, thanks02:32
SupermiguelVolt9000, just a 2mb file..02:32
bankixVolt9000: But maybe it's wise to keep a backup.02:32
Volt9000Yes I do have a backup02:32
justPatrickHenWen do you have compiz enabled? try to disable it, because video card is very baterry demanding02:33
legend2440Volt9000: read post #6 http://ubuntuforums.org/showthread.php?t=36764402:33
Volt9000And in fact, funny thing, yesterday I said to myself, "Self, you need to back things up now. Do it tomorrow"02:33
Volt9000then an hour later, power outage02:33
Volt9000So, it would REALLY REALLY suck if the hard drive is dead.02:33
flapjackshey, is this the place where I can ask questions?02:33
Doug__Volt9000, what you get for talking to your self ;) next time act lol02:33
kekekeyes flapjacks02:33
Volt9000BTW, that WD page doesn't seem to be loading :(02:33
flapjackssweet. ok I'm having world of warcraft patching problems02:33
flapjacksI need to get from 2.3.0 to 3.0.102:34
Supermiguelflapjacks, woot02:34
Doug__flapjacks, check out the wine channel or their forums02:34
flapjacksI did :(02:34
flapjacksno help there.02:34
Doug__that's likely the only place you'll find help02:34
flapjacksOH wait02:34
flapjacksyou mean the irc02:34
flapjacksok then02:34
Doug__yeah they have an IRC too02:34
flapjackswhats the channel02:34
AnnonyMousehi guys. getting a weird one & don't quite know where to look. I'm running 2 turnkey-linux clients as VM's & all's good so far. installed netcat on one & telnet on another, allowed the port open on the receiving end via the webmin tool (IPTables), but I'm getting a "connection refused" error when trying to connect, even though I see it available via nmap02:34
ghostlineshi all does anyone know if rtorrent can pre-allocate files?02:34
arandflapjacks: #wine02:34
HenWenPatrick: I have Ubuntu Netbook Remix, no compiz02:35
HenWenI believe Compiz is a bunch of fancy GUI effects right?02:35
=== andi is now known as Guest11859
Doug__HenWen, yes02:35
HenWenit is just very confusing to have so many different power monitoring tools, scripts, etc.02:35
ircleuserHello, how can I partition my secondary harddrive with fdisk and do partitions of 20 gb each?02:36
arandflapjacks: Do have in mind that it's a very slow and quiet channel, so answers might take a while02:36
HenWenI am very new to ubuntu and doing everything is pretty user-friendly except trying to achieve this tweak02:36
ircleuserWhen I tried it told me sectors, im not good with sectors02:36
mazda01_HenWen: correct, compiz is for glame and pizaze02:36
yogaI sudo apt-get dist-upgrade in a console shell, but then I hit Alt+F4, now the console is gone, but the apt-get still running, how do I get it back to a shell?02:36
mazda01_if that's how you spell pisaze?02:36
smrtgyzstill trying to get youtube to work in firefox02:36
Doug__ircleuser, use gparted instead its easier02:36
smrtgyzhelp...02:36
=== ircleuser is now known as gabriel
=== gabriel is now known as gabrielp
gabrielpdoug__ im not using desktop02:37
=== saulus_ is now known as SauLus
mazda01_yoga: go back to your original shell, most likely alt-f702:37
gabrielpits a server installation02:37
AnnonyMousesmrtgyz: try reinstalling flash02:37
Doug__gabrielp, then use cfdisk it's a bit easier as well02:37
gabrielpdoug_ your a star, thank you02:37
yogamazda01_: the origional shell is gone, I hit Alt+F4 by mistake.02:38
=== Guest11859 is now known as naked_shasHa
Volt9000Supermiguel: what 2MB file? on WD's website the DOS download is 29MB....02:38
Supermiguel:P02:38
Volt9000Well I'm downloading02:38
mazda01_i get configure error. : Fatal error: no fam or gamin detected when trying to compile from source pcmanfm02:38
mazda01_any suggestions?02:38
Doug__Volt9000, quicker then a 600mb live cd :)02:38
Volt9000What's a good program to burn a bootable DVD?02:38
HenWenerr compiz is for glame and pizaze... I don't know what those are02:39
Volt9000Doug__: yes indeed02:39
HenWenI guess I can see if it is installed via package manager02:39
yogaI started apt-get dist-upgrade, can I just kill the prcocss an start over again? I lost the origional shell.02:39
Doug__Volt9000, I think there is an app called Roast? or something....02:39
Zappo justPatrick: its telling me i need boost/bind.hpp from the boost library02:39
mazda01_nevermind, just need to install the -dev of those packages02:39
Volt9000can GnomeBaker burn a bootable DVD?02:39
mazda01_Volt9000: growisofs should work02:40
Doug__Volt9000, it probably can? Is it an iso?02:40
Statix138GUYS I NEED HELP.  Where is the recycle bin on Ubantu, I did a rm -fr /etc/ and I need to get those files back02:40
SunStealerlast question for the day: is there any way i can just bind keys on my mouse easily, or do I have to create xmodmap/stuff and try/fail?02:40
mazda01_Volt9000: are you burning an iso or a dvd directory structure?02:40
HenWenAh yes I am running compiz apparently, I thought it was just Compiz fusion for fancy graphics etc.02:40
tiku-takuI'm thinking of buying a laptop for about 600€ any recommendations?02:40
jribStatix138: rm doesn't move things to any recycle bin02:40
DaZStatix138, there is no recycle bin for rm02:40
legend2440!trash | Statix13802:40
ubottuStatix138: The location of Trash has changed since 8.04, it is now located in ~/.local/share/Trash | Looking for the trash in previous versions: ~/.Trash02:40
mazda01_Volt9000: nautilus has a burn disc if you right click on an iso02:40
Volt9000ah, awesome, thanks02:40
DaZStatix138, so you're out of luck02:40
Statix138I thought Ubantu was advanced and there is no recycle bin?02:41
HenWentiku if you install ubuntu on a laptop monitor the load_cycle_count02:41
spOto move gpg keys to another system , one needs just  secring.gpg and pubring.gpg , right?02:41
KB1JWQStatix138: Yes.  That's the pinnacle of an OS's achievements.02:41
Statix138I would say file recovery is pretty neato02:41
HenWenUbuntu plus laptop power management can cause HDDs to wear out quickly02:41
Statix138and ubantu is missing it02:41
th0rStatix138: I thought humans were advanced...so why need a recycle bin?02:41
DaZStatix138, dude, you are the one who removed whole /etc with root privileges02:41
Statix138Windows ME had it after all02:41
Statix138I thought /etc/ had a virus in it02:42
jribStatix138: right click -> Move to trash   moves it to trash.  The « gvfs-trash » command moves it to trash on the command line.  « rm » does what it is supposed to: deletes things02:42
KB1JWQAhahahaha wait-- Statix138 wants rm to move to trash?02:42
KB1JWQHe should alias it that way then. :)02:42
Statix138I was told all files in linux with a .conf was a virus so I found a bunch in /etc/02:42
DaZKB1JWQ, it is possible02:42
cih997hi, how can i check which /dev/* is my sound card?02:42
Statix138and I deleted all of /etc/02:42
KB1JWQStatix138: Where are you getting your advice from?02:42
tiku-takuI'm thinking of buying a laptop for about 600€ any recommendations?02:43
DaZhe's either troll or idiot02:43
Statix138so chowder heads over at ubantu02:43
jribStatix138: just backup, reinstall, and find a new source of advice...02:43
DaZdon't feed anyway02:43
dAnonhow do I reinstall windows, so I don't mess up GRUB?02:43
Doug__Statix138, virus? Unlikely02:43
ck773oh geez...you poor dude02:43
mazda01_Statix138: i hope you're kidding02:43
KB1JWQStatix138: Engage brain before typing commands.02:43
Zappo justPatrick: what do i do?02:43
KB1JWQOr for things that are that obvious, try getting a second opinion first?02:43
Statix138So who do I need to email for them to get my files out of the recycle bin for /etc/ but I only want the good files not the viruses02:43
dAnonhow do I reinstall windows, so I don't mess up GRUB?02:44
Doug__I searched around and couldn't find much information about the Asus Xonar HDMI 1.3av, is there support for this in ubuntu? I'd really like to get LPCM out on my HTPC.02:44
* jrib goes to bed...02:44
Timitheosmy display settings don't work now that I installed the ATI drivers.02:44
nick125dAnon: I don't think you can avoid messing up Grub, so you'll have to boot a livecd and restore Grub to the MBR after you install Windows.02:44
* KB1JWQ homes Statix138 is trolling02:44
bankixkoolkat: Sorry, I'll be off in some minutes.02:44
KB1JWQhopes02:44
Statix138Doug___ if you plug in ubantu into your tv it wil give your tv a virus02:44
Timitheosit works up until i try to activatethe second monitor.02:44
koolkatbankix: wait!02:44
mazda01_Statix138: you're using ubuntu one? i am not familar with it yet, you'll have to check out the website, i am sure there is a contact us02:44
bankixkoolkat: After copying the default smb.conf to /etc/samba, please restart it with "sudo /etc/init.d/samba restart".02:45
th0rStatix138: if it is any consolation, I think you should get an award for the most entertaining problem of the week02:45
dAnonhow do I restore it nick125?02:45
ZappojustPatrick: it tells me configure: error: You need boost/bind.hpp from the boost library to run Aleph One02:45
mazda01_th0r: +102:45
bankixkoolkat: Then use system-config-samba to create a test share, readonly with access for everyone.02:45
nick125dAnon: Once you get into the livecd, sudo grub-install /dev/sdX should do it.02:45
Statix138Someone told me .conf were viruses and would turn my computer into a bomb, is that true?02:45
KB1JWQ!ops Statix138 trolling, spreading misinformation02:45
ubottuError: I am only a bot, please don't think I'm intelligent :)02:45
falseDoes Rythmbox not have the ability to play music/videos from another machine? Anyone know? I am trying to play my music from my server, prefer Rythmbox, but only Audacious is playing them.02:45
KB1JWQGah, forgot this wasn't ##linux02:45
tiku-takuStatix138: yes02:45
mazda01_Statix138: think about it, what do you think?02:45
Volt9000Goddammit02:45
dAnonnick125 sdX is?02:46
Volt9000Burned the WD CD and it doesnt work02:46
bankixkoolkat: When this one shows up under Places/Network, your samba config is fine. Then this share should be visible to the windows machines as well.02:46
mazda01_Volt9000: !BAD LANGAUGE02:46
Volt9000Ah, sorry02:46
Statix138Im 93 years old the only thing I think about is can I make it to the bathroom on time02:46
Statix138I just dont want no loonix bomb in my house02:46
Statix138and /etc/ was full of them02:46
Volt9000The stupid autoexec.bat on the CD doesnt work >:\02:46
TimitheosI have an issue with my display.02:46
kekekehow is that bad language02:46
HenWenDoes anyone here have laptop power management suggestions?02:46
nick125dAnon: /dev/sda, /dev/sdb, or whichever is it. It should be /dev/sda...02:46
Doug__Volt9000, hmm...oh well plan B, Ultimate Boot Disk, or Ubuntu LIve02:46
=== Cueball is now known as Cueball_
legend2440Volt9000: read post #6 http://ubuntuforums.org/showthread.php?t=36764402:47
mazda01_Statix138: go back to windows, there's no .conf files so you won't have to worry about your house blowing up02:47
Volt9000Yeah I'm about to burn the liveCD02:47
bankixStatix138: Sure thing, step back some yards, your computer is about to explode...02:47
dAnonnick125 how do I check it?02:47
Statix138OMG UBANTU IS MADE BY TERRORIST02:47
Doug__Volt9000, Ultimate Boot Disk has tons of testing tools, always nice to keep around02:47
Volt9000legend2440: I'll check thanks02:47
koolkatbankix: i cant just copy that file, all it has are variables in there like x and y instead of actual values. i cant go through such a long file and replace every little letter.02:47
nick125dAnon: fdisk -l02:47
Volt9000Doug__: free?02:47
Doug__Volt9000, yes02:47
nick125dAnon: https://help.ubuntu.com/community/RecoveringUbuntuAfterInstallingWindows02:48
Volt9000Awesome.02:48
Doug__Volt9000, I think it's ultimatebootdisk.org or something. Not completely sure, google it02:48
falseDoes Rythmbox not have the ability to play music/videos from another machine? Anyone know? I am trying to play my music from my server, prefer Rythmbox, but only Audacious is playing them.02:48
bankixkoolkat: What are you talking of?02:48
bankixkoolkat: http://pastebin.ubuntu.com/251129/ is a default smb.conf.02:48
Timitheoscan anyone help me out?02:48
bankixkoolkat: Where do you see variables there?02:48
Volt9000Doug__: alright, thanks02:48
Ghotifalse: use NFS to access the remote videos, perhaps?02:48
Statix138OMG smb.conf delete that, its a virus02:49
ian__I want to systematically learn to use the command line. There's lots of tutorials on the web, but I'd like to know if there's one you can actually run in the terminal itself. Anyone know of anything?02:49
mazda01_Statix138: goodbye samba02:49
Volt9000ian__ the best way to learn the command line is by doing02:49
Volt9000That's how I've been learning it02:49
DaZStatix138, stop trolling.02:49
Statix138Samba is a name we used for color folk back in the 50's02:49
th0rian__: the man pages can be displayed in the terminal02:49
Volt9000every time I need to do something, I figure out how to do it command line vs prrogram02:49
DaZPici, tq02:50
Volt9000I never use synaptic anymore, for example02:50
Ghotiian__: what Volt said.  Also, learn the 'man' command, and 'man -k <keyword>' in particular02:50
Volt9000I just use apt-get02:50
ian__I was thinking of something like vimtutor02:50
Volt9000heh02:50
Timitheosdo i need to reinstall?02:50
kerm|thow do i access an sdcard?02:50
Timitheosi need help. I'm new.02:50
mazda01_Ghoti: what does the -k option do to man?02:50
mazda01_is there a man page for man?02:50
falseGhoti: mplayer is playing the videos just fine, actually. It's just rthymbox not playing the music. "Could not open resource for reading." is the error I'm getting.02:50
GhotimadLyfe: searches by keyword. see 'man man' ;)02:50
Statix138I think Ubantu gave my other computer a virius, I just randomly got thrown out of this chat room!02:50
th0rmazda01_: type man man and find out02:50
DaZPici, he's back >:02:51
drakonikAlright. I've got a Logitech USB mic, a G35 headset. And for the life of me, I cannot consistently get it working. I had it working for about a minute, but then I realized that I had three ALSA volume control panels open and I closed all three, and then it stopped working.02:51
blognewbhi i only got 1 line of result when i ran "ps aux | grep php" is that not good?02:51
Zappowhat do i need to do to get boost/bind.hpp? with the boost libary02:51
mazda01_th0r: HA, there's a man page for man. awesome02:51
Volt9000blognewb: not if you only have one process running that has "php" in it ;)02:51
DaZZappo, boost-dev02:51
kitcheZappo: install the -dev packages for boost02:51
Volt9000esp if it's "grep php" i.e. the grep command itself02:52
Timitheoshello all02:52
fefguys i think i just got the ubantu virus02:52
Paddy_EIREHi I seem to have dramatically slower mobile broadband when using ubuntu than I do windows.. is there any way I can remedy this?02:52
fefis this like that conflicker02:52
bankixkoolkat: Now, did you manage to copy the file?02:52
th0rmazda01: there is supposed to be a man page for every command02:52
Timitheosi guess i'm muted.02:52
kekekelol02:52
Ghoti!hi | Timitheos02:52
ubottuTimitheos: Hi! Welcome to #ubuntu!02:52
Timitheosha ha...02:52
Volt9000Timitheos: we can see you02:53
Timitheosi need help.02:53
Zappokitche: ok thanks02:53
Ghoti!ask | Timitheos02:53
ubottuTimitheos: Please don't ask to ask a question, simply ask the question (all on ONE line, so others can read and follow it easily). If anyone knows the answer they will most likely reply. :-)02:53
durtTimitheos, just ask02:53
koolkatbankix: yes i did02:53
CopyWriteryes just ask02:53
koolkatbankix: but its still not working02:53
bankixkoolkat: Restarted samba?02:53
koolkatbankix: yes02:53
wetwired2hi all, I'm having a few problems with ubuntu. My main problem is, for some reason, when I transfer files over my network, either to or from, they will transfer for a second or two, and pause for about 10 seconds, then start again. Over and over. Anyone know why? Or how to fix it?02:53
ZenMastaI just downloaded a game and I'm not sure how to run it. the instructions I was given were to run "hon.sh" or "LANG=C ./hon.sh" any ideas02:53
ZappoDaz: thanks02:53
bankixkoolkat: And configured a new share?02:53
koolkatbankix: yes02:53
justPatrickis anyone having really download speed when downloading packages from launchpad?02:53
CopyWriterji got that same thing happen too with the network copying02:54
bankixkoolkat: Then please paste your new smb.conf to pastebin.02:54
justPatrick*really SLOW download speeds02:54
wetwired2Were you able to fix it, CopyWriter?02:54
zirodayZenMasta: go to the folder with hon.sh in and then do ./hon.sh in a terminal (in that folder)02:54
ZenMastaziroday: lemme try02:54
Timitheosok. I'll ask again.  I just installed Ubuntu yesterday.  My dual monitor set up worked fine until I installed the ATI drivers. now it won't let me use dual monitors and when I try to set it up through the display settings it freezes.02:55
mazda01_wetwired2: are you using 100 baseT or gigabit network?02:55
CopyWriterno i did a couple installes of 9.041 and only noticed it yesterday and today02:55
wetwired2i THINK it's a gigabit.02:55
CopyWriteri mean 9.0402:55
ZenMastaziroday: ./hon-x86: error while loading shared libraries: libk2-x86.so: cannot open shared object file: No such file or directory02:55
mazda01_wetwired2: have to tried to see what mode your ethercards are in ?02:55
zirodayZenMasta: try sudo ./hon.sh02:55
kerm|tmight a usb sound card work with ubuntu?02:55
wetwired2What mode? No, I didn't know there were different modes. Please explain02:56
ZenMastaziroday: same thing02:56
GhotiTimitheos: I wish I could help you, but I've not dealt with ATI/AMD cards in Linuxland before.02:56
bankixkoolkat: We need the pastebin url to see your config.02:56
zirodayZenMasta: I would go back and ask the authors. What game?02:57
legend2440Timitheos: are you using the the ati catalyst control center ?02:57
Timitheosyeah why?02:57
ZenMastaziroday: heroes of newerth... does it matter if I'm in x when I type that?02:57
mazda01_wetwired2: full duplex and what not02:57
gabrielphave anyone tried to virtualize Mac OS X in ubuntu?02:57
drakonikwat02:57
Timitheosis that a problem?02:57
drakonikwhy am I using 8.04?02:57
wetwired2How do I check?02:57
mazda01_wetwired2: ifconfig should show you02:57
GhotiZenMasta: it sounds like you're missing a needed library02:57
zirodayZenMasta: hmm gimme a sec02:57
legend2440Timitheos: no i thought maybe you were using ubuntus display setting app02:58
wetwired2Ok, I'm looking at the output, but I'm not sure what I'm looking at.02:58
mazda01_wetwired2: i am wrong, i am looking for the command now02:58
wetwired2I don't see full duplex listed anywhere.02:58
Timitheoswith the Control center it recognizes both displays but won't seperate them.02:58
mazda01_wetwired2: dmesg | grep -i duplex02:59
legend2440Timitheos: which ati card you have?02:59
malekHi, my usb hard drive gets unmounted and remounted when I don't use it for a while, and then when I try a command I get "ls: reading directory .: Input/output error".  Can anyone help?02:59
wetwired2[   28.039082] sky2 eth0: Link is up at 100 Mbps, full duplex, flow control both02:59
arandZenMasta: the lib file should be in the same folder as the hon.sh, is it?02:59
TimitheosRadeon HD 465002:59
wetwired2that look good?02:59
autotecgabrielp: i was wondering i virtualbox would install such mac os x, what about orignal mac os 9.?02:59
mazda01_malek: is your usb drive connected to a usb 2.0 port or the old standard02:59
ZenMastaGhoti: you mean like something on my system or something that should have been included with the game?02:59
bankixSorry, people, I have to hand over koolkat to somebody else. He has now a default smb.conf installed and configured one readonly share public accessible via system-config-samba.03:00
legend2440Timitheos: did you install the ati drivers from  system>admin>hardware drivers?03:00
justPatrickdoes anyone knows if launchpad has mirrors from where i can download ppa's packages?03:00
GhotiZenMasta: I don't see any Ubunti 'libk2' package, so I'd imagine it's something the game should have included.03:00
bankixI'm leaving now.03:00
Timitheosummm.. no, it popped up that the drivers weren't activated.03:00
Timitheosso i activated them.03:00
bankixkoolkat: Sorry. Timeout ;-)03:00
malekmazda01_: hmm, not sure.  I think it's newer - I get this from lspci: 00:1d.0 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #1 (rev 03)03:00
legend2440Timitheos: how did you install them?03:01
=== mac9416 is now known as infocop411
=== infocop411 is now known as mac9416
malekmazda01_: sorry, missed a line which says USB203:01
wetwired2It says it's in full duplex mode, and the link is up at 100 Mbps03:01
malekmazda01_: 00:1d.7 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB2 EHCI Controller (rev 03)03:01
ZenMastaarand:/Ghoti: there is a lib in the same dir as hon.sh libk2-x86_64.so and libk2-86.so03:01
mazda01_wetwired2: what about teh machine you're transferring files to? are they both linux?03:01
wetwired2No, one of them is windows xp.03:02
GhotiZenMasta: try the other command you mentioned?  LANG=C ./hon.sh ?03:02
mazda01_malek: i would say that ist's usb 2.0. does /var/log/kern.log or syslog, or dmesg show anythink about the usb activity?03:02
koolkatcan anyone tell me why my system doesnt appear in samba?03:02
Timitheoswhen it ran the update after install it popped up that the drivers weren't activated. I activated them and it downloaded and installed the drivers.  It told me to restart, and after i did it stopped working right.03:02
ZenMastaGhoti: ./hon-x86: error while loading shared libraries: libk2-x86.so: cannot open shared object file: No such file or directory03:03
ZenMastasame error as just ./hon.sh or sudo eitheone03:03
drakonikSo uh...what's the latest version of Ubuntu?03:03
GhotiZenMasta: sounds like there's an error in the shell script.03:03
legend2440Timitheos: can i pm?03:04
mazda01_wetwired2:  is it only when you transfer from linux or when you transfer to linux? do you ahve this in your smb.conf file: socket options = TCP_NODELAY IPTOS_LOWDELAY SO_KEEPALIVE SO_RCVBUF=8192 SO_SNDBUF=819203:04
Timitheossure03:04
mazda01_koolkat: what system?03:04
musikgoat!latest | drakonik03:04
ubottudrakonik: Packages in Ubuntu may not be the latest. Ubuntu aims for stability, "latest" may not be a good idea. Post-release updates are only considered if they are: fixes for security vulnerabilities, high impact bug fixes, or unintrusive bug fixes with substantial benefit. See also !backports.03:04
aranddrakonik: 9.04 stable, 9.10 development03:04
drakonikAha03:04
musikgoatheh03:04
koolkatmazda01_: what do you mean what system?03:04
drakonikSo I do have a problem03:04
drakonikI'm at 8.0403:04
malekmazda01_: yeah, there's a whole bunch of stuff about it.  Want me to post it somewhere?03:04
Zappogoodnight03:04
Ghoti!backports03:04
ubottuIf new updated Ubuntu packages are built for an application, then they may go into Ubuntu Backports. See https://help.ubuntu.com/community/UbuntuBackports - See also !packaging03:04
wetwired2it's both ways, and let me check the smb.conf03:04
drakonikAnd my apt-get is telling me I have no uggrades03:04
mazda01_koolkat: your comment was, "can anyone tell me why my system doesnt appear in samba?" so i am asking what system?03:05
aranddrakonik: Not a problem, that's the long term support release, still valid for 2 (3?) years with updates03:05
koogHello.  Is there a channel I can join for custom kernel builds, or is this the place? :)03:05
koolkatmazda01_: my computer?03:05
drakonikYes, but I'm trying to do something, and it'd be nice if I had the latest versions of say...USB microphone drivers03:05
Ghotidrakonik: ahve you tries sudo do-release-upgrade ?03:05
djdarkmanHello, can someone point me to a link that tells how can I upgrade my UNR to karmic_03:05
drakonikhm03:05
drakonikI dind't know about taht one03:06
koog(I mean help in custom kernel builds).03:06
Ghoti!karmic | djdarkman03:06
ubottudjdarkman: Karmic Koala is the codename for Ubuntu 9.10, due October 2009 - Karmic WILL break - Discussion and support in #ubuntu+103:06
drakonikHm03:06
mazda01_malek: no, just read it and see if it says anything that sticks out as being errorish (if that's a word) i can't help, it sounds like it may be a hardware issue as my jaunty install has no issues with usb, and I even use usb 1.103:06
drakonikNo. No release found.03:06
mazda01_koolkat: i am talking about the OS, windows or linux>03:06
ElronMcBongis it normal when I start wpa_supplicant manually that it does never end? I get five times CTRL-EVENT-SCAN-RESULTS, then Trying to assiciate with my router, WPA: Key negitiation completetd (4 times) and then CTRL-EVENT-DISCONNECTED 6 times. Is that normal?03:06
ZenMastaokay, well thanks guys. guess I gotta troll the hon forums to see whats up. already tried skimming and searching for that erro but no luck yet03:06
koolkatmazda01_: linux03:06
error404notfoundhow can i find which file has largest size in pwd and its children?03:06
drakonikAnyway. I"m trying to figure out what to update so my fucking Logitech headset will work. I've tweaked the alsamixer config and no matter how many times I unmute the mic (it constantly mutes itself at unpredicatable intervals), it will not record03:06
aranddrakonik: If you do want to get to 9.04 you'd have to upgrade in steps >8.10>9.04, you can do that bu running "update-manager -d" in a terminal and then using update manager.03:07
mazda01_koolkat: what's not working about your samba?03:07
malekmazda01_: yeah, there's heaps of error messages.03:07
mazda01_koolkat: are there any firewalls on any machines?03:07
aranddrakonik: please no swearing in the channel.03:07
nacho_somebody knows where can i find help to convert my kubuntu into ubuntu-lite? i think i need that cause my laptop dont support kubuntu 9,0403:07
malekmazda01_: Not sure which are the most relevant ones though...03:07
koolkatmazda01_: my system doesnt appear under networks03:07
drakonikaha03:07
drakonikthere we go03:07
mazda01_malek: can't help then, i am guessing its a hardware issue. maybe post them at pastebin.com03:07
koolkatmazda01_: there are no firewalls03:08
koogarand: That's right, let's keep our code open source, not our moth. :)03:08
Ghotinacho_: apt-get remove kubuntu-desktop03:08
drakonikHopefully the upgrades will fix this.03:08
mazda01_koolkat: within windows networks or what. i can't help if you;re not being specific.03:08
wetwired2the only part of that I have in my smb.conf is #   socket options = TCP_NODELAY03:08
blognewbhello what is the command to check if there is fastcgi installed?03:08
mazda01_wetwired2: add the rest, can't hurt anything.03:08
wetwired2ok.03:08
malekmazda01_: I'm fairly sure it isn't, because it only started when I switched from kde to gnome, unless it's a coincindence.  I'll paste it up.  Hang on a tic...03:08
wetwired2on the same line? And uncomment it?03:08
nacho_Ghoti: then i install ubuntu-lite? and thats all?03:08
Ghotiblognewb: if it's the name of a package, dpkg-query -l | grep ii | grep fastcgi03:09
mazda01_wetwired2: have you looked at the speed transfer in a iftop or similar program?03:09
Dark_WolfHello again, linux03:09
Ghotinacho_: you might want to do an apt-get autoremove afterwards, but that should do the trick03:09
blognewbGhoti: can it do a substring?03:09
gartralhello all, im having trouble partitioning a sandisk cruzer micro after removing the U3 software froma windows machine03:09
Ghotiblognewb: how do you mean?03:09
nacho_Ghoti: ty03:09
koolkatmazda01_: it doesnt appear under Networks in File Browser under the Places menu of Ubuntu03:09
Ghotinacho_: my pleasure03:09
blognewbGhoti: substring search of filename/package name03:10
wetwired2No, I haven't. The speed isn't really the problem I don't think. It says it's transfering pretty fast, it just pauses all the time and thus takes forever to get anything done03:10
koogHello, all...I'm having trouble with building a custom kernel for restricted modules.  I'm following the directions at https://help.ubuntu.com/community/CustomRestrictedModules.  When I get to the section "Compiling linux-restricted-modules" and execute that apt-get build-dep line, I don't have permission to execute the command.  Any ideas?  Thanks.03:10
donavan_has anyone tried the newest drivers from ATI ... are they any better at openGL03:10
Ghotiblognewb: in the example I have you, 'fastcgi' could be and substring you care to search for.03:11
koogdonavan_: How new are you talking?03:11
mazda01_koolkat: oh, i dont even bother with nautius places as it hasn't worked for me ever, dating back to breezy. to see your network, go to nautilus and enter this: smb://ipaddressofmachinehere    and then hit enter, it should pop up a prompt for a username and password. if you want to just see the shares that your box is sharing, enter  testparm03:11
Ghotikoog: try sudo apt-get build-dep ?03:11
autotecdonavan_: hardy or jaunty???03:11
donavan_well im using whatever the ubuntu repository has 8.something and the newest on ati's site is 9.703:12
koogdonavan_: It works fine for me, except switching users always gives me a kernel panic.03:12
donavan_running 9.04 64bit03:12
malekmazda01_: ok, I've pasted kern.log here: http://pastebin.com/d50640e2d03:12
koolkatmazda01_: enter testparm where03:12
koogGhoti: Tried that but for some reason, it installs a server header package.  I'm running generic.03:12
wetwired2Alright, it's added. I'll give that a shot. That problem isn't near as big of a headache as my main problem. For some reason, my CPU useage jumps to 100% when I'm not really doing much, and it'll stay there for some time, and mostly lock things up. Like right now, I'm on irssi in this chat, and installing updates, and if I open any program, it jumps to 100% and hangs there for a good 30 seconds, gives me a 10 second break,03:12
donavan_koog... Im the only use so that shouldnt be an issue03:12
AnnonyMouseanyone vry familiar w netcat?03:12
linuxLexmark X63 Problem: http://ubuntuforums.org/showthread.php?t=123671103:13
Ghotikoog: did you install vmware of other virtualization software?  IIRC, that moves you to a server kernel03:13
grendal_primeI got a werid one here,  I have a box i just built (ubuntu 8.04 server on an MBX box)  it will connect to the network if i allow it to use dhcp.  But if i manually assign it an ip address (via the interfaces file) it refuses to connect.03:13
koogGhoti: Hope.03:13
koog*Nope.*03:13
donavan_koog... any advice on how to do the upgrade ... any issues you ran into?03:13
autotecon my notebook with ati X1400, in hardy 8.04, no 1440x900, but max res works ok and look great to me...  on Jaunty, 1440x900 shows up there and other stuff like transparent windows works out of the box open source driver.03:13
grendal_primeis there some sort of udev cache i need to clear or something?03:13
mazda01_malek: is your usb drive an etx3 filesystem? unmount it and run fsck on it as the filesystem is screwed up03:13
mazda01_koolkat: on a terminal03:14
koogkoog Upgrade from 8.10?  I did a fresh install on that one.  Switched distros. :)03:14
koolkatmazda01_: Could not display "smb://192.168.1.3/documents/".03:14
autotecin other words, unless you want transparent windows and other visual effect in 8.04, you don't need ati's driver03:14
vinceGood evening03:15
malekmazda01_: yeah, it's a 750GB drive formatted as ext3.  I'll run fsck and see if that helps.  Thanks for that!03:15
autotecunless you need 1440x90003:15
Cacohello. Someone has done any work with vlan under ubuntu? i have seen some problems where linux tags and receives the vlans properly, but it dont show the vlan tag anywhere03:15
Volt9000Thanks everyone, it's working!03:15
Volt9000A special thanks to the person who sent me the link to that thread on the forums03:15
autotecdonavan:   9.04 then no advantage to use ati's driver with my x1400 of course.03:16
arandVolt9000: did it start after the offline (livecd) fsck?03:16
wetwired2any ideas on that problem, mazda01?03:16
Volt9000Yes03:16
Volt9000Thanks :)03:16
legend2440Volt9000: read post #6 http://ubuntuforums.org/showthread.php?t=367644.  This worked?03:16
linuxLexmark X63 Problem: http://ubuntuforums.org/showthread.php?t=1236711 any suggestions?03:16
donavan_is there a way to do a save state on my OS ... about install new drivers for video and I dont want to fight with fixing it if something goes wrong03:16
Volt9000legend2440: yes03:17
koolkatmazda01_: Could not display "smb://192.168.1.3/documents/".03:17
legend2440Volt9000: ok good03:17
=== phil_ is now known as philf
autotecdonavan:  i had serious issues with 9.04 and went back to 8.04 on my notebook.  looked much better with default install and no proprietory  drivers.03:17
arandVolt9000: I've had that saving me a couple of times ;)03:17
mazda01_koolkat:  enter smbtree in the terminal and see if documents is the exact sharename. also, what security is in your smb.conf file. user or share?03:17
Volt9000Alright I'm out, peace!03:17
donavan_autotec... yeah I havnt been real thrilled with 9.04 myself but I really dont wannt reinstall again if I dont have to03:18
mazda01_koolkat: if it's user, then you need to add your users name to smb passwd file and use the same password as your sudo password. that's what I do. issue sudo smbpasswd -a username03:18
autotecdonavan:  don't know, but the wiki site linked from ati driver download site has specific instructions.  i tried installing ati driver from apt but it didn't work.03:18
=== Hyperion2010 is now known as Hyperion2010|awa
=== Hyperion2010|awa is now known as Hyperion2010|out
philfHi, having an issue with flashplayer, since about 4 days ago, a website I was using doesn't work anymore, when I start the application, it's a photo editing online tool, I get a big blue box...the main page works, but nothing else, I've got Gnash, and adobe installed, but can't figure it out...any thoughts?03:19
timitheosok, back03:19
grendal_primethis is just really werid03:19
koogIf there isn't an abi_version line in the debian/rules file, where should I add it?03:19
wetwired2For some reason, my CPU useage jumps to 100% when I'm not really doing much, and it'll stay there for some time, and mostly lock things up. Like right now, I'm on irssi in this chat, and installing updates, and if I open any program, it jumps to 100% and hangs there for a good 30 seconds, gives me a 10 second break, and does it again, over and over. Any ideas?03:19
legend2440timitheos: ok to pm?03:19
autotec? got a friend who keeps buggin' me about shockwave in linux, anything like that these days?03:19
prohI rebuilt alsa from the source (as instructed by https://help.ubuntu.com/community/SoundTroubleshooting#ALSA%20driver%20Compilation) ... I've got a dv6, and still no sound... and when I do a sound 'test', I get a failure. What more can I do to try and figure this out?03:20
timitheosok03:20
koolkatmazda01_: my computer isnt even listed under smbtree to begin with03:20
donavan_autotec ... yeah I had horrible issues with apt and the ati drivers ... thus the last install... but I figured it was just because of several hardware changes and upgrades form 8.04 to 8.10 to 9.0403:20
musikgoatkoolkat: it sounds like you have a bad master browser03:20
Cacohello. Someone has done any work with vlan under ubuntu? i have seen some problems where linux tags and receives the vlans properly, but it dont show the vlan tag anywhere03:20
mazda01_im trying to install a different version of pcmanfm but when I ran the configure it said it installed the binary in /usr/local/bin  but when i type in /usr/local/bin/pcmanfm,   it's not even there? the one from synaptic doesn't suppost ssh and ftp so I am trying to get the experimental version of pcmanfm instralled. i can't uninstall the pcmanfm from synaptic because then it wants to uninstall lxde but obviously I need lxde as it's myh de03:21
koolkatmusikgoat: i can see another computer fine from here03:21
autotecdonavan_: that ati site has instruction which creates a .deb for the ati drivers, I went that way once in 8.04 and it worked ok.03:21
mazda01_koolkat: are you even using samba? did you sudo aptitude install samba and then configure what shares you want to share? you need to follow a guide for sharing folders via samba03:21
musikgoatright, but not yourself, which means the master browser in your worgroup has not added you to the list03:21
malekwetwired2: do you have an ATI graphics card?03:21
musikgoatkoolkat: ^^03:21
smeltserso I used Ubuntu before but it's been a while and I can't remember how to download a .tar.gz gile03:22
mlissnerhi, does anybody know an easy way to map a new hard drive so that from the OS's perspective, the two drives (the old and the new) are but one?03:22
koolkatmazda01_: yes i did03:22
mazda01_wetwired2: again, look in your logs. all answers will be in there.03:22
mlissnerCurrently, the two drives show up as two drives. One auto mounts at /bak, since that was what I had planned on using it for.03:22
musikgoatkoolkat: what OS's are in your workgroup?03:22
dkulchenkoHow can I route in such a way that if I go to (for example) http://apples.com/, I am actually browsing http://127.0.0.1:8088/?03:22
ctmjr!raid03:22
ubottuTips and tricks for RAID and LVM can be found on https://help.ubuntu.com/community/Installation/SoftwareRAID and http://www.tldp.org/HOWTO/LVM-HOWTO - For software RAID, see https://help.ubuntu.com/community/FakeRaidHowto03:22
musikgoatdkulchenko: edit /etc/hosts03:22
gartralhello all, im having trouble partitioning a sandisk cruzer micro after removing the U3 software froma windows machine03:22
koolkatmusikgoat: linux and linux03:22
smeltserhello?03:23
linuxgartral: did you try both qtpart and gparted?03:23
dkulchenkomusikgoat: does /etc/hosts work with ports?03:23
musikgoatkoolkat: suprising, i would have thought there would be an XP in the mix :p03:23
musikgoatdkulchenko: sorry, didn't catch that, no03:23
ghostlineshi all does anyone know if rtorrent can pre-allocate files?03:23
dkulchenkomusikgoat: then is there any alternative way to do this, other than /etc/hosts?03:23
musikgoatdkulchenko: you would likely setup iptables redirection, but i'm not knowledgeful on that03:24
koolkati dont dont get it03:24
musikgoatkoolkat: can you restart samba daemon on either of those machines?03:24
dkulchenkomusikgoat: i'll look into that, thanks.03:24
donavan_autotec ... Im just going with "sh ./drive.run"03:24
spOi could do a gpg --export KEY -ao public.key   to create exportable keys or i could simply copy   secring.gpg and pubring.gpg  (from the gpg config directory)  if i want to backup keys or anything like that, right?03:24
musikgoatdonavan_: drop the ./ when you use the sh call03:25
=== Cueball_ is now known as Cueball
koolkatmusikgoat: already did03:25
musikgoatodd03:25
autotecdonavan_: the wiki or ubuntu community link from ati download site has easy instructions to create and install .deb's from the ati driver download03:25
donavan_autotec... why bother though ... is there some advantage?03:26
linuxghostlines: not the rtorrent shipped with ubuntu03:26
mazda01_if I want to install a binary package over a synaptic installed program, would I need to run the ./configure and tell it to install the binary in /usr/bin/  so that it overwrites the old pcmanfm binary?03:26
donavan_autotec besides having a .deb file and the easy install?03:27
linuxmazda01: i believe it usually overwrites by default since most programs share the same destination directory03:27
autotecnot really,  but the install prog is not easy03:27
bridgeis it possible to share my wifi connection over ethernet by connecting to a router and bridging?03:27
donavan_musikgoat... according to ati's howto I am supposed to use the ./  so thats why I put it there03:27
linuxbridge: it is using iptables, but i have always succeeded in doing that in windows, anyone else here know how in linux?03:28
linuxLexmark X63 Problem: http://ubuntuforums.org/showthread.php?t=1236711 any suggestions?03:28
mazda01_linux: but after I ran the configure, it said it would install the binary in /usr/local/bin   but i want it to overwrite the originally installed pcmanfm03:28
autotecdonavan_: and when i tried installer had many options I did not know what to choose.03:28
musikgoatdonavan_: ok03:28
musikgoatdonavan_: it wont hurt03:28
linuxmazda01: try ./configure --prefix=/usr/bin && make && sudo make install03:28
donavan_autotec... ahh you did the custom install... im cheating going with the autoinstaller03:29
Clintegerhi i'm on 8.04 and I can't upgrade from firefox 3b403:29
* shamm is currently in console (no X) trying to install nvidia driver -- the latest downloaded driver is 185.18.31 and my ubuntu is running 180.44. I couldn't find 185.* in apt-cache search where can I download 185.* for all nvidia tools?03:29
autotecdonavan_: anywayz, i had to reinstall then i went the create the deb's route from the howto site.03:29
stlsainthey i have a issue involving sudoer...it says im not in the list...any help03:29
mazda01_linux: will try, thanks03:29
donavan_musikgoat ... yeah I though I could just do sh on the .run file but it was saying otherwise so I listened03:30
mlissnerHi, I asked a second ago, but to no reply. I have two drives in my server, one at / and the other mounted at /bak. Is there any way to make them work logically as one drive would?03:30
shammmlissner: I doubt you can.03:30
musikgoatmlissner: only with raid03:30
stlsaintmlissner: thru raid maybe03:30
musikgoat!raid | mlissner03:31
ubottumlissner: Tips and tricks for RAID and LVM can be found on https://help.ubuntu.com/community/Installation/SoftwareRAID and http://www.tldp.org/HOWTO/LVM-HOWTO - For software RAID, see https://help.ubuntu.com/community/FakeRaidHowto03:31
PSiL0quick question: I want to display the output of a bash command, it works with this: echo HM320JI "     " +"$HDTEMP".0°C -- However, it does not display in a widget I use.. This works: 'printf "HM320JI:     +";nc localhost 7634 | cut -c27-28', but how can I tack on degree C at the end?03:31
musikgoatmlissner: but that would involve re-installing/formatting03:31
stlsaintstlsaint@stlsaint-laptop:~$ sudo apt-get update03:31
stlsaint[sudo] password for stlsaint:03:31
stlsaintstlsaint is not in the sudoers file.  This incident will be reported.03:31
stlsaintstlsaint@stlsaint-laptop:~$03:31
stlsaint 03:31
FloodBot2stlsaint: Please don't flood, use http://paste.ubuntu.com to paste, don't use Enter as punctuation.03:31
stlsaintsorry about that03:31
Clintegerstlsaint, next time, ask "how do I add my user account to the sudoers file?"03:31
mlissnermusikgoat: OK, maybe I should rephrase. By work logically as one drive, I want big files to get split across the drives. That's possible, right?03:32
linux!sudoers | stlsaint03:32
ubottuSorry, I don't know anything about sudoers03:32
stlsaintthanks i will try right now03:32
koolkatwhats that networking called that's done over the internet?03:32
GhotiPSiL0: could you pastebin your script?03:32
musikgoatmlissner: only via raid03:32
ToStItOs!external modem03:32
ubottuSorry, I don't know anything about external modem03:32
GhotiPSiL0: that way we can see where to add the °C03:32
mlissnermusikgoat: and that means reinstalling?03:32
autotecubuntu tip 1:  no better theme than original and I learn that some pixmaps themes can have memory leaks, don't ask me how.03:32
mazda01_stlsaint: vi sudoers03:32
linuxClinteger: its mostly accidental (theres no stopping or slowing a paste once commenced)03:32
g-locyo check dis out03:33
musikgoatmlissner: that would mean spanning the two volumes, which requires a fresh file system, so yes03:33
g-loci was takin a shit03:33
g-locand like03:33
mazda01_stlsaint: vi /etc/sudoers03:33
Ghoti!language | g-loc03:33
ubottug-loc: Please watch your language and topic to help keep this channel family friendly.03:33
mazda01_g-loc: langauge please03:33
mlissnermusikgoat: bleh. OK, well thanks for being the bearer of useful (but bad) news. Back to the drawing board.03:33
PSiL0Ghoti: sure thing...03:33
g-loci shot poop thru the floor03:33
shammmlissner: you would lose saved files on those drives.03:33
stlsainthow do i add my user account to the subdoers file?03:33
autotecubuntu tip 2:  if LTS is working and no problems, no need to upgrade and create problems.03:33
g-loclike i cant believe it03:34
Ghotistlsaint: use visudoers, the sudoers file has examples to follow.03:34
musikgoatstlsaint: you have to have root privileges, eg another account that has those privileges03:34
g-localso how do i linux03:34
koolkatg-loc: you have to learn how to count first03:34
Ghotig-loc: 'linux' is a noun, not a verb.03:34
mazda01_autotec: forget LTS, it's bleeding edge or no edge at all. ha ha ha03:35
stlsaintso i have to create another account to add my main account?03:35
Qu4R0whow to connect to wireless using command line in terminal?03:35
g-loci cant numbers03:35
ToStItOsHow is a external dial up modem set up with Gnome ppp03:35
stlsaintwhat command will i use to add my main account after i create my other account03:35
Ghotistlsaint: your 'main' account should already have sudo privileges.03:35
linuxQu4R0w: man iwconfig03:35
autotecmazda01_: screw that, if i want bleeding edge i would use fedora :(03:35
musikgoatstlsaint: you can try adding your account to the admin group03:35
stlsaintmusikgoat...how?03:35
Ghotiautotec: not Gentoo? ;)03:35
Qu4R0wlinux: nice ^^03:35
donavan_well I upgraded to the new ATI drivers it killed my X session and locked my computer but a hard reset fixed that ... now I am up and running with the new drivers and they are working beautifully no more flashing 3d grpahics03:35
autotecmazda01_: you like fedora if you like upgrade every 6 months and start all over again.03:36
musikgoatstlsaint: system -> admin -> users and groups03:36
macoQu4R0w: first stop network manager ("sudo service NetworkManager stop") then "sudo iwconfig <interface> essid 'linksys'" replacing linksys with your AP and <interface> with whatever "iwconfig" says is your wireless interface03:36
Ghotistlsaint: do you see admin when you  run 'groups' at a terminal?03:36
mazda01_linux: when I ran that command it said it would install teh binary in /usr/bin/bin   so i am re-running teh command with just --prefix=/usr03:36
musikgoatstlsaint: then unlock03:36
autotecGhoti: Gentoo!!  hey, i don't have 2 days to install this thing;)03:36
linuxmazda01: ok, if you have troubles, re-extract the tar and try it03:36
macoQu4R0w: if you need wep, iwconfig's manpage will explain. if you need wpa, i can explain that one03:36
mazda01_autotec: no, i like ubuntu which releases a new version every 6 moths03:36
Ghotiautotec: it installs a lot faster these days ;)03:36
Qu4R0wmaco: tq..really tq03:36
foobarbecueHi. I'm having trouble mounting a filesystem to /dev/loop0 using losetup. Trying to follow instructions at http://tinyurl.com/my25eh . However, I get "/dev/loop0 does not exist". Do I have to create it first?? If so, what do I make it, a blank text file?03:36
mazda01_moths=months03:36
PSiL0Ghoti: http://pastebin.com/d6d62185103:36
stlsaintgroups in termainal gives me... stlsaint vboxusers03:36
timitheosok03:36
ToStItOsHow do I set up my internet connection with the external modem and gnome ppp03:37
zmdwjx1981all speaking in english ?03:37
foobarbecuehai, so desu yo03:37
autotecGhoti:  last time i try gentoo, half me stuff don't work at all and i hate compile modules and kernel.03:37
musikgoatstlsaint: after you unlock (and enter your password), you should select your account, and click properties03:37
mazda01_zmdwjx1981: english is good03:37
linuxToStIt0s: is it a parallel, serial, bluetooth, or usb external modem?03:37
gartrallinux: both. whent started from the terminal, give multiple03:37
ToStItOslinux: serial03:37
stlsaintusers and groups says i dont have permission to access03:38
mazda01_foobarbecue: it probably needs to be a dir. so it would sudo mkdir03:38
gartrallinux: Could not stat device /dev/sdb - No such file or directory. errors03:38
musikgoatstlsaint: hmm, then you are in trouble03:38
autotecGhoti:  hey like a browser war, latest greatest chromium or whatever, but why bother when firefox simply works great.03:38
PSiL0Ghoti: As you and everyone else can see, I would like to add a degree C at the end of the line (http://pastebin.com/d6d621851)03:38
ToStItOsdoes my pc automatically detect it when I power the modem up03:38
linuxgartra: you mounted it?03:38
linuxTostIt0s: sorry, i only have experience with bluetooth modems03:38
GhotiPSiL0: try the command I added to the bottom:  http://pastebin.com/m565f7b5103:38
=== shamm is now known as LinuxGold
ToStItOsah ok03:38
stlsaintlol...that sucks03:38
ToStItOsnp linux03:39
stlsaintany advice?03:39
gartrallinux: yes, but it mysteriously unmounts itself before the write03:39
zmdwjx1981 mazda01_:  my english is poor03:39
foobarbecuemazda01_: that's what I tried at first, but then I got "/dev/loop0: Is a directory"03:39
autotecUbuntu tip 3:  if ain't broke, then don't break it :)03:39
Ghotiautotec: because I like trying new and different things? :)03:39
linuxToSIt0s: just guessing though it doesn't, if it does, its through HAL03:39
PSiL0Ghoti: That's it!  THanks a million man!03:39
foobarbecuemazda01_:  which makes me think it's not supposed to be...03:39
musikgoatstlsaint: do you know the root password?  you can try to "su -"03:39
mazda01_foobarbecue: that means that the directory is already there03:39
Ghotiautotec: though you'd need to to a lot of convincing to get me to try an RPM-based distro again ;)03:39
musikgoatstlsaint: but unless you changed it, that would be locked up03:39
stlsaintsu with what cmd03:39
GhotiPSiL0: no problem!  That'll be €8 please.03:39
musikgoatstlsaint: just su and dash03:39
linuxgartral: one of those two programs usually works for me, i have never had both of them fail unless the HD was bad03:39
PSiL0Ghoti: lol03:40
ToStItOsI might just have to wait and play with it when I get it03:40
mazda01_stlsaint: you're going to have to boot up a recover session and it'll boot you into root.03:40
autotecGhoti:  not me, i drive a 93 dakota (rescued it out of junk yard).03:40
foobarbecuemazda01_: http://paste.ubuntu.com/251144/03:40
mazda01_stlsaint: then it'll let you add your username to the sudoers file03:40
Ghotiautotec: kudos for the ultimate recycling program :)03:40
gartrallinux: the hardrive reads, and has files on it, but i cant read the fires, or add more03:40
stlsaintwhat cmd do i use to add myself to sudoers file?03:40
MrSiebelCan anyone tell me a good site for projects in ubuntu like howtoforge.com?03:40
Ghotistlsaint: visudoers03:40
linuxgartral: i take its fat16 or fat32?03:41
=== Nightw0lf is now known as Nightwolf
autotecGhoti:  fedora not that bad, if you don't mind a lot of updates and dist upgrade, boy they move way too fast.03:41
gartrallinux: fat3203:41
foobarbecuemazda01_: that's what I get if I create the directory. No loop created, whether I start with a directory or start with nothing.03:41
mazda01_foobarbecue: why in the world are you trying to use a swap file over nfs?03:41
musikgoatstlsaint: in your situation, you would need to follow mazda01_'s advice03:41
QuatrokingHi03:41
Ghotiautotec: Meh.  I've been caught in RPM hell too many times.  I hvae heard good things though, TBH03:41
foobarbecuemazda01_: because I only have 16mb on my embedded device and that's not enough to run apt-get03:41
Ghoti!hi | Quatroking03:41
ubottuQuatroking: Hi! Welcome to #ubuntu!03:41
foobarbecuemazda01_: and cross-compiling is a pain03:41
linuxgartral: maybe its the first version of fat32 (not the modern one), i know i had one HD that none of the software in linux would repair, have you tried repairing it with fat repairing software for linux?03:42
Ghotigartral: perhaps the filesystem is mounted read-only?03:42
musikgoatautotec: really? like more than every 6 months?03:42
musikgoatautotec: i don't think so03:42
mazda01_foobarbecue: ah, sorry. i see. so do you have the nfs shared out like the directions to the link you pasted. i have never done this so I am only trying to help from what I read03:42
QuatrokingI jsut installed 9.0.4 after abandoning Ubuntu for far too long, and I noticed that the front audio-out isn't working03:42
autotecwhat was that distro i tired long ago, turbo linux 4 i think, look good then they went gnome and started looking like everybody else.  but v 4 was awesome.03:42
QuatrokingJust*03:42
stlsaintalright guys i will try and if no go than ill be back shortly ....thanks musik and mazda03:42
linuxGhoti: ask him to check the stab or the file that sets the mounts upon boot03:42
mazda01_stlsaint: np03:42
gartrallinux: Ghoti no, i formatted it originally on a win xp pro sp2 machine, and about it being read only.. i doubt it03:42
QuatrokingNow, I have no idea how to fix this. Anyone?03:42
musikgoatstlsaint: gl03:42
zmdwjx1981who is china?03:43
Ghotigartral: could you pastebin the output of 'mount' please?03:43
foobarbecuemazda01_: that's alright, thanks for your help. you indirectly led me to solve my tftp problem earlier, by the way03:43
LinuxGoldwhat is libcuda?03:43
gartralGhoti: ok, but im telling you, this drive isnt showing up03:43
gartralectl (rw)03:44
musikgoatLinuxGold: i would assume its the libraries for the cuda GPU language03:44
LinuxGoldok03:44
gartralGhoti: http://gar.pastebin.com/f7941d1703:44
QuatrokingNobody?03:44
gartral!anyone | Quatroking03:44
ubottuQuatroking: A large amount of the first questions asked in this channel start with "Does anyone/anybody..."  Why not ask your next question (the real one) and find out?03:44
musikgoatQuatroking: repeat please?03:44
LinuxGoldok, looks like nvidia didn't include cuda GPU language for 185.*03:45
Quatrokingmy front audio ports don't work03:45
mazda01_foobarbecue: oh, cool. so what are you going to do about the nfs share as swap?03:45
Quatrokingand I have no idea to get them to work.03:45
LinuxGold-> Unable to access backed up file '/usr/lib/libcuda.so.173.14.16'03:45
LinuxGoldand error runs on...03:45
Ghotigartral: okay, how about this:  sudo fdisk -l03:45
Ghotigartral: does the drive show up in that output?03:45
autotecGhoti:  Progeny Linux was great distro, went bust though.  http://en.wikipedia.org/wiki/Progeny_Linux_Systems03:46
musikgoatQuatroking: do you know that the front audio works in other OS's?  e.g. that the wires are connected to the mobo?03:46
LinuxGoldbrb -- booting using standard SVGA drivers03:46
mazda01_Quatroking: ubuntu now uses pulseaudio server, have you checked gnome alsa mixer to ensure that your volumes are all turned up>03:46
QuatrokingThey work fine in Win7 and Vista.03:46
Quatrokingand all my volumes are turned on 100%03:46
blognewbGhoti: hi what was the command you gave me again sorry substring search of filename/package name03:46
Ghotiblognewb: dpkg-query -l | grep ii | grep string03:47
blognewbGhoti: thank you so much03:47
Ghotiblognewb: my pleasure!  That'll be ¥80 please. ;)03:47
autotec? i got Stani's Python Editor install, looks great.  Is this what real developers use?03:48
blognewbGhoti: i give cheap blowjobs03:49
timitheosk03:49
Ghotiblognewb: Sorry, that position has been filled.  Also, let's keep this channel G-rated, shall we? :)03:49
cosmic_karmahi how do i stop like the automatic updates?03:49
blognewbGee thanks03:49
Ghoticosmic_karma: it shouldn't be doing any automatic updates without your blessing.03:50
musikgoatlol, Ghoti, that made the room go silent03:50
musikgoatunless i'm just lagging03:50
Ghotimusikgoat: I'm a discourcidal maniac :)03:50
musikgoatoh, and i was03:50
cosmic_karmathe update manager keeps nagging me popping up rrandomly03:50
zmdwjx1981:'(03:50
cosmic_karmaany way to disable from gui or terminal code to copy?03:51
ToStItOsjtaji are you still here got a question03:51
gartralGhoti: no, it does not, untill i reinsert it03:51
=== marvinp is now known as killring
lilyim using ubuntu904 and after installing an update this morning i now have no browser avaliable. cd someone help pls03:51
musikgoatcosmic_karma: you can stop it in gconf-ediot03:51
Ghoticosmic_karma: system -> administration -> Software Sources -> Updates tab.  Uncheck 'em all.03:51
=== killring is now known as marvinp
musikgoat*gconf-editor03:51
musikgoatGhoti: that wouldn't be good03:52
smeltsercan someone explain to me how to download a .tar.gz file?03:52
cosmic_karmathanks03:52
autotecGhoti: that bad idea, no security updates?03:52
linuxUpdated 21:51, Lexmark X63 Problem: http://ubuntuforums.org/showthread.php?t=1236711 any other suggestions?03:52
cosmic_karmathat was the one i was gonna do03:52
Ghotimusikgoat: cosmic_karma wants to not get any more update notifications. On its head be it.03:52
musikgoatGhoti: cosmic_karma is referring to the auto pop up03:52
cosmic_karmaauto pop up is annoying03:52
ctmjrsmeltser: download it like any other file03:52
autoteccosmic_karma: wish it out into the corn field...03:52
musikgoatcosmic_karma: Apps->Update Notifier. On the right, unchecked the auto_launch box.03:52
cosmic_karmalmao03:52
gartralGhoti: ok, now that i reinserted it, it *does* come up an *i* flagged as rw03:53
Ghoticosmic_karma:  musikgoat: autotec: As always in Linuxland, there's more than one way to skin a cat :)03:53
Ghotigartral: now that it's rw, can you write to the drive?03:53
cosmic_karma yea im a noob but i love ubuntu03:54
gartralGhoti: no.. it "dissappears" again03:54
cosmic_karmaanhd i love how everyone helps03:54
cosmic_karmatahnks03:54
cosmic_karmathanks03:54
Ghotigartral: Drat.03:54
musikgoatGhoti: i agree, although the analogy would be, my directions skin a cat, your directions boil the cat, which gets the fur off as well03:54
gartralGhoti: it was always rw... but it does this same thing on linux mac and windows03:54
musikgoatGhoti: :P03:54
linuxsmeltser: take the URL from Firefox and right click, save as (or copy the URL and in terminal wget <url.tar.gz>); to extract tar -xvf *.tar.gz03:54
autotecsince there no linux virus, if didn't have to work tomorrow i would stay up all night and create one.  wife say it's bed time, later dudes...03:54
Ghotimusikgoat: in the end, the cat is still dead ;)03:54
Ashfire908Hi, when I run Nexuiz and start a match, at the end of loading, my system "breaks". I can't do anything. If i try to switch ttys nothing on screen happens, ctrl-atl-delete does nothing useful, and the only way I can fix it is by restarting with the power button (hodling it) or SysRq keys.03:55
cosmic_karmagood night03:55
neoTheCati know this question might be really generic, but for some reason, out of the blue, urbanterror has become unplayable, in terms of being really slow.  has  anyone seen this kind of thing happen?03:55
autoteci chk slashdot tomorrow to see if any of these idiots create a linux virus.03:55
linuxAshfire908: try Alt+Ctrl+Backspace?03:55
Ashfire908linux, that's disabled in 9.0403:56
GhotineoTheCat: hard to say..  Try running htop (or just top) in the background, and see if it's CPU-related perhaps?03:56
gartralAshfire908: sounds like theres a problem with your Nexuiz, are you running the 2.5.1 or ubuntu repos client?03:56
philfHi, having an issue with flashplayer, since about 4 days ago, a website I was using doesn't work anymore, when I start the application, it's a photo editing online tool, I get a big blue box...the main page works, but nothing else, I've got Gnash, and adobe installed, but can't figure it out...any thoughts?03:56
musikgoatabsolutely03:56
autotecopps, there is a linux virus wicd sure enough updated itself and now don't work.03:56
linuxAshfire908: darn, all the good things taken away in 9.0403:56
Ghoti!dontzap | Ashfire90803:56
ubottuAshfire908: To re-enable the Ctrl+Alt+Backspace combination that restarts your X server, you can install the "dontzap" package and use the command « sudo dontzap --disable ». The combination Alt+SysRq+K can also be used to obtain a similar effect.03:56
mazda01_neoTheCat: does top show any process taking a lot of cpu? what does free -m show? did ou upgrade lately? it could have changed graphics drivers on you. many possibiliteis03:56
autotec;)03:56
Ashfire908gartral, no, nexuiz is a trigger. It's something with my graphics.03:56
gartralAshfire908: are you on an Nvidia card?03:57
dkulchenko How can I use iptables in such a way that any request to http://randomtext.com/ goes to 127.0.0.1:8089 (I would use /etc/hosts, but it does not support routing to a port).03:57
jedclinux, ctrl + alt + backspace is really easy to enable again03:57
Ashfire908gartral, no, intel...03:57
gartralAshfire908: AHHH.. intel imbedded graphics.. wonderful..03:57
linuxjedc: by default hitting ctrl+alt+backspace three times quickly should enable it, nothing harder03:58
gartralGhoti: /dev/sdb1 on /media/BETHDRIVE type vfat (rw,nosuid,nodev,uhelper=hal,shortname=mixed,uid=1000,utf8,umask=077,flush) that line disturbs me for some reason03:58
thiebaudeAshfire908: i have had my trials with intel03:58
LiNeTuX<dkulchenko>: you can use /etc/hosts, but point to 127.0.0.2, then forward port 80 to 127.0.01:808903:58
basslinerez, so how do i avoid that ubuntu installs some testing version of firefox (shiretoko, minefield) just because i aptitude upgrade?03:58
musikgoatlinux: add that to the ubuntu brainstorm03:58
Ghotigartral: that looks normal to me03:58
linuxmusikgoat: adding03:59
Ghoti(I, for one, can't understand why they disabled C-A-BkSp to bekin with)03:59
ghostdogdo any of you have experience using samba to share files from a computer running ubuntu?03:59
blognewbhey is it ok to reinstall the same version of PHP even if i have already one in the box? I'll do it to integrate FCGI/FPM.... hello?03:59
gartralGhoti: ok, anything else you can think of?03:59
Ghotigartral: sorry, not off the top of my head :(03:59
musikgoatbassliner: umm, you uninstall the beta software?03:59
neoTheCatmazda01_: it looks like urbanterror is taking 100% for some reason.  i am going try downgrading to nvidia driver 173, instead of 18003:59
Ghotighostdog: I have a working SMB share; what can we help you with?04:00
musikgoatbassliner: aptitude upgrade will upgrade what you have installed04:00
gartrallinux: what would you use to repair the partition table?04:00
Ghotigartral:  fsck?04:00
dkulchenkoLiNeTuX: thanks! that would work.04:00
Ashfire908gartral, I also had this issue with Gentoo.04:00
temporarytao_anyone know of a good electronics layouting program like ORCAD but for linux?04:00
ghostdogGhoti: i tried creating a share on my linux computer using the file browser. it shows up on my other computers, but i cannot actually log into it04:00
LiNeTuX<dkulchenko>: /etc/init.d can be your friend there as well04:00
gartralGhoti: fsck hangs04:00
kapilgartral: "parted" perhaps.04:00
ghostdogGhoti: i'm using the right username and password but it just doesn't work04:00
temporarytao_i know there's a free version of eagle but it just sucks to use something that's been limited04:01
Ashfire908gartral, one of the reasons I'm using ubuntu (switched back) is this issue, which appeared after an update in gentoo occured.04:01
jcapinchay can anyone tell me how to get android working on virtualbox on ubuntu?04:01
GuiriI can't seem to browse the /var/www/ using the default apache2 install from my DynDNS name04:01
GuiriCan someone help me?04:01
gartralAshfire908: the intel drivers in Linux.. (that's Gentoo, redhat, fedora, debian, ubuntu...) is confirmed borked, and intel has said basically little more than "Meh, more reason to use windows"04:01
dkulchenkoLiNeTuX: how would i go about forwarding from 127.0.0.2 to 127.0.0.1:8089 (I am totally new to iptables)04:01
cosmic_karmahow do i get /list to show chans by size, its been so long since i was a regular irc user?04:02
Ashfire908gartral, any solution?04:02
neoTheCatjcapinc:  what problems are you having?  it pretty much worked out of the box for me?04:02
cosmic_karmanever used xchat, used to use excursion back in the day04:02
LiNeTuX<dkulchenko>: I'd just use a port forward w/init.d.  ... um, I'll start a sidebar w/you and explain04:02
Ashfire908gartral, besides getting a new card or coding a better driver04:02
gartralAshfire908: downgrade to 8.10 or an LTS release04:02
Ghotighostdog: Hand a sec, I'll have some things for you to try momentarily04:03
ghostdogok04:03
Ashfire908gartral, uh... can I just downgrade the driver?04:03
GuiriI'm not sure what else to do. ufw has port 80 open but I still can't see the index.html in the /var/www/04:03
MindLesshi there04:03
myselfyou'r ea god04:03
musikgoatGuiri: can you see localhost from teh webserver?04:03
gartralAshfire908: not without recompileing the kernal, its hardcoded into the kernal structure04:03
cosmic_karmanevermind xchat is pretty sweet04:03
XerranAnyone in the room using conky-colors? I can not get weather working04:03
jcapincneoTheCat, I downloaded a .vdi.bz2 and extracted it, started running it and I get GRUB loading stage 2... forever04:03
MindLessguyz is anybody have knowledge about clam sound library04:04
Guirimusikgoat: Webserver is a friend's machine in another state that I'm helping him setup. But I'm SSHed in under the dyndns name04:04
GuiriSo I know it resolves04:04
Ashfire908gartral, suppose I did that... (i haven't but I can, after all I used gentoo)04:04
spOi could do a gpg --export KEY -ao public.key   to create exportable keys or i could simply copy   secring.gpg and pubring.gpg  (from the gpg config directory)  if i want to backup keys or anything like that, right?04:04
musikgoatGuiri: set up a local tunnel... ssh -L 80:localhost:80 account@yourfreind04:04
musikgoatGuiri: then you go to localhost on your machine04:05
gartralAshfire908: well... you would have to find a patch and a copy of the previus driver's source... beyond  that, im lost04:05
=== kaie is now known as Guest43439
neoTheCatjcapinc:  which virtualbox version?  i'll check my settings....04:06
Guirimusikgoat: Yes I can see localhost now in the browser.04:06
GuiriWhy can't I see it from the outside? Some setting I've forgotten?04:06
musikgoatGuiri: and you can see index?04:06
musikgoatGuiri: prolly lan router port forwarding04:06
GuiriYeah, I have the It Works! index.html04:06
Ashfire908gartral, ok then. At least I have a direction to go in now.04:06
GuiriIt's in the DMZ. I can see each port with a portscan04:06
musikgoatGuiri: or dsl modem/router or something04:06
ZzyzxQ: how to get paravirtualization option in Virtual Machine Manager to be available?04:06
jcapincneoTheCat, standard ubuntu 8.10 repository version, 2.0.4_OSE04:06
gartralAshfire908: also having recompiled your kernal means the Ubuntu community cant help you as fully04:07
th0rGuiri: some isp's block port 80 for private accounts.04:07
Guirimusikgoat: Okay. I'll check i tout04:07
musikgoatGuiri: dmz's sometimes suck on home routers... but i would blame it on that, or the webserver doesn't have its route setup04:07
musikgoatGuiri: so its not sending traffic out04:07
musikgoatGuiri: but i would think he would know he cant get to the internet04:07
neoTheCatjcapinc: i am runnning 3.0.4.  maybe that has something to do with it...04:08
MrPiracycan i set grub to launch vista directly without using it's builtin bcd?04:08
Hilikushow can i reset $PATH without loging out?04:08
web_sohumis there any way to use dpkg or apt locally?04:08
musikgoatth0r: ir right too... but stateside, thats less and less04:08
Ashfire908gartral, harder to get help or a system that is prone to essentally crashing?04:08
VeinorFOr some reason, whenever I boot Linux, I can't get sound until I kill pulseaudio.04:08
jcapincneoTheCat, I would tend to agree with you, I believe many changes were made in the new version, including 3D support04:08
Guirimusikgoat: Thanks much for the help. I'll check ou tthe router04:08
VeinorAnd then start it up again.04:08
gartralAshfire908: i had to recompile the kernal back in 8.10 so my sound cards wouldnt conflict04:09
musikgoatHilikus: you can source your environment  source /etc/environment04:09
musikgoatHilikus: i don't know if it clears added ones though04:09
Hilikusmusikgoat: perfect!04:09
musikgoatGuiri: yw04:09
stlsainthey musikgoat im back but with a story of success04:09
hanasakiI am looking at backup options... how long will data stay intact on a hardrive that isn't used and sits? on a usb stick?04:10
musikgoatstlsaint: you got sudo?04:10
stlsainti got sudo!!!04:10
musikgoatgood04:10
jcapinchanasaki, either is probably permenent, flash is more reliable04:10
stlsaintthanks...now im here to offer my services to those in need...04:10
LiNeTuXHeh.  "Probably Permanent"  "Jumbo Shrimp"04:11
hanasakiI hear CD/DVD is only about 5yrs?04:11
musikgoatlol04:11
gartralhanasaki: NAND flash has a 10 year shelf stability... soo.. as long as you plug it in for an hour every 8 or so years, you shouldnt have too worry04:11
hanasakiNAND?04:12
gartralhanasaki: most flashdisks have NAND flash arrays04:12
hanasakijust plug it in? or do you need to actively read everything for a  refresh04:12
gartralhanasaki: just plugging it in will do04:12
stlsainti just made the final ubuntu jump...erased the triple boot of xp now all i got is UBUNTU!!04:12
hanasakigartral:  read this.... http://blog.ironkey.com/?p=59504:12
cosmic_karmai just instaled jaunty and i had a problem with hibernate, since i rebooted my desktop untitiled folder is gone any suggestions where it could be now?04:13
musikgoathanasaki: what most flash is... wikipedia nand flash and nor flash04:13
stlsainton two partitions04:13
jcapincWould everyone here agree that that flash is the next standard in mass storage technology?04:13
LiNeTuXjcapinc: no.  unproven.04:14
stlsaintuh it shows promise but...still has work to do!!04:14
cosmic_karmaguess i didnt really reboot as much as kinda hold the power button in a fewtimes until it let me log in again04:14
musikgoatjcapinc: not persay, but thats the direction currently04:14
=== miguel_ is now known as Guest82931
hanasakijcapinc:  you mean solidstate HD?04:14
jcapincyes04:14
Guest82931hello i want to know how to make my icons be in lines and not all over the place... thankyou04:15
temporarytaoanybody know of a good linux logic circuit prototyping program04:15
stlsaintuh click and drag!?!?04:15
edbianGuest82931: Right click "clean up by name"04:15
stlsaintor that04:15
musikgoatjcapinc: when intel got into the business, that saw a big boost in the likelyhood of it being a standard, but we will see04:15
Guest82931where do i right click. thanks04:15
edbianGuest82931: Anywhere on the desktop.  Just no on an icon.  You are using gnome right?04:16
Guest82931oh i see thanyou\04:16
stlsaintdesktop04:16
jcapincthanks for all your thoughts04:16
edbianGuest82931: No offense but isn't that obvious?04:16
lamebotwhy do i have to reset my clock every time i turn off my computer?04:16
Guest82931yes sorry. i got it04:16
cosmic_karmahibernate worked in hardy but had an error message . it always worked well thoug. I had my powerstrip unplugged for a week and when i powered it on it was right where i left off04:16
edbianGuest82931: NP! :)04:16
temporarytaolamebot, dead bios battery?04:16
gartralhanasaki: yea, i knew that.. that's why i dont use flashdrives if at all possible04:16
musikgoatlamebot: you might need to replace your cmos battery04:16
edbianlamebot: What do you mean?  Is the system telling you to set it?  Is it wrong when you restart?04:16
lamebotdoubt it, its a pretty new computer04:17
cosmic_karmajaunty froze up after i hibernated from lastnight and unplugged the strip cuz of tstorms04:17
hanasakigartral:  because they degrade?  so what do you use and why?04:17
john_reWhat's the suggested way to get java (to enable firefox to do java. FF plugins?) - 1) from the ubuntu package? which package - which package name? 2) fron sun?04:17
=== brady is now known as gr3yf0x
stlsainthibernate is quirky like that....try to stray away from it!!04:17
edbianjohn_re: "sudo apt-get install ubuntu-restricted extras"04:17
edbianjohn_re: "sudo apt-get install ubuntu-restricted-extras"04:17
lamebotno its just wen i durn it on it is alaways off by the same number of hours but the minutes are right. I think maybe its the wrong timezone but i cant figure out how to change that04:17
temporarytaolamebot, you probably need to check your locale04:18
musikgoatlamebot: do you have your bios reset jumper set to on?04:18
musikgoatlamebot: after you set the time, what happens if you sudo hwclock --systohc04:18
edbianlamebot: I bet your hardware clock is wrong or something.04:18
Guest82931john_re, i made it work with their package.. but also install the restricted extas like they say04:18
shammI have been trying to get nvidia 185.* driver to work, it blanked out my display then froze the system.  Is anyone running nvidia with 185.* ?04:18
gartralhanasaki: i use USB powered hard drive enclosures, prefferably decent western digital or seagate.. true, heads can crash, but at least that ussually doesnt corrupt everything04:18
stlsaintttyl fellas04:18
edbianstlsaint: Night!04:18
lamebot<edbian> how would i change that?04:18
mickeyhi!all04:18
=== shamm is now known as LinuxGold
hanasakigartral:  have  a url for an enclosure you like that is cheap/good... ?    what do you think about samsung drives?04:19
john_reedbian: Guest82931 thx04:19
edbianlamebot: Is this a dual boot system?  (man hwclock)04:19
temporarytaoedbian, i'm betting on wrong timezone04:19
edbianjohn_re: NP!04:19
Guest82931any ideas on how i make my windows (or the top bar) transparent or a glass look04:19
temporarytaohe says the hours are off, not the minutes04:19
edbiantemporarytao: I think you're right04:19
Guest82931john_re, yourwelcome04:19
basslinerhm, i really don't get it, i have 2 machines with the exactly same sources.list file and on the one it always tries to upgrade to firefox 3.5 or 3.6 and on the other not...04:19
lamebotmusikgoat: it is correct when i sudo hwclock04:19
temporarytaoprolly the timezone04:19
basslinerany help?04:19
lamebotedbian: yes04:20
musikgoatlamebot: yea, i was not thinking timezone04:20
edbianlamebot: One of the OS's thinks your HW clock is UTC and the other thinks it's local time.  They are competing with each other ;)04:20
lamebotmusikgoat: i just got back from austria. How would i adjust timezone?04:20
temporarytaolamebot, you can select multiple timezones04:20
lamebotedbian: thanks, how would i fix this? adjust the time in bios menu?04:20
legend2440timitheos: are you still here?04:21
edbianlamebot: There is a file in ubuntu.  I have to find it.  Hang on.04:21
temporarytaowhen you go australia, select the australian time zone as the main one. when you get back, select the other one04:21
gartralhanasaki: samsung? if you have nothing else.. sure hold on, comp runnign slow as molasses04:21
hanasakigartral:  huh?04:21
lamebotteporarytao: thanks, but i dont see a timezone option in time and date settings04:21
gartralhanasaki: for link04:22
Guest82931sorry for the noobness but how do i chnge my nick?04:22
musikgoatlamebot: ok, from command line...04:22
hanasakigartral: ah.. thanks...04:22
temporarytaolamebot, it's there. i can't really walk you through the gui right now but look around for it04:22
edbianlamebot: While I check look at "etc/timezone" and make sure it's right.04:22
JohnCDI1i know this is probably trivial but does anyone know if its possible to get alltray to respond to a command rather than having to click i'd like to just put a script at startup that will just start evolution and automatically have it set in the tray04:22
musikgoatlamebot:  sudo tzconfig04:23
benjrwhen i access shared network folders they appear on the desktop, how can i make them appear in home instead?04:23
gartralhanasaki: theser are good http://www.dealextreme.com/details.dx/sku.20213 and these are good only after replaceing the drive http://www.dealextreme.com/details.dx/sku.1458604:23
hanasakigartral:  you mean you don't like hitachi?04:24
musikgoatlamebot: or what is now dpkg-reconfigure tzdata i guess04:24
gartralhanasaki: most hatatchi products are alright, those are just sllooow drives04:24
hanasakiEAGET is only 42k rpm04:25
lamebotmusikgoat: thanks i tried that but it said i need to run as root, sorry im a complete noob04:25
musikgoatlamebot: sudo04:25
musikgoatlamebot:  add sudo before the command04:25
gartralhanasaki: and you see around 40 mbps from that, while the hatachi only gets 1804:25
lamebotmusikgoat: thanks looks like thats working04:26
hanasakiah04:26
edbianlamebot: Did you get it?04:26
Automan070192hey wats up can anyone help me04:26
edbianlamebot: In case you still have problems try editing this file: /etc/default/rcS04:26
musikgoat!ask | Automan07019204:26
ubottuAutoman070192: Please don't ask to ask a question, simply ask the question (all on ONE line, so others can read and follow it easily). If anyone knows the answer they will most likely reply. :-)04:26
edbianAutoman070192: Probably! :)04:26
lamebotthanks everyone looks like its working04:26
=== charlie is now known as Guest2549
clophow do i change the highlight color when i select text with the mouse?  it's light blue right now and its hard to read04:27
lamebotseems to have worked ill try a reboot and see04:27
Automan070192ok i need help because i have been trying to get a later version of ubuntu for some time but everytime i make or use a disc it freezes my computer04:27
edbianlamebot: Awesome! :)04:28
cosmic_karmajaunty froze up after i hibernated from lastnight and unplugged the strip cuz of tstorms any suggestions?04:28
=== kaie is now known as Guest55302
edbiancosmic_karma: For me installing the package "fs2ram" helped hibernation and suspend work much better.  Hibernation and Suspend are very hit or miss on linux still unfortunately :(04:28
cosmic_karmai had my pc unplugged for over a week with hardy and it was right where i left off, it gave error msg from every hibernate , but never any real problems04:28
stlsaintback for the third time!!!04:28
stlsaintso who is trying karmic koala right now?04:29
cosmic_karmathanks edbian04:29
edbianHow can I find every file on my system that has a "~" ?  I've tried "locate -r ~" but it returned many many files (a lot that don't have ~ in the name)04:29
musikgoat!karmic | stlsaint04:29
ubottustlsaint: Karmic Koala is the codename for Ubuntu 9.10, due October 2009 - Karmic WILL break - Discussion and support in #ubuntu+104:29
linuxJohnCDI1: maybe try asking on this forum also: http://ubuntuforums.org/showthread.php?t=17375904:29
hanasakigartral:  know anything about these?  I thought they were good.. from what you say ... now I am not sure... SAMSUNG HD103UJ04:29
Automan070192ok i need help because i have been trying to get a later version of ubuntu for some time but everytime i make or use a disc it freezes my computer any suggestions?04:29
musikgoatstlsaint: just in case you have questions about it04:29
stlsainti thought i was in testing right now?04:30
Ghotiedbian: try locate -r '~' perhaps?04:30
edbianAutoman070192: Why not just update from with in ubuntu?04:30
musikgoatstlsaint: nope04:30
edbianGhoti: I'll try hang on04:30
=== unforgiven512 is now known as unforgiven512-aw
=== FireMedic is now known as FiremanEd
benjrwhen i access shared network folders they appear on the desktop, how can i make them appear in home instead?04:30
edbianGhoti: That did it!  Thanks :)04:30
Automan070192ok how may i do that?04:30
nacho_hii04:30
edbianAutoman070192: Open the update manager ;)04:31
stlsaintwow...ive been given wrong info!!!04:31
nacho_che alguien sabe como sacar el login despues de la hibernacion?04:31
edbianAutoman070192: System -> Admin -> Update Manager04:31
Ghotiedbian: anytime :)04:31
stlsainti had a feeling but...04:31
gartralhanasaki: those look pretty good, actually04:32
musikgoatstlsaint: how so?04:32
hanasakiwhat websites.. in the usa do you all use for buying HW?  gartral lol I hope so.. I bought 2 for RAID04:32
henriqalgum br04:32
nacho_hi04:32
stlsaintfrom reading forums and chatting with other ppl...i never actually seen it for myself and now i know y!04:32
Ghotihanasaki: I usually check newegg.com and pricewatch.com for hardware prices04:33
phylonhow do i find a text in a set of files(directory)04:33
gartralhanasaki: i like kingstar computers04:33
musikgoathanasaki: there are a few, newegg, zipzoomfly, provantage04:34
Ghotiphylon: grep pattern /path/to/directory/*04:34
hanasakiya I look at newegg a lot.. they have really good catalogs at least to find stuff04:34
musikgoathanasaki: tiger direct04:34
edbian!ot04:34
ubottu#ubuntu is the Ubuntu support channel, for all Ubuntu-related support questions. Please use #ubuntu-offtopic for other topics. Thanks!04:34
kyaa-mayorihi04:34
lamebotthanks everyone that fixed my clock problems04:35
edbianlamebot: How thankful you are! :)04:35
nacho_how can I avoid having to give my passwaord to the screen saver when resuming from hibernation?04:36
cosmic_karmatemporarytao, i like that name04:36
MrPocketzSo, I've got a 5.1 onboard soundcard, (nVidia)  and a 5.1 PCI sound card (Audigy2)04:36
Ghotinacho_: when you hibernate, having to log back in isn't really optional.04:36
stlsaintlol...sorry musik that was me04:36
MrPocketzExcept, when i open volume control, the only thing i can get to play sound is the Playback: HDA NVidia - ALC883 analog (PulseAudio Mixer)04:37
hanasakigartral:  can I msg you in private?04:37
MrPocketzwhich only offers a "Master" mixer.  I'd like to be able to control all channels. Is this possible?04:37
gartralhanasaki: sure04:37
benjrwhen i access shared network folders they appear on the desktop, how can i make them appear in home instead?04:38
CuddlesMrPocketz, Are you using karmic?04:39
choppyhorsehow can I enter a command into a terminal and have it keep running even when I close the terminal window?04:39
stlsaintbut has anyone tried cairo-dock yet...i hear its a lil annoying if it goes bad!04:39
Ghoti!screen | choppyhorse04:39
ubottuchoppyhorse: Screen is a window manager for terminal sessions, also useful over SSH. See https://help.ubuntu.com/community/Screen04:39
MrPocketzCuddles, Never heard of it. Don't believe so..04:39
meanburrito920_choppyhorse: start it in a screen session04:39
stealth-can someone explain why I cant connect to a router less than 4 feet away that has essid broadcast on and no security? Network manager is seriously pissing me off >:(04:39
stlsaintchoppyhorse:depends on what cmd you use04:39
Bookmancan you run transmission from the command line?  Without the pretty gui interface?04:39
stealth-Bookman: you can use rtorrent, which is awesome, in my opinion04:40
GhotiBookman: if you're looking for a command line torrent client, look into rtorrent04:40
stlsaintcuddles: if you mean koala its not out fully yet is what im being told!!04:40
stlsaintMrPocketz: i think he means koala...see above!!04:40
kranhello04:41
Bookmanstealth, Ghoti:  I will try rtorrent, but I've already partially downloaded a torrent with transmission and I'd love to finish them off from the command line.04:41
kran能支持中文吗?04:41
meanburrito920_kran: english please04:41
VeinorBookman: Most torrent clients support resuming, so you should just need to point it at the target directory04:41
stlsaintBookman: you mean download torrents from cmd line?04:41
Ghoti!jp | kran04:41
ubottukran: 日本語の場合は #ubuntu-jp または #kubuntu-jp を参照して下さい04:41
stlsainttransmission should keep running as long as you dont quit it no matter where you start it from04:42
Bookmanstlsaint: yes.04:42
GhotiBookman: I don't know if it's possible to transplant a partial download like that04:42
VeinorExcept that looks more chinese to me, kran04:42
BookmanVeinor: let me see....04:42
GhotiVeinor: it was a 50/50 shot, heh04:42
* Veinor shrugs04:42
Veinor!zh04:42
ubottuFor Ubuntu help in Chinese 您可以访问中文频道: #ubuntu-cn 或者 #ubuntu-tw  或者 #ubuntu-hk04:42
stlsaintBookman: i think it would be best to let the current torrent continue thru gui and research about starting a new one from terminal04:42
Veinordidn't know if we had a !zh, cool04:43
Bookmanstlsaint: I want to start transmission via ssh and I don't want to run a gui.  I may not be able to and that is just fine, while I finish off the last two.04:43
GhotiBookman: the thing is, transmission is a GUI client, so I don't know if you can SSH in and start it on a GUI that session isn't a part of04:44
jalfanjoin ##electronics04:44
=== Shinobi is now known as Guest42712
jalfandamnit04:44
kranwhy all english?04:44
linuxGhoti: Doesn't transmission have web control support?04:44
edbianBookman: There is a transmission-cli package04:44
Ghotilinux: I do not know04:44
stlsaintagreed with Ghoti to bookman but i always say never count ubuntu down and out cuz it has ceased to amaze me yet...but highly unlikely!04:45
choppyhorsek screen worked ty.  2nd question: what does putting an "&" symbol after a command do?04:45
Veinoryeah, transmission-cli04:45
Ghotikran: This is the English channel; what is your preferred language?04:45
imme-emosolWhy is it that insserv changes many rc's the first time , does `Ubuntu` have a different opinion about the rcS then their own init-script ?04:45
Veinorchoppyhorse: Runs it in the background so you can keep using the terminal04:45
phylonthanks Ghoti04:45
Ghotichoppyhorse: '&' puts the preceding command into the background04:45
Ghotichoppyhorse: but if you log out, the backgrounded process will usually terminate04:45
stlsaintTO All...whats the best(in your opinion) irc client in ubuntu?04:46
Veinoryeah, unless you put nohup in front of the command04:46
choppyhorsety again04:46
Ghotistlsaint: I alternate between irssi and xchat04:46
Bookmanedbian: Yeah, I came across the transmission-cli in my research, but I never found out if it can "take over" downloading a current partial torrent04:46
Ghotichoppyhorse: my plesure04:46
edbianBookman: Yeah I have no idea about that.  I don't it.04:46
malekexit04:46
stlsaintyea ive heard of the irssi...would you be able to elaborate on irssi a little more?04:46
edbianBookman: Perhaps you could seed yourself?04:46
linuxBookman: I have used transmission-cli, it gives you the same control as the GUI over a web browser04:46
kranoh gad,english ,i hate it04:46
Ghotikran: what do you prefer to speak?04:47
=== unforgiven512-aw is now known as unforgiven512
stlsaintGhoti: what makes xchat better over KVIrc...which is what i use!??04:47
Ghotistlsaint: I've not used KVirs, so I don't know :)04:47
Ghoti!zh > kran04:47
ubottukran, please see my private message04:47
kranmy english is poor,i will leave now,this is not my zoom04:47
Veinorstlsaint: irssi is a command-line irc client04:47
Veinorwhat I do is I have irssi run somewhere on a server in a screen session, then I ssh into the server and connect to screen as needed04:48
stlsaintVenior: so all cmds are done in a terminal of some sort?04:48
VeinorWell04:48
GhotiVeinor: me as well :)04:49
Veinorhttp://www.irssi.org/images/irssi_cmd_100.png04:49
VeinorThis is irssi running under cygwin.04:49
stlsaintlol...maybe you could give me a lil tutorial on how to do all that?04:49
linuxanyone know how to fix my lexmark x63 to scan again in ubuntu 9.04? http://ubuntuforums.org/showthread.php?p=776649704:49
VeinorI actually wrote one on my blog, so sure04:49
GhotiVeinor: I'd like to see any irssi tips you may have; I'm a recent BitchX convert :)04:50
Veinoryou use awl?04:50
xim_is there a program that can play a wav or mp3 from a command prompt (in a script) without openening a gui player?04:50
Ghotixim_: mpg123 should work04:50
imme-emosolSo no-one who knows why `Ubuntu` has a different opinion about the rcS then the init-script themselves ?04:51
xim_Ghoti, thx ill try that04:51
weaverdamn,... it;s been a long time since I've used IRC04:51
stlsaintVeinor: seen it...nice...looks like you gotta know these cmds back and forwards!!04:51
stlsaintwell welcome back weaver04:51
Veinoreh, most of them are standard irc commands04:51
Veinorhttp://www.amateurtopologist.com/2009/07/22/irssi-ssh-and-screen-three-great-tastes-that-go-great-together/ if anyone's interested; I know my writing isn't exactly the best, haha04:52
GhotiVeinor: thanks for the link :)04:52
stlsaintyea im still in the process of learning irc cmds04:52
Veinorno problem :)04:52
GhotiVeinor: nice favicon too :)04:52
VeinorI highly recommend awl04:52
skazi21101after updating to 9.04 ubuntu don`t see my cd-rom. help me somebody04:52
weaverI probably can't remember a single IRC command at this point. lol.04:53
VeinorI should probably upload a screenshot for that article.04:53
imme-emosolweaver: You probably do ...04:53
GhotiVeinor: 'awl'?  no relation to 'awk' I presume :)04:53
LoafersWhy can't I format my 100GB HD as NTFS on Ubuntu using GParted?04:53
Dark_WolfHow do I stop the update manager from opening every few minutes?04:53
R0b0t1What is the name of the program to make archives?04:53
legend2440xim_: in terminal try mplayer <name>.mp3  if you have mplayer installed that is04:53
R0b0t1(the GUI_04:53
weaverHas everyone seen the new shots of UNR Koala?  Looks pretty great.04:53
VeinorR0b0t1: file-roller04:53
skazi21101after updating to 9.04 ubuntu don`t see my cd-rom. help me somebody04:54
R0b0t1Thanks, the name had changed :)04:54
linuxDark_Wolf: This bug has not been fixed yet as far as I know04:54
nanotubeDark_Wolf: install the updates :)04:54
Dark_Wolfmmkay04:54
Dark_WolfI didn't know it was a bug04:54
linuxnanotube: did they fix this bug yet?04:54
Dark_Wolfbut as slow as my system runs ubuntu, it gets annoying04:54
VeinorDark_Wolf: you should try xubuntu, it's faster04:54
nanotubelinux: didn't know there was a bug. i still run intrepid, where instead of the annoying update manager popup, i get a nice little notification in the status bar!04:55
Dark_Wolfbut..04:55
Dark_Wolfit's xfce04:55
weaverDark_Wolf: Or Crunchbang linux. Way faster.04:55
stealth-Dark_Wolf: or xubuntu, then install fluxbox.04:55
Veinoror a terminal!04:55
Geoffrey2I'm looking for a list of wireless devices that work with linux, and the linux drivers they work with......04:55
Dark_Wolfxfce only has a little bar at the bottom and a limited file browser04:55
Dark_Wolfor it used to04:55
nanotube!wifi04:56
ubottuWireless documentation, including how-to guides and troubleshooting information, can be found at https://help.ubuntu.com/community/WifiDocs04:56
skazi21101after updating to 9.04 ubuntu don`t see my cd-rom. help me somebody04:56
stealth-Dark_Wolf: ummm, are you thinking of fluxbox?04:56
Dark_Wolfstealth-, no04:56
linuxskazi21101: did you try in terminal a cd /media && ls ?04:56
nanotube!wifi | Geoffrey204:56
ubottuGeoffrey2: Wireless documentation, including how-to guides and troubleshooting information, can be found at https://help.ubuntu.com/community/WifiDocs04:56
Dark_Wolfstealth-, maybe it's changed since slackware 9...04:56
Ghotiskazi21101: can you pastebin the output of sudo dmesg | grep -i cd-rom04:57
weaverDark_Wolf: Do you like any *box?04:57
stealth-Dark_Wolf: oh, sorry, xubuntu looks different than normal xfce installs apparently....04:58
stealth-Dark_Wolf: my bad :)04:58
Drew3Wow, 1,27x people in the room, someone should know this right off the top of their head, What is the command, to see which version of the video driver is installed?04:58
=== wsr3193 is now known as raghorn
stealth-Drew3: most of the people here are AFK04:59
stealth-:P04:59
nanotubeDrew3: probably can look in /var/log/xorg.0.log ?04:59
skazi21101Ghoti: there is nothing to post05:00
nanotubeDrew3: besides that, the command is probably driver specific - something like fglrxinfo for ati, something else for nvidia?05:00
skazi21101Ghoti: its empty05:00
Ghotiskazi21101: interesting.  That means the kernel didn't see any CD-ROM drives to support.05:00
Bookmanstealth-: Is there a good tutorial for rtorrent?05:01
skazi21101Ghoti: yes. thats i talking about05:01
skazi21101Ghoti: i don`t know what to do in this case05:01
Ghotiskazi21101: that sounds hardware-y.05:01
Drew3nanotube: fglrxinfo ,, that helps ty.05:01
burkmatBookman: The manpage is pretty useful.05:01
nanotubeDrew3: cool :)05:01
kindofabuzzit it a known problem for shared folders to just become unshared by themselves?05:02
basslinero.O05:02
skazi21101Ghoti: there is an entry is fstab about my cd-rom. really its dvd-rw built in my noutbook05:02
stealth-Bookman: well I never needed a tutorial, but if you wanted to learn the advanced functions running 'man rtorrent' or searching google should help05:02
benjr                                                                                                                                                                                            05:02
skazi21101Ghoti: have any ideas?05:02
rymoi tried to start a Guest session but it froze after the nvidia logo at a white screen - i ran startx -- :1 from an alternate tty... but how do i get back to my original login where all my programs are still running? :-/05:02
Ghotiskazi21101: thinking05:02
nanotuberymo: try hitting "ctl-alt-f7"05:03
linuxDrew3: there is always vi /etc/X11/xorg.conf05:03
Drew3I didn't think xorg.config gave the version number? linux05:04
Drew3"locate ati | grep fglrx" got me this --->  /usr/share/fglrx/atigetsysteminfo.sh  which maybe a help?05:05
Sahdosdoes anyone use OpenOffice.org?05:06
=== Sahdos is now known as MeditatingFrog
nanotubeDrew3: why not just use fglrxinfo - doesn't that show version and all that?05:06
nanotubeMeditatingFrog: just about everyone does on ubuntu :)05:07
legend2440Drew3: open  system>admin>hardware drivers  does it say which version is being used?05:07
MeditatingFrognanotube: I'm trying to export a pdf, but I want the background to be black and the text to be green05:07
MeditatingFrognanotube: have you ever tried this?05:07
Drew3nanotube: , no version number, of ati's driver version05:08
linuxMeditatingFrog: try changing the background and text in openoffice prior to exporting as pdf; have you tried that yet?05:08
nanotubeMeditatingFrog: no, never tried... what happens if you just edit the document properties to make bg black and text green, before exporting?05:08
chris_lenz123I need help, all the file conversion programs i find do not work well, do any of you know a good file conversion program that can make a avi movie i have into an mp4 that will be supported for my ipod on itunes?05:08
MeditatingFroglinux: yes05:08
chris_lenz123for linux^05:08
MeditatingFrognanotube: there is white included in the document.  I want the document to be more readable on a computer05:09
linuxchris_lenz123: let me research that now and see if any ring a bell05:09
MeditatingFrognanotube, linux:  I will try one more time05:09
skazi21101Ghoti: maybe its in fstab??05:09
nanotubeDrew3: then just look in the file /var/log/Xorg.0.log, and see if you see something useful....05:09
chris_lenz123linux: thanks05:09
benjrwhen i open a network share it makes an icon on my desktop, how do i make the icon appear in home instead05:09
skazi21101Ghoti: becouse its no cd-rom. but interface is okey05:10
Geoffrey2oh wonderful, I go and pick a wireless device that's not even in any of the lists......05:10
foundry87Why is it that I can't add a shadow border effect with gnome-screenshot when I'm trying to take a region screenshot?05:10
MeditatingFrognanotube: no, still no luck.  the background still isn't black05:10
bnijkfoundry87: you can, use gimp05:11
MeditatingFrognanotube: I'm thinking it is beyond the capability of openoffice.org05:11
edbianbenjr: You can manually mount the network share.  What kind of share is it?05:11
foundry87bnijk, I realize that I can't but why is that? I don't want to have to open gimp to do something that should be able to be done automatically.05:11
bnijkwhy would it do that automatically?05:12
edbianbenjr: You could also create a soft (or hard if you want) link in /home to that file05:12
ryan__nanotube: ctrl-alt-f7 still gives me a white screen, although this time the startup sound played first.  after that going back to ctrl-alt-f2 (where i was typing to you before) is only a console again; i'm now typing to you from display :2 on ctrl-alt-f305:12
linuxchris_lenz123: take a look at FFMPEG: http://www.instructables.com/id/Convert-video-in-Linux/05:12
nanotubeMeditatingFrog: ehrm, i just tried it, it worked for me.05:12
bnijkthe great motto of software development, foundry87, "keep it simple stupid," don't add superfluous features to a program that are best served elsewhere05:12
foundry87bnijk: Because I want to add a shadow border to my screenshot automatically, I don't see what's wrong with that05:12
nanotubeMeditatingFrog: i went to "format -> page", set background to black there05:12
bnijkmost users of gnome-screenshot will not want a shadow border05:13
nanotubeMeditatingFrog: then exported to pdf, and the pdf shows with black bg.05:13
ryan__with all those programs still running, can't i reconnect to that background'd x display somehow?  i'm guessing this is surely a simple linux thing i haven't learned yet coming from windows?05:13
foundry87bnijk: then why include the feature in the first place?05:13
legend2440Drew3: this works for finding out my nvidia driver version. not sure about ati   glxinfo | grep -i version05:13
bnijk?05:13
chris_lenz123linux: k05:13
foundry87bnijk: the feature is already there, it's just that it doesn't work with region screenshots. Check for yourself.05:13
bnijkoic05:13
linuxchris_lenz123: I tried mencode a long time ago, but you have to know the exact parameter to put after mencode05:13
* ryan__ is rymo (d'oh)05:14
bnijkwell05:14
bnijkhttp://svn.gnome.org/viewvc/gnome-utils/trunk/gnome-screenshot/screenshot-shadow.c?view=log05:14
bnijkthere's the code05:14
jariep1_hello05:14
bnijkfix it yourself ;)05:14
FloodBot2bnijk: Please don't flood, use http://paste.ubuntu.com to paste, don't use Enter as punctuation.05:14
MeditatingFrognanotube: I'll try printing to file.  nanotube, there is an "export directly as pdf" isn't it possible to print to a file also as an alternative method to getting the file to pdf05:14
chris_lenz123linux: your losing me?05:14
jariep1_I am looking for a wiki software that includes backlinks05:14
jariep1_anybody know of any?05:14
oldude67what program will open up .tif files?05:15
linuxchris_lenz123: those are two seperate programs, try ffmpeg first then mencoder if ffmpeg doesn't work (mencoder requires mencoder -tllksdj lots of parameters after)05:15
=== ryan__ is now known as rymo_
foundry87bnijk: I'm not a very good programmer05:15
bnijkoldude67: any graphics program worth its salt05:15
edbianoldude67: .tif are just image files.05:15
bnijkfoundry87: any time is a good time to start, eh?05:15
prince_jammysoldude67: any image viewer should.05:15
nanotubeMeditatingFrog: yes, there is. just check the box "print to file" in the print dialog. that will create a postscript (.ps) file, which you can then convert to pdf from commandline, using the "ps2pdf" program.05:15
oldude67bnijk, edbian , prince_jammys ty05:16
rymo_if I kill Xorg are all the programs still running?05:16
foundry87bnijk: I know basic parts of some languages but I don't know what language this is in or where I'd edit the file.05:16
linuxany help on a lexmark x63 scanner would be welcome: http://ubuntuforums.org/showthread.php?p=776649705:16
MeditatingFrognanotube: thank you nanotube05:16
chris_lenz123linux: ill try, but i am a noob to linux, just got it05:16
rymo_like killing explorer in windows?05:16
Veinorrymo_: if you kill Xorg that will kill some programs but not others05:17
nanotubeMeditatingFrog: hope that helps :)05:17
Veinorit'll kill stuff that you started when you logged in05:17
DezineMy computer has been randomly crashing. I'm sure there is a logfile, how can I monitor the computer and then read a logfile after I boot back up?05:17
Veinoras well as anything that has to do with graphics in any way05:17
nanotubeVeinor: it will kill all the gui programs that you had running in that session....05:17
roothi05:17
linuxchris_lenz123: try searching Applications -> Add/Remove and http://www.sourceforge.net for lists of programs05:17
Veinorright05:17
Veinorbut it won't kill every process :P05:17
=== root is now known as Guest74061
rymo_so is it possible to bring gui programs over to another X display?05:18
Guest74061can anybody help about Emerald theme05:18
Bookmanstealth-: rtorrent works just fine.  thanks.05:18
chris_lenz123linux: trying the terminal method05:18
rymo_normally when a person clicks their user name at the top right and clicks on Guest Session, they're able to come back to all their programs, right?05:20
rymo_so how do i come back to my programs when the Guest Session just hangs?05:20
WilliamCIs it possible to flash your bios from Linux?05:20
linuxrymo_: did you switch user or logout?05:20
_julio_hi there everyone05:21
rymo_linux: I clicked "Guest session" which I presume to be equal to switching users?05:21
linuxrymo_: an alternative: ctrl+alt+f2 then startx -- :5, then ctrl+alt+f505:21
squarebracketis there a startup log?05:21
rymo_linux: i was able to use startx to start another display, that's what i'm in now; but i want to reconnect to my original session that still has all my programs running05:22
blognewbhow come i have 2 php.ini's? /etc/php5/cgi/php.ini /etc/php5/cli/php.ini05:22
squarebracketlike the stuff that's displayed instead of usplash, is it recorded somewhere?05:23
linuxrymo_: i don't know about that one, but i am interested if anyone in here knows that answer05:23
bishopjoining05:23
rymo_is there no way to gently abort whatever has hung in this guest session to get it back to the login screen on that display where i assume i would be able to jump back in?05:23
bishophey05:23
prince_jammysblognewb: second one is probably for php's command line interface, first one for cgi.05:23
lstarnesblognewb: one is for CGI (as in webserver usage), the other is for CLI (as in use as a command line interpreter)05:23
=== carlos_ is now known as Campusano
thiebaudeis ubuntu written in php?05:24
rymo_linux: why the particular combo of +f2 :5 +f5?05:24
rymo_i did +f2 :1 and later +f3 :2, is that bad?05:25
linuxrymo_: they give you new ttyl's (screens), i assumed that your screen there was empty05:25
Veinorthiebaude: uh, no05:25
WilliamCthiebaude, are you kidding?05:25
_julio_i have an issue, last night i installed wicd to give it a try as i've hear some kind words bout it only to stop when i realised that i couldn't use my 3g usb modem from there. since then i've removed wicd and tried to get back network manager (that somehow disapeared...) any words of hope? :P05:25
linuxrymo_: you can use as many of those screens as you want without hazard05:25
rymo_if i had used startx -- :5 does that place it on the ctrl+alt+f5 screen?05:26
rymo_what i typed brought up x in-place05:26
DezineDoes Ubuntu has a crash log?05:26
benjrwhen i open a network share it makes an icon on my desktop but its not there when i restart, how do i make it permanant?05:26
linuxrymo_: the "startx -- :5" or say 10 usually brings it on another screen; i toggle the ctrl+alt+FX to see which one usually05:26
rymo_linux: so there's not a 1-to-1 relationship between x screen number and tty number?05:27
rymo_i guess i know the default screen is :0 and it comes up on f705:27
linuxrymo_: there should be, but i don't believe so, you can try reading it maybe in the manual of screen (i don't think its in xinit or startx)05:27
linuxrymo_: let me experiment, brb05:28
zefyxokay..05:29
_julio_anyone?05:29
zefyxi just installed quite a few packages i need to remove05:29
zefyxhow would i go about finding out which ones i installed last, so that i may remove them.05:29
linuxrymo_: "startx -- :11" brings it to F9 on my machine05:29
zefyxi tried apt-get remove build-essential libtool automake1.9 openssl libcurl3 libcurl3-devlibsigc++-2.0-0c2a libsigc++-2.0-dev libncurses5 libncurses5-dev05:29
rymo_linux: thx. here's another thing: after running startx -- :1 on the f2 screen, then ctrl+alt+f7 to check on the hung guest thing, coming back to f2 showed only the console output leading up to x... could I have gotten back into that one somehow without just ctrl+c dumping it?05:29
zefyxbut its saying libcurl3-de*** isn't found, and its trying to remove half of my os as dependencies05:29
Veinorzefyx: sudo cat /var/log/apt/term.log | grep deselected05:30
linuxrymo_: Let me test that theory now05:30
_julio_zefyx:in gnome you can use the history function of the package manager...05:31
linuxrymo_: yes, it will kill X with signal 2 and leave a log above login (ctrl+c that is)05:31
Veinoror try ls -lrt /var/lib/dpkg/info/*.list05:31
linux_julio: also check synaptic to ensure the packages "network-manager" and "network-manager-gnome" are installed, also try a reinstall of those05:32
chris__I need help, all the file conversion programs i find do not work well, do any of you know a good file conversion program that can make a avi movie i have into an mp4 that will be supported for my ipod on itunes? For linux please05:32
Viking667I've got a question. Is there a "gtktalog" to be found anywhere in Ubuntu-space? I've seen katalog (the KDE version) but not the plain gtk version.05:32
linuxchris__: I'll keep looking if no one else answers you before then05:33
overshardI'm trying to delete a rule i made in ufw and it is not working05:33
rymo_linux: i had working x on f2 (still logged on as "rymo" from that one) - i checked f7 and when i came back to f2 i was looking at a still-running x but in console (that is, no windows but just the last output lines before, and not back at prompt)05:33
overshardsudo ufw delete <whatever rule> and it just pulls up the list of commands like delete doesn't exist05:33
bishop? for ops   is there any way to verify my ip address  even by private message. ip should be roadrunner nys ?05:33
rymo_i'm not sure how to describe it better :(05:33
gvsa123i got the following error while importing images from my camera (canon xsi) http://paste.ubuntu.com/251167/05:34
syntaxCan you create commands in ubuntu linux?05:34
rwwbishop: do /whois bishop05:34
zirodaybishop: you can do /whois <persons nick>05:34
linuxchris__: what about this one: http://sourceforge.net/project/screenshots.php?group_id=225701 ?05:34
Veinorsyntax: you mean like an alias?05:34
nanotubebishop: your whois shows n=bishop@cpe-74-76-0-153.nycap.res.rr.com05:34
Veinoror shell scripting?05:34
syntaxlike you know we do sudo "get-apt" install program05:35
linuxrymo_: that would probably mean you didn't kill it, try a ctrl+shift+FX to go above F12 if your computer supports that05:35
syntaxcould we make our own command like that05:35
bishoppossible hijack. can not stay long...thanks05:35
rymo_ah! suddenly it clicks, thank you05:35
Veinorsyntax: Yeah, you can make your own programs05:35
chris__linux: if it can convert my video it will work, how do i download it05:35
linuxchris__: for 32-bit processors http://sourceforge.net/projects/mvpod/files/mvpod/0.1%20alpha2/mvPod-0.0.1.67.tar.gz/download then download, tar -xvf *.gz && cd mvPod* && ./configure && make && sudo make install05:36
bishoptime for another pc. do not have the money05:37
stlsainthas itunes became more compatible with jaunty yet?05:37
bishopthanks guys05:37
fsufitchhey, i'm trying to upgrade my server from 8.04 to 8.10, but "sudo do-release-upgrade" tells me there's no new release... how do i get it to realize it's a year out of date?05:37
bishoplater05:37
chris__linux: i have first link, few files pop up, whats you mean by second part05:38
rwwfsufitch: edit /etc/update-manager/release-upgrades and set "Prompt=normal", per https://help.ubuntu.com/community/IntrepidUpgrades05:38
fsufitchrww, thanks i'll try that05:38
vrakeshany1 here05:39
linuxchris__: those are the operations to extract and install05:40
nanotube!hi | vrakesh05:40
ubottuvrakesh: Hi! Welcome to #ubuntu!05:40
legend2440fsufitch:  does   gksudo update-manager -d  work?05:40
chris__linux: so...? im confused with computers.  what do i do next?05:41
fsufitchlegend2440: rww's solution worked05:41
rwwlegend2440: -d is to upgrade to development releases, not to do 8.04>8.1005:41
linuxchris__: ok you downloaded the file, then you go to applications, accessories, terminal05:41
legend2440rww: oh ok05:41
fsufitchlegend2440: and this is a terminal-only server access, i can't have gksudo ;)05:41
rymo_is there a keyboard shortcut to force the user switch window to appear?05:41
linuxrymo_: not that I know of, but fg and bg work for individual processes, it might work for xinit?05:43
vrakeshhoww to install ubuntu in windows05:43
chris__linux: terminal is up05:43
rwwvrakesh: do you have an Ubuntu CD already?05:43
vrakeshyeah05:43
rymo_linux: you mean try bg the hung xinit?05:43
vrakeshi tried wubi also05:43
rymo_(is that what's hung?)05:44
nanotubevrakesh: so you want to install it /inside/ windows? as in, so you can run both at the same time?05:44
vrakeshbut i cant run it inside windos05:44
vrakeshnanotube:s05:44
linuxrymo_: its a far out suggestion, but the only i can think of (xinit is usually running, but startx is just the script for xinit)05:44
stlsaintany success with itunes in ubuntu05:45
nanotubevrakesh: try this, then: http://www.psychocats.net/ubuntu/virtualbox05:45
nanotubevrakesh: you are looking for virtualbox.05:45
vrakeshin virtualbox i didnt get fullscreen05:45
dsnydersHi all.  Why do I get an error on: find . -iname *pdf -print05:45
thiebaude!wine05:45
ubottuWINE is a compatibility layer for running Windows programs on GNU/Linux - More information: https://help.ubuntu.com/community/Wine - Search the !AppDB for application compatibility ratings - Join #winehq for application help - See !virtualizers for running Windows (or another OS) inside Ubuntu05:45
rwwvrakesh: if you install the Guest Additions for virtualbox, you should be able to get full screen. The people in #vbox can help with that.05:45
chris__linux: ? terminal?05:45
nanotubedsnyders: depends on what kind of error you get :)05:45
linuxchris__: terminal05:46
zefyxanyway to make apitude uninstall say, all packages i installed within the last 2-3 hours05:46
q0_0phow do i retrieve my tomboy notes from applet?  i have a tar backup of my system elsewhere and i dont want to reboot it up again?05:46
vrakeshrww:thnx05:46
dsnydersnanotube, The error is-  find: paths must precede expression05:46
nanotubeq0_0p: it's somewhere in ~/.tomboy , probably ?05:46
chris__linux: you told me to bring up terminal, what do i do with it?05:46
edbianzefyx: You'd have to look at the log and figure out witch packages actually have been installed in the last 2-3 hours manually (or just remember) and then give the command to remove them.05:47
prince_jammysdsnyders: quote the glob you give to find, because there's pdf files in your current dir.05:47
q0_0pi will look thx05:47
prince_jammysdsnyders: '*.pdf' <-quoted05:47
rwwzefyx: that log is at /var/log/apt/term.log (you'll need to do sudo nano or gksudo gedit to view it).05:47
zefyxthanks05:47
prince_jammysdsnyders: else the shell expands *.pdf before running find.05:47
vrakeshwhere do i get tadditionshe guest05:47
q0_0pnanotube, thx i will try05:47
nanotubeq0_0p: yea, they're there, i just checked :)05:47
dsnydersprince_jammys, I was just about to ask if that was what was happening.05:48
vrakeshwhere do i get the guest additions for virtual box05:48
linuxchris__: find where the file downloaded using cd and ls, then when you see it, "tar -xvf *.tar.gz", then cd into the folder, "./configure && make && sudo make install"05:48
prince_jammysdsnyders: globs are normally not quoted, but in the case of find command, they are, because they have to be processed by find.05:48
nanotubevrakesh: once virtualbox is open and booted to windows, should find it in the menu. something like (tools -> install guest additions)05:48
AndorinIt has been nearly a month since I started asking for help on this problem. I would very much appreciate some assistance. http://ubuntuforums.org/showthread.php?t=121450805:49
vrakeshthnx05:49
cbcbillinghello all05:50
dsnydersprince_jammys, Thanks.  quoting it fixed the "problem"05:50
prince_jammysdsnyders: welcome05:50
rymo_so what good is ctrl+alt+backspace if it kills the gui programs and not just x ?05:50
cbcbillingis there any updates for firefox 3.5 for hardy05:50
cbcbillingfirefox 3..13 sucks05:50
rww!ff35 | cbcbilling05:50
ubottucbcbilling: Firefox 3.5 Final is available for Jaunty by installing the package firefox-3.5 and firefox-3.5-gnome-support | FF3.5 is referred to as Shiretoko in your UI, see http://is.gd/1reB3 for an explanation | Hardy & Intrepid: http://is.gd/1jkNY05:50
nanotubecbcbilling: look here: http://help.ubuntu.com/community/FirefoxNewVersion05:50
cbcbillingalot of error that i encountered when browsing05:50
stlsaintvrakesh: when you start your vm look up top and you will see a devices tap...click there and at the bottom of the dropdown!!!05:50
rymo_on windows i can kill explorer.exe and all other programs keep running while windows re-sorts itself -- is there no linux equivalent?05:51
sondhowdy05:51
nanotuberymo_: sure, you can kill nautilus, you can kill gnome-panel, and all that05:51
edbianAndorin: Are you running compiz?05:51
linuxchris__: i have to head out, to run the program from terminal, cd into the directory untared and ./program-name ("ls" should help you find program-name)05:51
rymo_nanotube: tell me more!05:51
chris__linux: are you trying to tell me to type cd , and whats in both brackets?05:51
stlsaintand yes installing the vm addons will enable full screen along with mouse integration!!05:51
burkmat!hi | cbcbilling05:51
ubottucbcbilling: Hi! Welcome to #ubuntu!05:51
nanotuberymo_: just run "killall gnome-panel" or "killall nautilus" from a terminal....05:52
stlsaintrymo: ever hear of the killall cmd05:52
Andorinedbian: I have a vague idea of what compiz is, but I don't know how to check whether I'm running it, using it, have accidentally configured it, etc. =/05:52
rymo_and i won't lose gui programs?05:52
linuxchris__: "cd" lets you move around linux, "ls" shows you where you are05:52
nanotuberymo_: nope05:52
edbianAndorin: Do your windows wobble?  Does "compiz" show up in the output of "ps -e" ??05:52
cbcbillingwhoah still no updates yet05:52
cbcbillingdamn05:52
nanotuberymo_: as long as you don't kill X itself, all your programl will still run.05:52
stlsaintuh...nanotube hope you have experience in that area!!05:53
nanotubecbcbilling: try also http://ubuntuzilla.sourceforge.net05:53
sondi have a cloned disk that will only boot read only - what should i do to it ?05:53
rymo_how can i tell which process to kill to get rid of this white screen staring at me on tty7 ?05:53
=== _MrsApple_ is now known as _MrApple_
chris__linux: well i dont understand, im new. This is like trying to do grade 12 math when your in grade 1?05:53
Andorinedbian: "Do your windows wobble?" may be the best question I have heard all week.05:53
edbianAndorin: lol05:53
linuxchris__: Im not upset, just strapped for time05:53
nanotubestlsaint: indeed - i've killed gnome-panel and nautilus with no ill effects to other programs :)05:53
stlsaintWOBBLY WINDOWS...gotta lovem05:53
ThibitDoes anyone have experience with the Trackpoint, 9.04, and easystroke?05:53
Andorinedbian: It's a rather long list, but I don't believe I see it.05:53
edbianAndorin: PM me :)05:53
linuxchris__: I have to head out, but try to read the manual inside of the tar (most programs come with it)...best of luck, other people in here might know if you vary the times you enter irc05:54
ThibitI'm having an issue with getting the gestures to be recognized05:54
rymo_ps -AL shows only Xorg with tty7 next to it05:54
stlsaintnanotube: why may i ask would you require to kill nautilus? or panel?05:54
cbcbillingnanotube: so this ubnutuzilla works ith no hassle05:54
nanotubecbcbilling: indeed it does. and if something is not to your liking, it has auto-uninstall too.05:54
stlsaintchris: how may the ubuntu community assist you?05:54
rymo_stlsaint: killing nautilus does seem to me to be equiv to killing explorer.exe on windows (rare need)05:54
nanotubestlsaint: when panel hangs, or nautilus hangs.05:55
cbcbillingnanotube: ww05:55
chris__I need help, all the file conversion programs i find do not work well, do any of you know a good file conversion program that can make a avi movie i have into an mp4 that will be supported for my ipod on itunes?05:55
cbcbillingnanotube: wow05:55
stlsaintnanotube: true true...but using the kill cmd how would you get them back?05:55
nanotubecbcbilling: give it a try. are you on 32bit or 64bit ubunut?05:55
nanotubestlsaint: by default, killall sends a "restart" signal, rather than a kill signal, so they restart automatically.05:55
stlsaintnice05:56
slimjimflimhi i just did a dual boot install w/ vista...installed vista first then jaunty...but now linux only has about 3 gb even though i originally gave it about 150gb...anybody familiar with this issue?05:56
cbcbillingnanotube: my queston is do this browser has no issues with java and flash?05:56
nanotubestlsaint: if they are really hung and you have to really kill, just run "gnome-panel &" and "nautilus &" from a treminal, to restart.05:56
stlsainthey chris...need some specs...are you in ubuntu using a vm or are you in windows?!!05:56
cbcbillingnanotube: is it also for hardy05:56
nanotubecbcbilling: if you are on 32bit, no issues at all, all your plugins will work without any changes. if on 64bit, you have to fiddle around a little to get them working. (see the ubuntuzila faq for 64bit users)05:56
dsnydersslimjimflim, have you mounted everything?05:56
chris__stlsaint: im using linux05:56
slimjimflimdsnyders, yea05:57
nanotubecbcbilling: hardy should be just fine.05:57
chris__stlsaint: dual boot05:57
cbcbillingnanotube: im using 32 bit.....05:57
stlsaintnano: yes i perfer that over kill but since you have more xp i trust you know more than me!! thanks for the info!!05:57
PitchIn ubuntu, when i click on places menu in panel, all windows partitions are opend. which file is controllig this behaviour, or can i edit places menu. I don't want all of the windows partitions to be listed05:57
cbcbillingnanotube: thanks alot...05:57
nanotubecbcbilling: then you should be just fine :)05:57
stlsaintchris:k state your issue again?05:57
chris__I need help, all the file conversion programs i find do not work well, do any of you know a good file conversion program that can make a avi movie i have into an mp4 that will be supported for my ipod on itunes?05:57
vrakeshwhat essential packages has to be installed aftr installin ubuntu05:57
cbcbillingnanotube: ill try it now05:57
nanotubecbcbilling: no prob - give it a try, if anything goes wrong just post in the ubuntuzilla support forums (or ask me here if i'm still awake) :)05:57
nanotubevrakesh: everything "essential" is installed by default. anything extra you install depends on what you need.05:58
z3ro3xI managed to setup OpenVPN so my brother's laptop will connect to me from any where and any time so it's easy to admin his system when he needs help.  My only issue is this.  After setting up the bridged network Ubuntu boots up slow as hell.  I used Starup-Manager to change the splash screen so that I can see boot process.  It pauses for a long time on I think it was called Configuring Network Interfaces.  Every thing works fine05:59
z3ro3x.  It just causes a slow as hell boot and I was wondering how can I fix the boot time?05:59
cbcbillingnanotube: damn it says its only for jaunty... imusing hardy05:59
stlsaintchris: check out soundKonverter05:59
nanotubecbcbilling: what says it's only for jaunty? if you try to install the .deb, it refuses?06:00
stlsaintim using ubuntu...chris what are you using06:00
dsnydersslimjimflim, I'm drawing a blank, unless it's a mount issue, or possibly a drive recognition problem.06:01
=== zj3t3mju is now known as zj3t|lunch
Pitchediting fstab won't help06:02
vrakeshhow to access files in linux from windows06:02
vrakeshboth are on two differet comps06:02
nanotubecbcbilling: i'm running it just fine on intrepid right now, no problems.... could you tell me what exactly you're seeing that says it's for jaunty only?06:02
nanotubevrakesh: easiest way is ssh.06:02
Pitchvrakesh: you need to set up samba, ftp, or http server in linux06:02
chris__stlsaint: how do i ... install this program on this website?06:02
vrakeshlinux and windows06:02
vrakeshthere is no ssh in windows06:03
VeinorWinSCP06:03
VeinorPuTTY06:03
Pitchvrakesh: you can try putty06:03
nanotubevrakesh: set up openssh-server on linux, then use winscp client on windows.06:03
VeinorWinSCP to copy files, PuTTY for an actual ssh session06:03
cbcbillingnanotube: my mistake i read the wrong blog... lol wat an idiot06:03
cbcbillingnanotube: :))06:03
ghostdadI want to setup ubuntu to use multiple partitions. I want to create a small / partition with a large /home partition. What is a reasonable size for the / partition? I don't want to run out of space on that, but I don't want there to be a ton of unused space on it either.06:03
ThibitDoes anyone have experience with the Trackpoint, 9.04, and easystroke? I'm having an issue with getting the gestures to be recognized.06:03
Pitchvrakesh: if you just want file sharing you can use samba server06:03
Veinorghostdad: how big is your HD, and what are you going to be doing on the computer?06:04
nanotubecbcbilling: don't read blogs - read the ubuntuzilla website - it has all the instructions and everything :)06:04
ghostdadVeinor: It's a 150gb hard drive and it will mostly just be used as a file server06:04
Veinoryou can probably get away with 10-15 GB for /06:04
vrakeshpitch: itried06:04
Veinorand that's erring on the safe side06:04
vrakeshit didnt work06:04
Pitchcan anyone tell how to edit places menu in ubuntu ?06:04
vrakeshmodified config file also06:04
ghostdadveinor: will that be comfortable though? how large is a default ubuntu installation?06:05
nanotubeghostdad: 10g for / should be plenty.06:05
dsnydersVeinor,  There is also a part of the PuTTY suite called pscp for copying files.06:05
nanotubeghostdad: default ubuntu install is only 3-4g06:05
ghostdadah okay06:05
ghostdadthanks06:05
nanotubeghostdad: there's no way you'll install 6g of packages :)06:05
ghostdadright06:05
megamanx1978I lost my toolbar in the xfce window manager how do I get it back?06:05
mrproperI hit a key on accident and the colors on my X11 display inversed . Can someone tell me what do to get it back to normal?06:05
geneticxhello everyone. I'm having really slow downloads in my ubuntu box, i've noticed ssh is very slow also..what could be wrong?06:05
Veinoryeah, the only way you'd do that would be if you were doing development and needed -dev packages06:05
Veinormrproper: are you using compiz?06:05
mrproperVeinor: Yes06:06
Veinorwindows key and n at the same time06:06
Veinorer, m06:06
mrproperVeinor: that only does one window, not all them06:06
Veinordo m then06:06
geneticxI have another computer on the network and I tested by downloading two exact files from the internet and one was done at 172kbps the other (ubuntu) at 23 kbps06:06
Veinorn swaps one window, m swaps them all06:06
mrproperVeinor: How can I disable that?06:06
nanotubegeneticx: are you on wireless on that comp?06:06
geneticxnanotube: no06:07
ghostdadalso if i buy a second (larger) hard drive, will i be able to reassign that as the /home directory?06:07
Veinormrproper: install the package compizconfig-settings-manager06:07
cbcbillingnanotube: yeah, am just really excited with it... lol06:07
ghostdader, /home partition06:07
nanotubeghostdad: yes you will06:07
BookmanIs there a way to tell what kind of ram my laptop has?06:07
Veinorghostdad: yes06:07
ghostdadok thanks06:07
mrproperVeinor: Got it, thanks for your help!06:07
nanotubecbcbilling: ;) so, any success with ff3.5 install yet? :)06:07
Veinormrproper: no problem, just disable the Negative plugin06:07
megamanx1978Can anyone help me with my xfce problem?06:07
cattellarhow can i own an ext3 partition im mounting in /media/drive ?  I tried sudo chown michael.users /media/drive   but it didn't work06:07
cbcbillingnanotube: not yet still downloading.... wat a slow internet connection06:08
cbcbillingnanotube: errrrrrrr06:08
Pitchwhich file is controlling places menu in gnome ?06:08
Veinorcattellar: did you try sudo chown michael:michael /media/drive ?06:08
rwwcattellar: 1) you probably want chown -R, 2) make sure you're doing it after mounting the partition.06:08
VeinorPitch: use alacarte06:08
vrakeshpitch: /boot/grub/menu.lst06:08
cattellarVeinor, rww , thanks, let me see06:09
=== revygttam is now known as mattgyver
Veinoroh wait, the places menu06:09
Veinorhm06:09
Veinor~/.gtk-bookmarks06:09
supaHello, everyone06:10
Veinoryou can customize the displayed name by putting it after the file, like file:///tmp Temporary Folder06:10
PitchVeinor: using alacarte, you  can only edit Application and System menu not Places06:11
cattellarVeinor, rww , thank you both, i fixed it06:11
VeinorPitch: edit the ~/.gtk-bookmarks file06:11
supaI've been trying to get vuze to run at bootup for like three hours now. does anyone know an easy way to run a command at boot-up?06:11
Veinorsupa: did you try Startup Applications under system->preferences?06:12
edbiansupa: At bootup or at login?06:12
supano, i want it to run  before the gnome session06:12
supait's a headless server06:12
=== nick is now known as Guest38020
cbcbillingnanotube: whoah still no luck downloading it06:13
PitchVeinor: can you please tell me the path of .gtk-bookmarks, /home/pitch does not contain any such file06:13
=== nabeel is now known as Guest9189
PolarinaI just installed apache2 and the directives DefaultType and ForceType do not work in a .htaccess file or in the configuration files. Why?06:13
vrakeshpitch: its hidden06:13
Veinorit doesn't? that's odd06:13
dsnyderssupa, You need to place an entry in /etc/init.d06:13
Veinoroh, yeah, it's hidden06:13
Veinorrun gedit ~/.gtk-bookmarks in a terminal, it's there06:14
supawell, i've tried that - although admittedly i don't know what i'm doing.06:14
VeinorI promise :D06:14
nanotubecbcbilling: downloading the ubuntuzilla .deb? or downloading the firefox archive during the install process?06:14
megamanx1978Anyone here use xfce?06:14
cbcbillingnanotube: thee .debinstaller06:14
Veinormegamanx1978: try #xubuntu06:14
edbiansupa: http://embraceubuntu.com/2005/09/07/adding-a-startup-script-to-be-run-at-bootup/06:15
nanotubecbcbilling: strange - it's only like 20k, should come through almost instantly...06:15
nanotubecbcbilling: maybe sourceforge is having problems with the file release servers again...06:15
cbcbillingnanotube: ok by now06:15
megamanx1978I am using ultimate edition with xfce and my xfce has a issue06:16
cbcbillingnanotube: i think ff3.0.13 has problem06:16
nanotubecbcbilling: you could get it from commandline... open a terminal, cd to Desktop, and run "wget http://downloads.sourceforge.net/project/ubuntuzilla/ubuntuzilla/4.7.4/ubuntuzilla-4.7.4-0ubuntu1-i386.deb" to get the .deb :)06:16
PitchVeinor: yes, but it contains only Documents, Pitctures, Music, Video and Dowload,06:16
VeinorWhat're you trying to do then?06:16
nanotubecbcbilling: but... if you have such severe problems with ff3, maybe you could try cleaning out your profile?06:17
PitchVeinor: I have two ntfs partition in my system, when i login all these partions are listed in places menu06:17
PitchVeinor:  I just dont want them to be displayes06:18
nanotubePitch: open nautilus, go to edit -> preferences, check the checkbox that says "show hidden files"06:18
VeinorHm06:18
ce_sexyhy06:18
cbcbillingnanotube: i now finshed installing .deb ff3.506:18
VeinorWell the one way to do this is to not have them automount06:18
cbcbillingnanotube: nothing happened06:18
nanotubecbcbilling: ubuntuzilla is an installer. use it to install ff 3.5.06:19
nanotubecbcbilling: (make sure to exit firefox first)06:19
PitchVeinor: how to disabe automount ?06:19
cbcbillingnanotube: already did06:19
nanotubecbcbilling: then run "ubuntuzilla.py" to install firefox, and follow the prompts.06:19
Veinorwell, first unmount them06:19
cbcbillingnanotube: done06:20
NetAnnoysMeWhat's the name of the tool I can use to show a graph of pings? like a traceroute that graphs quailty06:20
nanotubecbcbilling: so, is the installer doing it's thing? :)06:20
NetAnnoysMeI forgot it's name06:20
Viking667cactus?06:20
Viking667possibly06:20
cbcbillingnanotube: working by now06:20
nanotubecbcbilling: cool06:21
nanotubeNetAnnoysMe: wireshark?06:21
=== zj3t|lunch is now known as zj3t3mju
cbcbillingi copy andpastee this code ubuntuzilla.py -a install -p firefox06:21
NetAnnoysMenanotube: no - it's a cli app and wireshark doesn't do that06:21
nanotubecbcbilling: right06:21
cbcbillingnanotube: waiting for it by now06:22
cbcbillingnanotube: ff3.0.13 really sucks06:22
nanotubecbcbilling: what's it doing now? downloading firefox?06:22
NetAnnoysMenanotube: just foind the answer - it's mtr06:22
nanotubecbcbilling: heh06:22
cbcbillingnanotube: ff3.0.12 is much better to use06:22
nanotubeNetAnnoysMe: hm, cool, i'll try it - never heard of it. :)06:23
cbcbillingProcess returned code 206:23
cbcbillingImporting Mozilla Software Releases public key06:23
cbcbillingNote that if you have never used gpg before on this system, and this is your first time running this script, there may be a delay of about a minute during the generation of a gpg keypair. This is normal and expected behavior.06:23
cbcbillinggpg: requesting key 0E3606D9 from hkp server subkeys.pgp.net06:23
cbcbillinggpg: requesting key 812347DD from hkp server subkeys.pgp.net06:23
FloodBot2cbcbilling: Please don't flood, use http://paste.ubuntu.com to paste, don't use Enter as punctuation.06:23
lowlycoderwhere's the guide for sound on macbook pro?06:23
cbcbillingnanotube: thats the last thing i see06:23
nanotubecbcbilling: paste the complete output into a pastebin06:24
cbcbillingnanotube: ill try it by now06:24
cbcbillingnanotube: wow! cool06:25
nanotubecbcbilling: ?06:25
supaedbian, i have tried this, but it will not launch06:25
dsnydersNetAnnoysMe, mtr is sweet.06:25
Viking667ohh, mtr. Yep, that's a good program.06:25
cbcbillingnanotube: i just updated my firefox06:26
Viking667... cept it doesn't "graph" results, or not as I've seen.06:26
nanotubecbcbilling: excellent :)06:26
cbcbillingnanotube: GOD BLESS US ALL06:26
nanotubecbcbilling: lol06:26
edbiansupa: Is it executable?06:26
supayeah, i can run it in the terminal and it will launch06:27
spOare bzr codes and packages held on user local machines, or are they held on launchpad's servers?  because PPA is fast but some of my bzr downloads are slow06:27
Brando753is there a way to sync the data on my two laptops on Korganizor06:27
edbiansupa: Can root run it?  init runs things as root06:27
nanotubecbcbilling: well, now that it all worked out, i think i'll get some sleep :)06:27
supahow would I check? sudo?06:27
edbianyeah06:28
edbianor su06:28
supanope, it can't.06:28
supawhat can i do? can i run it as a user or something?06:28
edbiansupa: You can change the permissions to allow root to run it.06:28
edbiansupa: "sudo chmod +x <file>" will make it executable by all users.06:29
cbcbillingnanotube: THANK YOU for the BIG HELP... ff3.5 is really damn fast06:29
edbiancbcbilling: Is it a lot faster than ff3.0 on ubuntu?06:29
Pitchcan anyone tell me how can I disable automount in gnome ? and only root should  be able to mount other ntfs partitions06:30
cbcbillingedbian: yeah is really damn fast06:30
nanotubecbcbilling: great to hear. enjoy :)06:30
cbcbillingnanotube: GOD BLESS the INTERNET06:30
edbiancbcbilling: Nice! :)06:31
nanotubeedbian: in my experience, it is much faster in rendering pages and all that stuff. there are also benchmarks that show it being "twice as fast" as ff3, though i'm not sure if it really is "twice as fast", it is noticeably faster.06:31
nanotubecbcbilling: hehe indeed06:31
edbiannice :)06:31
edbianI'm excited to try it on debian!06:31
cbcbillingnanotube: last two days after upgrading my ff to ff3.0.13 i really have a hard time browsing06:32
cbcbillingand as i try to see the error console of ff... damn theres to many error06:32
nanotubecbcbilling: heh06:32
cbcbillingnanotube: thank you for the help.....06:33
nanotubecbcbilling: you are quite welcome. :)06:34
WilliamCCan you flash a bios in Ubunutu?06:34
edbianWilliamC: You cannot flash a bios while any OS is running.06:34
WilliamCedbian, I know, but a lot of the utilities only run in Windows.06:35
Bingo_NZHow can i flash a Bios ? please ?06:35
cbcbillingnanotube: my friend told me to go back to MICROSUCK OS... because i cant browse well... he is convincing me but i dont want to go back for that crap OS06:35
manishedbian: good monring06:35
edbianmanish: What up?!06:35
manishI'm fine06:35
WilliamCXP doesn't have to suck if you know what you're doing.06:36
WilliamCI've been running XP for months on end.06:36
manishedbian: I am getting GPG Error when I update from Synaptic Update Manager It says BAD Sign06:36
nanotubecbcbilling: hehe well, there are some legitimate reasons to stick with win, e.g., gaming, photoshop, autocad.... but browsing the web isn't one of them. :)06:36
Bingo_NZI need to install windows ....it says the harddisk is not dectected...but in the same system i installed linux now.06:36
Bingo_NZwhat to do ?06:36
Guest2549how would I install the C plugin for eclipse?06:36
edbianmanish: ?  That's odd.  Try switching servers in System -> Admin -> Software sources06:36
cbcbillingnanotube: you are really right....06:36
nanotubeWilliamC: it's a 6 year old OS - most of us have run it for years on end. :)06:36
edbianBingo_NZ: windows does not see ext3 file systems06:37
cbcbillingnanotube: i do always to catch some network work using ff on xp06:37
manishedbian: ok trying06:37
WilliamCnanotube, I meant without turning off my laptop.06:37
nanotubeWilliamC: before coming over to the dark side. err, i mean, light side. :)06:37
WilliamCI'm running Ubuntu on another computer.06:37
cbcbillingnanotube: the file is jvqms.vmx i think06:37
Bingo_NZI know that...thats y i am trying to flush the flash memory...but i dont know how to do that....06:37
Bingo_NZsome one hlep me plz06:37
nanotubeWilliamC: ah yea, i've done that too - all hail the "suspend" feature :)06:38
Pitchok, you should not allow anyone to use your ubuntu if you have any confidential documents in your ntfs windowsxp partition06:38
nanotubeWilliamC: but now whenever i go back to windows, i feel like a fish out of water. no "focus follows mouse" ? no terminal? no multiple desktops? wtfsck is up with that? :)06:39
Veinornanotube: no gnome-do06:39
VeinorPitch: oh, sorry06:39
Veinorfirst unmount the partitions06:39
Veinorthen edit /etc/fstab as root06:39
WilliamCDo games run in WINE faster than they would in native Windows?06:40
nanotubeVeinor: hmm, never used that... what's that do?06:40
nanotubeWilliamC: probably not....06:40
Veinorquick program launching06:40
cbcbillinglinux reminds of cisco OS06:40
cbcbillinglol06:40
nanotubeVeinor: like, "alt-f2" ?06:40
Veinoryeah, but you don't have to type the full name out :P06:40
Veinorplus you can do other stuff with it, like open ssh/vnc connections06:41
WilliamCnanotube, on top of that I'm having issues mounting a NTFS USB drive in Linux.06:41
nanotubeVeinor: at my typing speed, i'd rather type than mouseclick. :) besides, alt-f2 also autofills, so you don't have to type it all out.06:41
Veinornanotube: gnome-do is keyboard-launched, though06:41
VeinorI have it on meta-space06:41
nanotubeVeinor: hmm... i'll give it a look at some point - sounds interesting. :)06:41
LoafersWhy am I unable to move a 4.4 GB File onto my 100 GB External HD formatted as FAT 32?06:42
Veinorit's cool :D06:42
lstarnesLoafers: doesn't FAT 32 have a file size limit?06:42
nanotubeWilliamC: good thing i don't have to mount ntfs drives on my linux. :)06:42
PitchVeinor: done both, fstab does not have any mention about /media/WinXP06:42
Viking667it does - about 2GB if I remember correctly06:42
VeinorLoafers: Because the FAT32 filesize is 4 GB - 1 byte06:42
nanotubelstarnes: Loafers: indeed, it does, max size is 4g06:42
VeinorPitch: odd, it shouldn't auto-mount it then06:42
nanotubeor was that 2g?06:42
LoafersVeinor, What should I do then?  GParted won't let me format it as NTFS...06:43
VeinorLoafers: it won't?06:43
Veinoris ntfs-3g installed?06:43
LoafersVeinor, The option is greyed out.06:43
Xerranedbian: actually you can flash a BIOS from within an OS but I'm not sure about Linux06:43
nanotubeWilliamC: haven't had reason to mount anything ntfs in years... but my understanding is that ntfs3g has gotten that down by now...06:43
Veinorif the package ntfs-3g isn't installed on your computer, do that and then try06:44
Xerranit's unsafe anyway06:44
lowlycoderhow can i play mid files on ubuntu?06:44
LoafersVeinor, ntfs-3g 2009.2.1 external FUSE 27 - Third Generation NTFS Driver  Yeah its installed06:44
nanotubeLoafers: try "sudo apt-get install ntfs-3g ntfsprogs", then gparted again.06:44
VeinorOh yeah06:44
Veinorntfsprogs06:44
Loafersnanotube, ok thanks06:44
PitchVeinor: it is controlled by gnome gvfs deamon, not by fstab, but I don't know which file it is reading before mounting the partitions06:44
VeinorI dunno, then06:45
Veinor:/06:45
nanotubelowlycoder: hrmm... try searching in synaptic, by description and name, for 'midi', i bet you'll come up with something.06:45
greyz`i am using ubuntu 9.04 and when i tried 'amarok 2.02 KDE' there was no sound, so I followed the advise here: https://answers.launchpad.net/ubuntu/+source/amarok/+question/67045  -- by installing those 4 packages mentioned in the second post.  So now I have audio working for amarok2, just not anything else. :(06:46
stealth-I set the environment variable SDL_AUDIODRIVER=alsa to make a game sound work, but unfortunately I get a "No available audio device" unless running the program as root. The program uses a SDL mixer. Any help?06:46
manishwhen I type in chat it gives sound in every key dipresession how to stop it06:47
snoopysuppp06:47
snoopy|:06:47
greyz`hello snoopy :D06:48
corpxiclewhy does it seem like this laptop is slower than shit these days ?06:48
corpxiclerunning ubuntu 9.04 on a dual core with 4gb ram06:48
snoopywasup greyz  8D06:48
manishwhen I type in chat it gives sound in every key dipresession how to stop it06:48
corpxiclemaybe i should change to another browser06:48
xim_can someon help me figure out how to manipulate my gnome menues throught the terminal?  is there a hidden directory tree somehwere?06:48
corpxiclemanish: any particular app youre using ?06:49
SunStealerhmm, anyone use xev or other utilities to find and map multi-key mouses?06:49
williamI'm on twice with two different PCs06:49
williamnyah06:49
=== william is now known as Guest93924
=== Guest93924 is now known as WilliamC2
manishcorpxicle: I am chatting from Gnome-Xchat06:49
corpxiclemanish: have you tried looking in "options" or "preferences" or whatever it might be called06:49
corpxiclei dont use the gnome version of xchat myself06:49
corpxiclei use real xchat06:50
manishcorpxicle: it started suddenly06:50
SunStealerI want to find a way to map two buttons on my logitech mouse to alt and control, so that my wow-addiction can continue under linux06:50
sondheyas -- ive got a drive that no-matter what i have tried so far will only mount read only -- what should i look out for ?06:50
manishedbian: when I type in chat it gives sound in every key dipresession how to stop it06:50
myselfwhat are commands to type to get some badass unicode fonts so i can see the faces my anime friends post06:50
L1nUX1z3Rsond, does it mount automatically?06:50
corpxiclemanish: have you tried looking in "options" or "preferences" or whatever it might be called ?06:51
manishcorpxicle: ok checking06:51
snoopysooo06:51
l00t /s ns1.thugempire.net +700006:51
LoafersHow unstable is jaunty-backports?06:52
myselfyo!!! where do i get unicode fonts!!!06:52
manishcorpxicle: there is no such setting06:52
corpxiclemanish: then i guess its not xchat making the sound06:53
lowlycoderwhy is timidity -Ov so slow?06:53
sondL1nUX1z3R: its a root drive and it will boot on its own, but only readonly , when i try to mount from another functioning system i still can only get readonly..06:53
lowlycoderwhy is timidity -Ov so slow? (takes a few seconds to convert a minute midi song)06:53
WilliamC2Because you touch yourself at night.:P06:53
=== spO is now known as joejc
corpxiclelowlycoder: what are you comparing too ?06:54
corpxicle-o06:54
L1nUX1z3Rsond, check your /boot/grub/menu.lst06:54
lowlycodercorpxicle: it just seems like it should be much much faster on a modern machine ....06:55
manishcorpxicle: after I stopped & started gnome-xchat speaker stopped beeping on every key depressesion06:55
corpxiclelowlycoder: so you have no idea if its slow or not ?06:55
lowlycodercorpxicle: these are encoded midi songs of snes games06:55
corpxiclemanish: good, then you solved the problem06:55
sondL1nUX1z3R: that shouldn't matter if im mounting it onto another system surely ?06:55
lowlycodercorpxicle: if a snes can play it in real time, it should be blazingly fast on a modern cpu to just encode it06:55
manishcorpxicle: Problem solved itself06:55
sondL1nUX1z3R: i mean i could just be wanting to wipe it ..06:56
corpxiclelowlycoder: if you really want to pursue this issue, i would talk to whoever coded the program youre using06:56
L1nUX1z3Rsond, do u want to wipe it?06:56
bonez46I run the following, as root > 'useradd -G mail scott' and it reports 'useradd: user scott exists' which suggests that 'id scott' should list mail as a group to which scott belongs.. and yet, 'id scott' does not include 'mail' as a group, but does include others.. WHY?06:56
neoxhelo guys i need help with my OS06:56
XerranHey06:56
bonez46neox whatcha need?06:56
corpxiclebonez46: no it doesnt06:56
crushyboihello everyone06:56
corpxiclebonez46: it suggests that the id "scott" exists06:56
XerranHello06:56
neoxmy first prblem was a blank screen on login06:56
corpxiclebonez46: try "usermod"06:57
sondL1nUX1z3R: nope actually i want to change edit /etc/network/interfaces06:57
vadi01hi i want to customise the ubuntu live cd for my office users06:57
vadi01what is the best prog to use there?06:57
crushyboianyone who can help me with ss5?06:57
L1nUX1z3Rsudo it, sond06:57
neoxgot some couple of adjustments made on xorg.conf.then when i restart..still blank screen.06:57
neoxkeyboard doesnt function coz the light for the num lock wont work06:57
L1nUX1z3Rsond, sudo gedit /<the path of the file>06:57
vadi01as in i just want to make a out of the box live cd which only installs specific things without games and stuff06:57
neoxits been three days..T_T06:57
sondL1nUX1z3R: yes i have sudoed06:57
bonez46corpxicle: how would I use usermod?06:58
L1nUX1z3Rsond, does it work?06:58
L1nUX1z3Rit should06:58
sondL1nUX1z3R: but can not get it to mount rw06:58
corpxiclebonez46: just like you did useradd06:58
crushyboihi L1n8x1z3R06:58
L1nUX1z3Rcheck with /etc/fstab file...06:58
Bodsda_Can I ask a favour of someone please? could you download this http://paste.ubuntu.com/251175/ text file, save it as ~/text  and then run the followinf awk statement and paste the results.     cat ~/text | awk 'BEGIN { FS = "   "} ; {print $1}        can you change the variable $1 until you get two pastebins one with each column of output?06:58
sondL1nUX1z3R: if i reboot mount it again - the edits have not applied06:59
L1nUX1z3Rsond, that is involved with mounting and all06:59
bonez46corpxicle: help me understand the difference tween useradd and usermod06:59
it-linuxubottu: please tell me the link howto edit fstab to auto mounting file system ext or vfat or ntfs. Thanks06:59
ubottuError: I am only a bot, please don't think I'm intelligent :)06:59
Bodsda_I am stuck on windows so cant do this06:59
corpxiclebonez46: useradd adds a user, usermod modifies an existing user. also, there are manuals for both06:59
prince_jammysbonez46: useradd adds a new user. usermod modifies an existing user.06:59
crushyboi:-s06:59
prince_jammysman usermod before your break things with -G06:59
corpxicle-G shouldnt break anything07:00
corpxicle-g might07:00
waanDoes anybody know roughly when firefox 3.5 will be added to the repositories?07:00
Bodsda_it-linux, http://bodhizazen.net/Tutorials/Understandingfstab.pdf07:00
prince_jammysthat07:00
prince_jammysthat's not what the manual suggests.07:00
corpxicleoh ?07:01
prince_jammyswhich is why <man dangerous_command> is generally a good idea.07:01
it-linuxBodsda: thank you so much07:01
bonez46prince_jammys: ok, now that I ran 'usermod -G mail scott' now 'id scott' lists this >> uid=1000(scott) gid=1000(scott) groups=1000(scott),8(mail)   yet.. I am in a lot more groups than just 'mail'07:01
Bodsda_it-linux, your welcome.07:01
prince_jammysIf the user is currently a member of a group which is not listed, the user will be removed from the group.07:01
prince_jammyswhich is why <man dangerous_command> is generally a good idea.07:01
corpxicleheh07:01
corpxicletoo right07:01
crushyboiss5 please07:01
crushyboianyone :-w07:01
corpxicle-G -a then07:02
sondL1nUX1z3R:  yes i am trying to mount a drive rw, but it will not mount read write, i have never encountered this prob before07:02
L1nUX1z3Rwhat does the line in /etc/fstab say?07:02
cattellaris it me or the repo server's are down?07:02
stealth-waan: it is in the respritories07:03
cattellari cant download neither from my contry's one,or the main one07:03
sondL1nUX1z3R:  example mount -t ext3 -rw /dev/sdb1 /bob07:03
L1nUX1z3Ryes07:03
L1nUX1z3Rit's supposed to work if thats the line..07:03
prince_jammysbonez46: now you are not a member of admin anymore, so you probably won't be able to sudo.07:03
nascentmindhi. I am getting a "packages cannot be authenticated". how do i fix it?07:03
L1nUX1z3Rsorry but i have to go for a class...07:03
chidHow can I install ubuntu to USB disk, persistant 8.10 from the disk?07:04
carlahi!07:04
waanstealth-, ohh whoops07:04
it-linuxBodsda_: this is the article that I need.07:04
Bodsda_chid, https://wiki.ubuntu.com/LiveUsbPendrivePersistent07:04
Bodsda_it-linux, good, glad I could be of help, but I'm just the messenger, bodhi_zazen wrote that guide07:05
neoxanyone know an effective solutions to this blank login screen???07:05
it-linuxBodsda_: please tell him my thanks07:05
crushyboianyone ?07:05
crushyboii am stucked on ss5 configuration07:06
Bodsda_it-linux, you could tell him yourself :) He idles in #ubuntu-beginners he may not be awake though but he will get a pm when he wakes up or he should see the ping07:06
sondanyone else have any suggestions as to why i am unable to do this - sudo mount -t ext3 -rw /dev/sdb1 /bob ?07:06
chidBodsda_, hmm.. thanks07:06
it-linuxBodsda_: okay..I'll go to tell him now...07:07
neoxanyone know an effective solutions to this blank login screen???07:07
dsnyderssond, are you getting an error message?07:07
Bodsda_!repeat | neox07:07
ubottuneox: Don't feel ignored and repeat your question quickly; if nobody knows your answer, nobody will answer you. You can search  https://help.ubuntu.com or http://ubuntuforums.org while you wait.07:07
sonddsnyders: nope, it mounts i make changes, reboot all changes gone - no its not a scsi disk with jumpers set to RO either..07:09
crushyboianyone who can help me with ss5 :(07:09
dsnyderssond, is it writable before you reboot?07:09
sonddsnyders: i mounted it RW ..07:10
xim_where does ubuntu store custom application launcher shortcuts i have created?07:11
nascentmindhow can i fix the "packages may not be authenticated" message anyone?07:11
P79hi07:11
P79hi07:11
dsnyderssond, what does your /etc/fstab say?07:11
P79{=Guess that number=} has started! To guess a number, Type: +num <number between 1-100> and remember, you only have 60 seconds!!07:11
FlannelP79: Please stop that.07:12
xim_lol07:12
ducklansond: can you find sdb1 in /dev?07:12
P79Game over!! You all lose! The correct number was 98 {=Guess that number=}07:13
morphlesin kde ubuntu 9.04 in hde (version 4.2.2) theres this a bit uncool bug: after you suspend or hibernate and resume it doesnt ask to unlock pc, there is bug report filled for this, but no workaround, maybe somone nows some nice workaraound for this? or should i better ask in #kde ?07:13
zirodaynascentmind: take a look at http://popey.com/blog/2009/06/05/Easy_Script_To_Get_And_Install_PPA_GPG_Keys/ to get GPG keys for PPA's automatically07:13
sonddsnyders: why would that matter  ? i'm telling some auxillary disk to mount where and how i want it to ( the mount point is writeable btw )07:13
* P79 announces: "Fortune Cookie is now ACTIVE" Use: +fortune and you will get a fortune cookie :)07:13
dsnyderssond, because you say it goes back to readonly when you reboot.  Mounting is controlled by the /etc/fstab file.  So we need to check whether it is being told to mount readonly.07:14
nascentmindziroday, i am not using any ppas.07:14
waanstealth-, I've installed firefox-3.5, and removed the old one, but the application still says firefox 3.0.1307:14
myselfyo is there a way to download unicode fonts for ubuntu??????07:16
sonddsnyders: i boot the system mount an additional disk "somewhere" do some writes to it , unmount it, reboot system , mount the additional disk 'somewhere" again , and find that it had not written..07:16
waanor rather, how do you change the menu item to point to firefox 3.507:16
sond.. i'm suspecting its a hardware thing..07:17
gartralanyone have any problems while formatting a Sandisk Cruzer micro USB stick?07:18
dsnyderssond, what kind of disk and partition is it?07:19
sonddsnyders: IDE root partition ( /dev/sdb1 )07:20
sonddsnyders: im booting with /dev/sda07:21
dsnyderssond, what does it say when you issue: sudo fdisk -l /dev/sdb07:22
crushyboi  need help with iptables07:22
sonddsnyders: BRB07:22
BilalHow to use internet expoler optimized website in ubuntu 9.04?07:22
gartraldsnyders: you'll need too have him sudo that07:22
bonez46prince_jammys: thanks. I readded myself to all those groups..;)07:23
maco!ie07:23
ubottuFor Irish ubuntu support, visit #ubuntu-ie, agus tá uisce beatha agus cuidiú Ubuntu isteach an #ubuntu-ie, Béag fáilte ort!07:23
=== Hyperion2010|out is now known as Hyperion2010
macogrrr07:23
prince_jammysbonez46: good.07:23
maco !ie4linux07:23
ubottuSorry, I don't know anything about ie4linux07:23
crushyboiie grrrrr07:23
macoubottu: fat load o' good you are!07:23
ubottuError: I am only a bot, please don't think I'm intelligent :)07:23
crushyboiff :D07:23
dsnydersgartral, I think you misread what I typed.  It has a sudo already.07:23
macoBilal: google for ies4linux or ie4linux. the website will be tatanka-something07:23
crushyboiubottu: ss507:24
ubottuSorry, I don't know anything about ss507:24
macoBilal: its a way to install ie in wine07:24
Flannel!ies4linux | maco07:24
ubottumaco: ies4linux is a script that quickly and effortlessly helps you install 3 versions of IE in Wine. Information can be found at http://www.tatanka.com.br/ies4linux/page/Main_Page including instructions specifically for Ubuntu. ies4linux is aimed at web designers and ie-only sites, so please, don’t use any of the IEs to navigate! Use Firefox!07:24
gartraldsnyders: oops.. your right, my appologies07:24
crushyboiubottu: iptables07:24
gartral!crap07:24
ubottuUbuntu, like any other linux  distribution, has firewall capabilities built-in. The firewall is managed using the 'ufw' command (see https://help.ubuntu.com/community/Uncomplicated_Firewall_ufw), or 'iptables' (https://help.ubuntu.com/community/IptablesHowTo). GUI applications such as Firestarter/Gufw (Gnome) or Guarddog (KDE) also exist07:24
ubottuSorry, I don't know anything about crap07:24
=== c is now known as charitwo
* gartral wins07:24
Bilalmaco: thanks07:24
macoFlannel: oh theres an s afterall07:25
Thibit!language | gartral07:25
ubottugartral: Please watch your language and topic to help keep this channel family friendly.07:25
silv3r_m00nhi there07:25
SunStealerlet us just stop abusing the bot07:25
SunStealerplz.07:25
maco!anything07:25
silv3r_m00nis it possible to store some information about a file inside it ...07:25
ubottuSo, you wanted to lure me into saying I don't know anything about anything? Yeah, that would be funny, of course. Now leave me alone.07:25
dsnydersgartral, NP, we all miss stuff.  I've sat at a stop sign waiting for it to change once.07:25
macooops07:25
macobad timing07:25
gartralThibit: i was actually crying too see if ubottu knew anything about craps, which is a game07:26
ThibitAh, k07:26
sonddsnyders: nothing unusual07:26
gartraltrying*07:26
dsnyderssond, is it a linux partition?07:26
outyhas anybody got a link to a guide to install kde on one of the other desktops ?07:27
gartraland hell is a place, not a swear word ;P07:27
outyso like, desktop 1 is gnome, desktop 2 is kde07:27
sonddsnyders: yes07:27
UBUNTU-ROCKZ-i have a big problem whit ubuntu  can someone help me ???07:27
gartral!help | UBUNTU-ROCKZ-07:27
ubottuUBUNTU-ROCKZ-: Please don't ask to ask a question, simply ask the question (all on ONE line, so others can read and follow it easily). If anyone knows the answer they will most likely reply. :-)07:27
macoouty: sudo aptitude install kubuntu-desktop07:27
macoouty: OH.... ummm...you mean like on different workspaces, same session? no07:27
macoouty: ive heard of running a gnome session on one screen and a kde session on another, but remember two totally separate sessions. cant copy and paste between them or anything07:28
macoouty: of course, you can use kde apps in gnome just fine and the reverse as well07:28
dsnyderssond, what does it say when you issue: cat /etc/mtab07:28
UBUNTU-ROCKZ-oke i instaled ubuntu on my laptop but forgot to make free space for the partision and now a run low on memory07:28
macomemory or disk space? the two are unrelated. memory and partitioning are unrelated, that is to say07:29
UBUNTU-ROCKZ-disk space07:29
macoyou can boot the live cd again and use gparted on it to resize your partitions07:29
UBUNTU-ROCKZ-i can't its locked07:30
macowhat is?07:30
UBUNTU-ROCKZ-the ubuntu partision is locked07:30
MyrttiUBUNTU-ROCKZ-: boot with the live cd?07:30
cuddlefishHello, I have an issue with a Nvidia  ck8s motherboard with onboard sound.07:30
sonddsnyders: /dev/sdb1 /bob ext3 rw07:31
gartral!livecd | UBUNTU-ROCKZ-07:31
ubottuUBUNTU-ROCKZ-: The Ubuntu Desktop CD is a "LiveCD" which can be run without altering existing files on your harddrive. Especially useful for testing your hardware's compatibility, it also includes an install option.07:31
xim_has nobody ever found a stable ubuntu solution to playing flash videos?07:31
cuddlefishThe output works, but all I get is static for the Mic07:31
UBUNTU-ROCKZ-i know what a live cd is07:31
cuddlefish_xim: try Flash07:31
gartralxim_: flash 9 dev r256 is working fine for me07:31
macoUBUNTU-ROCKZ-: locked....you sure its not just mounted? unmount it then resize?07:31
xim_cuddlefish, thanks for the helpful reply07:32
spOapt-get build-dep will build any dependencies that a package needs?07:32
FlannelspO:07:32
xim_gartral, are you on 32 or 64 bit?07:32
UBUNTU-ROCKZ-i donu how can i unmount07:32
cuddlefishyou're welcome!07:32
Hollywood-HoganHi could someone help me with Ubuntu install display problem?07:32
gartralxim_: 32 and 64, both work, but 32 isn't producing sound >.<07:32
FlannelspO: no, it gets the dependencies needed to build.07:32
dsnyderssond, what do you get when you: ls -ld /bob07:32
UBUNTU-ROCKZ-how to unmount a partision07:32
gartralUBUNTU-ROCKZ-: umount, and please stop butchering the word "Partition"07:33
spOflannel, dpkg -i   somedebpackage.deb   won't install because ti has dependencies, but   apt-get build-dep   somedebpackage       won't fix that?07:33
UBUNTU-ROCKZ-how to unmount07:33
crushyboii have multiple ip's on my server which i added using network script, now what i want is, whenever a users request sometihng from server using server ip for example 192.168.1.2 on port 6000 then the data should be returned from the same ip rather than tha main ip of server. is it possible anyway?07:33
Hollywood-HoganI am installing Ubuntu on a laptop that has dead display on laptop, so I connect to CRT monitor. I boot the livedisc and can see Ubuntu load, but then I  lose my display once I enter the GNOME. Same wiht the Install screen. I replace CRT, same problem. Any ideas?07:34
gartralUBUNTU-ROCKZ-: i just told told you, umount... so you would use umount /dev/sda once in the live d.. and please GOD don't do that when your booted off the hard drive07:34
FlannelspO: No, Try gdebi instead of dpkg07:34
SunStealeranyone do photo printing in linux? I got an epson 3800 stylus pro, and some sites says that it will be a very expensive paper weight in linux07:34
UBUNTU-ROCKZ-thx for help07:35
crushyboii have multiple ip's on my server which i added using network script, now what i want is, whenever a users request sometihng from server using server ip for example 192.168.1.2 on port 6000 then the data should be returned from the same ip rather than tha main ip of server. is it possible anyway?07:35
grawitycrushyboi: Isn't that how it always works?07:35
gartralSunStealer: epson, lexmark, and i *think* brother printers have no support in linux07:35
eoamitI'm trying to compare the differences between two ANSI encoded files. When I try "diff -a file1 file2 > output.txt", I get a bunch of jarbled text. What can I do?07:36
minixicrushyboi, only through routing07:36
gartraldoes anyone know why it is when i unmount a flash drive the NODE dissappears and i cant edit the partitions?07:36
crushyboigrawity: no, the service which i bind to an ip like 192.168.1.2 on port 6000 if i connect to it and check packets, packet comes from server ip like 192.168.1.1 rather than 192.168.1.207:36
minixicrushyboi, one server you can do this with, however, is apache configured for virtual IPs07:36
SunStealergartral: ach, well, that ends my testing linux :/07:36
gartralSunStealer: sorry, maybe you could write a driver?07:37
SunStealergartral: haha, I'm the least programming savvy creature on this side of equator I'm afraid :-)07:37
crushyboiminixi: its a proxy server ss5 which i bind to particular ip on particular port, problem is the return ip, no matter what ip i use, but client gets the main ip of server.07:37
minixiSunStealer,  you can do two things; try to get it working with Wine, or find a wrapper for the driver07:38
dsnydersSunStealer, don't let that turn you off linux.  You may be able to use some alternate driver, or run a virtual windows.07:38
minixicrushyboi,  yes, that's because of the routing07:38
sonddsnyders:  ls -ld  /bob .07:39
minixicrushyboi,  you could define static routes, but it wouldn't be feasible for a large number of clients07:39
SunStealerhmm, I'm kind of dependant on 100% correct color control etc, but I'll see what i can find on wrappers!07:39
macohp printers are like $60 and all work as soon as plugged in07:39
SunStealer(can you run a driver from withing for instance wine?)07:39
macoand actually, lexmark has drivers07:39
SunStealerhehe, my printer is 1600,- and print amazingly :-)07:39
dsnyderssond, yes, what's the output?07:39
macotheyre not postscript printers with ppd's like we're used to, but they do provide compilable drivers on the website07:39
crushyboiminixi: can we do something like route will check for which ip the request came from and then return with same ip?07:39
minixicrushyboi,  the only other way is running small virtual machines and route via NAT07:39
macoand a kit for writing drivers if you find one not currently supported, i think07:40
minixicrushyboi,  you could do that statically07:40
minixicrushyboi, research static routing07:40
crushyboiminixi, ok bro, but am lost for now, don't know anythng about static routing.07:40
WilliamCI need to put my Linux PC on something, laying on the floor and looking up at the monitor hurts my neck07:40
minixicrushyboi,  but going the virtual OS path is almost always easier07:40
sonddsnyders:  thats it for the /bob it returns a dot if i do ls -al /bob i get the dir listing i expect07:40
crushyboiminixi, though i heard its possible using iptables, but i don't know how07:40
minixicrushyboi,  lol, well your problem is all about routing. :)07:41
SunStealerI'll look into pwrappers07:41
WilliamCAlso, should I switch back to XP due to me mostly being a gamer?07:41
minixicrushyboi, yeah, you could NAT the traffic coming in ... but again, that is routing07:41
minixiWilliamC, dual booting seems too hard?07:41
crushyboiany howto's for that? or if you can explain , i will be thankful to you :)07:41
chal`awayare there secrets to installing Skype on Jaunty/ 9.04?07:42
minixiSunStealer,  yeah you may find a wrapper ... maybe ndis07:42
gartralchal`away: called gizmo07:42
WilliamCminixi, I generally don't have a purpose to do it, and really I have no reason, other than curiosity, to be running Linux, I mean, it's not faster than Windows.07:42
WilliamCI play games.07:43
dsnyderssond, weird.  You should be getting something like drwxr-xr-x 2 root root 48 2007-03-01 23:51 /bob07:43
chal`awaygartral, should i google that? i have 64 bit07:43
minixiSunStealer, sorry, hit enter too soon :) ... "maybe ndis like wrapper"07:43
minixiWilliamC, then don't use it lol07:43
gartral!gizmo | chal`away07:43
ubottuSorry, I don't know anything about gizmo07:43
minixiWilliamC, why do we care what you use?07:43
gartral!gizmo5 | chal`away07:43
ubottuSorry, I don't know anything about gizmo507:43
crushyboi8-|07:43
gartral!info gizmo5 | chal`away07:43
ubottuchal`away: Package gizmo5 does not exist in jaunty07:43
grawitychal`away: gizmo is not skype.07:43
WilliamCI use gizmo, I've been having issues in it.07:43
WilliamCGizmo is compatible with skype.07:44
chal`awayhere's my problem: http://ubuntu.pastebin.com/m52348c5b07:44
gartralgrawity WilliamC chal`away gizmo is not skype, but DOES work with skype networks07:44
grawitygartral: it does? since when?07:44
gartralgrawity: opensky07:44
dsnyderssond, try ls -ld /07:44
WilliamCgartral, that's just what I said.07:44
crushyboichal`away : try this http://technical-itch.co.uk/2007/09/18/how-to-install-skype-on-ubuntu/07:45
dsnyderssond, sorry, ls -l /07:45
gartralWilliamC: ok, you beat me too it well i was typeing names, but don't ya know redundancy is a good thing in computing ;)07:45
chal`awaycrushyboi,  thanks :)07:45
WilliamCAnyways, is using WINE to run Windows games faster than running Windows games in Windows?07:46
minixicrushyboi,  it's not all that hard. Take a day and study routing. You'll be a better person for it07:46
sonddsnyders:  duh ! sorry i was in /bob when it returned the dot from / doing ls -ld i get as above drwxr-xr-x root root /bob etc07:47
minixiWilliamC,  of course not07:47
minixiWilliamC, dude, just use windows. It makes you happy07:47
WilliamCUh, I need to download Windows, I have the serial still though07:47
sondand from / doing ls -l /bob lists a writeable dir list07:47
gartral!OT | WilliamC07:48
ubottuWilliamC: #ubuntu is the Ubuntu support channel, for all Ubuntu-related support questions. Please use #ubuntu-offtopic for other topics. Thanks!07:48
nevynWilliamC: that's nice for you.07:48
minixiWilliamC,  you can get a demo version of Windows 7 that's good for another 6 months from Microsoft07:48
kiaas__WilliamC, congratulations, that is illeggal.07:48
minixiWilliamC, anyway, this is all OT07:48
kiaas__WilliamC, borrow a CD from someone you know.07:48
minixi!ot WilliamC07:48
ubottuSorry, I don't know anything about ot WilliamC07:48
minixilol07:48
WilliamCStop calling me off topic.07:48
kiaas__You are, WilliamC07:48
WilliamCI get the point.07:48
minixiWilliamC, take it somewhere else07:48
gartralkiaas__: not really, the iso is legal as long as you do have a valid... hard copy key >.>07:48
saurabh_hey, can any one help me with adobe flash plugin issue??07:48
crushyboi:(07:49
WilliamCWhat's the issue?07:49
kiaas__gartral, you have to get the ISO from a valid source. Guess what..the pirate bay isn't a valid source.07:49
saurabh_actually, I ahve the latest adobe's flash plugin installed, but whenever I watch videos on youtube, it says to upgrade07:49
minixiwho cares what he does or how he does it? It's not relevant to the purpose of this channel07:50
saurabh_while, on other sites, it says to install adobe plugin to view video07:50
zamolxeshello. I installed a fresh 9.04 , installed the nvidia drivers and did the updates simultaneously, and on reboot xorg didn't start (no screens found) . Now I reinstalled the system (not because of that, i needed raid and didn't have an alternate cd handy then). Question: what caused xorg to bork? should i install the updates, reboot, then install the nvidia drivers?07:50
gartralkiaas__: um... MS does have it on their ftp site, ever since that CAL for Vista07:50
grawitywho cares if it's MS or TPB... you have a license to use one copy of $RELEASE, that's all. </offtopic>07:50
WilliamCHave you checked what version it says is installed in browser?07:50
saurabh_WilliamC, can u help me??07:50
* gartral agrees with grawity and disengages07:50
saurabh_ya, about plugins07:50
saurabh_about:plugins07:50
=== simo is now known as Guest181
kiaas__Bah. When is adobe going to fix the massive slow downs in flash? Firefox under WINE locks up a lot.07:50
zamolxesi figured maybe a new xorg/kernel got in with the updates and that caused it07:50
Guest181hello everyone, can some one please tell me how I can copy a file from ROOT to desktop?07:50
th^zamolxes: breakage sounds pretty.. strange. but i would do either one first07:50
th^zamolxes: yes, nvidia has kernel drivers :p there's a slight change something went wrong there. but i've never seen such thing happen07:51
th^zamolxes: especially since X should always start in VGA safe mode07:51
Pecarhi is tthere some program to synchronize with a palm hp which in win uses Hotsync for this proposal?07:51
dsnyderssond, sorry, nothing is sticking out to me.  It may be that the drive cable may not be seated fully.  Anyways, I've got to sleep.  Sorry I wasn't able to help.07:51
saurabh_WilliamC, would u mind to come for a private chat07:52
zamolxesth^: I didn't do anything too advanced, just responded to the popups with clicks :)07:52
gregorio1982qui italiani?07:52
th^Zedde: yep, it sounds strange still :p07:52
gwildorPecar,  open synaptic, and seardch for palm pilot.....you would get the result faster than i could look then post here07:52
macogregorio1982: #ubuntu-it07:52
th^*zamolxes07:52
gregorio1982ty07:52
th^zamolxes: try installing nvidia drivers first - check if it boots up, then install updates07:53
zamolxesth^: right. maybe when i have the time i'll try to reproduce it and see what actually went wrong07:53
sonddsnyders:  thanks for trying - yep its a weird one - i may try to clone it to another disk (dd if=/dev/sdb1 of=/dev/newdisk ) then do those edits ..07:53
zamolxesalthough it could've been a random event07:53
th^zamolxes: though i don't even see how you could do those things same time, as apt can operate only one instance at time :p sounds like a bug in driver manager if it allows that07:53
zamolxesth^: i think nvidia already finished installing its thing07:54
HordekingHowdy. I've got a few questions for someone in the know about sound with X, and fstab (the way ubuntu is doing it)07:54
Pecargwildor Thanks a lot. Tomorrow i'll try it. Thanks07:54
zamolxesth^: just didn't reboot07:54
HordekingThis is something that might be better approached in /msg07:54
=== hell__ is now known as Hellwings
minixiHordeking,  just ask07:54
th^zamolxes: sounds pretty random. that should not affect at all07:54
gwildorHordeking, pm me, ill try07:55
th^zamolxes: although... now since there's that KVM thing that builds new kernel modules in boot, it might be that it built for older kernel..07:55
th^or what it was named :p07:55
HordekingWhatever...why the hell does sound stop when I alt-Fn to a console terminal, and how to I stop that bad behavior?07:55
simohayhahi, can anyone please tell me how I can copy a file from ROOT directory to Desktop?07:55
minixiHordeking,  it's better to just ask in the channel. Other people might have the same questions and learn from yours07:55
=== eternity is now known as Guest30528
th^simohayha: alt-f2, gksudo nautilus07:56
th^simohayha: then you get file browser in admin mode07:56
th^or was it gsudo :p07:56
UBUNTU-ROCKZ-i want to make my ubuntu partition bigger but its locked(not mounted i just tryed to umount on my live cd) can someone tell me how to unlock it (i am on the live cd right now)07:56
grawityth^: gksudo07:56
simohayhath^, I tried that but it still says I don't have permission07:56
minixiHordeking, that's probably set in Gnome07:56
th^simohayha: what file you're trying to copy?07:56
Hordekingminixi: gconf then?07:57
minixiHordeking,  I don't use Gnome so I can't help you there, but someone could point you to it's conf ... gconf07:57
minixiyeah07:57
RPG_MasterHas anyone else gotten the update which merges both your Firefox 3.0.13 and "Abrowser" into Shrateko?07:57
simohayhath^, its a .dv file I captured from my camcorder with Kino07:57
minixiHordeking, you'll find the key combos somewhere. They are usually easily found and changed07:57
th^simohayha: make sure the file has right to read too. 2nd click and properties, check it has 'read' flags07:58
Hordekingminixi: This doesn't sound much like a key combo thing...should sound keep on playing even if I go to a different terminal?07:58
Hordekingshouldn't, I should say07:58
chal`awaycrushyboi, still here?07:58
Hordekingminixi: ESD is the sound manager, how do I get at its configs?07:59
simohayhath^, I've put both read and write and root for Owner and Group07:59
UBUNTU-ROCKZ-i want to make my ubuntu partition bigger but its locked(not mounted i just tried to umount on my live cd) can someone tell me how to unlock it (i am on the live cd right now)07:59
minixiHordeking, describe your problem in more detail. What app is playing the sound? What do you do that stops the sound?08:00
th^simohayha: bizarre. try copy from terminal. can you do that or need instructions? :)08:00
chal`awayhttp://technical-itch.co.uk/2007/09/18/how-to-install-skype-on-ubuntu/ says i should have 'Tools --> Repositories.' I don't see tools?08:00
wally1337what's the difference between xubuntu-9.04-alternate-i386.iso and xubuntu-9.04-desktop-i386.iso08:00
Hordekingminixi: Well, I've never seen this issue before. I'm just playing audio through audacious, and I alt-f1'd to a console session to do some stuff, and the sound stopped. Then, when I came back, it started immediately.08:01
th^wally1337: alternative has text-mode installer only08:01
RPG_MasterOK, so I un-installed Firefox 3.5 and disabled the Ubuntu-Mozilla repo. But after I reinstalled Firefox 3.0.13 my add-ons, history, and bookmarks are gone but they're still in /.mozilla/Firefox . How do I fix this?08:01
minixiwally1337,  more Nirvana mp3s in the alternative one08:01
UBUNTU-ROCKZ-i want to make my ubuntu partition bigger but its locked(not mounted i just tryed to umount on my live cd) can someone tell me how to unlock it (i am on the live cd right now)08:01
Hordekingminixi: It seems a little far-fetched that the whole program would stop when I do that.08:01
minixiHordeking,  what happens when you start a terminal another way?08:01
minixiHordeking,  not with alt-f108:01
thedeaconwhen converting wmv to avi with mencoder I get a lot of "failed to open registry file" and "xx duplicate frames" - am i missing something?08:01
simohayhath^, i actually tried that and it says "cp: omitting directory `/root' "08:01
th^chal`away: System > Administration > Software sources is what you're looking for :)08:01
grawitysimohayha: You need to specify the source filename too...08:02
Hordekingminixi: You mean just by going to the menu and pulling up a terminal session? Nothing I wouldn't have expected. Sound keeps going, etc08:02
th^simohayha: if you want copy directories with cp, you need -R (recursive) parameter. did you really point cp to the _file_, not directory?08:02
UBUNTU-ROCKZ-i want to make my ubuntu partition bigger but its locked(not mounted i just tryed to umount on my live cd) can someone tell me how to unlock it (i am on the live cd right now)08:02
minixiHordeking, try it anyway. It will confirm my suspicions ... a key combo conflict08:02
crushyboihi minixi08:02
Hordekingminixi: All I did was alt-ctrl-f1 to a console window, like any sane linux distro08:02
crushyboican we route using iptables using the source header marking?08:02
Hordekingminixi: I've been opening terminal windows all night with no problems noticed.08:03
chal`awayth^ i got that part, i'm inside Synaptic, i think.. but no Tools, that I can see?08:03
simohayhath^, this is what I tried- sudo cp /root /home/simo/Desktop08:03
minixiHordeking, er, now you are saying you dropped from the GUI into a console login?08:03
RPG_MasterUBUNTU-ROCKZ-: Dude, try running "sudo gparted" in the terminal08:03
gwildorminixi, he is changing to a different tty08:03
th^chal`away: tool i listed opens the dialog you want for. i dunno why it's not there08:03
Hordekingminixi: Yup, tty's 1-4 all have the same effect. Come back to the X session, and it cranks back up08:04
th^chal`away: but system>administration>software sources opens the dialog in picture08:04
UBUNTU-ROCKZ-no two08:04
minixiHordeking, of course08:04
gwildorHordeking, you have used windows?... you have used fast user switching?... that is what you are  doing when you change tty08:04
minixiHordeking, when you go to terminal you are breaking the pipe to the GUI and the apps started through it08:04
xim_is there any way in gnome-terminal to send an f10 command or an f1 command (they both go to the gui)08:04
gwildorHordeking, all sound stuff is on tty1, when you change to tty2 sound isnt running anymore on what you are veiwing.....08:05
minixiHordeking, try starting the sound with a CLI app and put it in the background and then switch to a terminal and see what happens08:05
Hordekingminixi: I don't get it. How is that breaking the pipe? Shouldn't the pipe go right on existing?08:05
gwildorHordeking, you wouldnt want to hear the last channel, when you change to a new one when watching tv, would you08:05
gwildorHordeking, all sound stuff is on tty1, when you change to tty2 sound isnt running anymore on what you are veiwing.....08:05
RPG_MasterSecond post:     OK, so I un-installed Firefox 3.5 and disabled the Ubuntu-Mozilla repo. But after I reinstalled Firefox 3.0.13 my add-ons, history, and bookmarks are gone but they're still in /.mozilla/Firefox . How do I fix this?08:05
simohayhagrawity, thanks man I forgot to do that. Solved my prob08:06
minixiHordeking, the sound is still playing, but not on the new session ... only the old session08:06
simohayhath^, solved my prob thanks a lot08:06
HordekingOkay, this is wierd.08:06
gartralminixi: that sounds like maybe a driver issue, intel sound perhaps?08:07
prodigelHi. I've noticed nautilus sometimes displays old thumbnails for some pictures, and that's very confusing. I was wondering if there are alternatives in nautilus preferably gnome, that don't have this problem08:08
kerm|thow do i set window transparency?08:08
thedeaconDoes anyone know what the command is to convert wmv to another video format08:08
HordekingI exited the login, of course, the sound cranked back up when it went off to the X session...when I switched back to the terminal I logged off at, and log on again, the sound starts playing while at console...08:08
prodigelthedeacon, google for mencoder, that's the right tool08:08
HordekingThat's not something that makes sense to me, since I would expect the X session to keep on doing whatever it was doing before, regardless of what terminal I have it on.08:08
=== _jhw_ is now known as Lvcifer
minixiHordeking,  you said you logged off from it??08:09
thedeaconprodigel, i tried mencoder but get a bunch of duplicate frames and failed to open registry file output08:09
Hordekingminixi: Let me make sure they're all logged off.08:09
th^chal`away: by the way, i think you can install skype .deb package directly from skype.com08:10
minixiHordeking,  ok, hold on. I'm going to try to replicate this08:10
HordekingAll console sessions logged off, sound silent when I go to them08:10
prodigelthedeacon, I'm no mencoder expert, I've used it conversions some time ago and it worked. I'm afraid I can't help you further08:10
PecarI've installed ubuntu and everything is ok but because an error somebody (me :P) shuts down from the button  and then i can do nothing. It leaves me in an administrative shell as root. But everything i'll try  it tolds me i can't do. It means x configuration or startx  or whatever. What can i do. It seems to be mounted everything just reading mode.08:10
chal`awayth^ i probably want these repositories and things, anyway08:10
HordekingI'm sitting at almost a default ubuntu install. Hopefully this isn't related to the fact that I brought in my home directory over that which ubuntu set (which was related to the other questions I had)08:11
th^chal`away: either way works. easy way is anyway to go to http://www.skype.com/intl/en/download/skype/linux/choose/ and just click on ubuntu package :) it opens graphical gdebi installer08:11
crushyboi*bump* on this line08:11
crushyboiiptables -t mangle -A POSTROUTING -o eth3 -j IPMARK --addr=dst --and-mask=0xffff --or-mask=0x1000008:11
chal`awayth^ thanks08:12
HordekingI wonder why minixi left...08:12
chal`awayth^08:12
chal`away    * Ubuntu 7.04-8.04 ?08:12
kiaas__Is anyone here running Firefox and the latest version of flash under WINE?(NOT the native versions for linux.)08:12
th^chal`away: yep. it should work just fine on newest one too08:12
kiaas__WINE 1.1.27*08:13
thedeaconprodigel, thanks for the info08:13
chal`awayokies th^ . i have a 64 bit machine08:13
th^chal`away: it seems that package at skype.com is 32bit. no idea if it works ^^08:13
crushyboianyhelp with this syntex whats wrong in here --->  iptables v1.3.5: Unknown arg `--addr=dst'08:14
chal`awayth^ i think all they have still IS 32 bit08:14
th^chal`away: yeah looks like it :|08:14
kiaas__Er.. wow. I failed it. I'm running Firefox and Flash under WINE 1.1.23, I had issues with 1.1.24. I want to know if anyone is running it under 1.1.27, and if so, how stable is it? if not, is anyone willing to test it for me?08:14
crushyboianyhelp with this syntex whats wrong in here --->  iptables -t mangle -A POSTROUTING -o eth3 -j IPMARK --addr=dst08:14
crushyboi    --and-mask=0xffff --or-mask=0x1000008:14
th^kiaas__: uhm.. why you wanna run fx and flash under wine ? :)08:15
chal`awayth^ i got it .. it doesn't seem to be quite download n' go .. what do i need to do?08:15
kiaas__th^ because there is/was a bug with the native version preventing a flash game from working correctly, and it's faster under WINE.. though has a few graphical glitches08:15
th^chal`away: i'm not sure if 32bit package works on 64bit :/08:16
th^chal`away: check this: http://ubuntuforums.org/showthread.php?t=43229508:16
th^chal`away: check the 'install' header.. seems quite straightforward08:17
Crash1hdI want to do a search via command line and I only want it to display a file name 1 time if it contains some text even if it contains that text more then once ie rgrep -r 'find this text' . | more ??? this works but shows the file name multiple times if it contains the text multiple times anyone :)08:17
th^chal`away: looks like a copypaste & done :908:17
chal`awayth^ that's pretty much like what i was doing .. i'll give it a try, thanks :)08:17
=== gartral_ is now known as gartral
th^oh well back to work. wonderful world of openoffice and writing documentation like a monkey..08:20
gartralth^: ot08:20
mankeletorhi all, is there any easy ubuntu-packaging/.deb tool? i dont like make install too much XD08:21
th^mankeletor: sudo apt-get install checkinstall08:21
kiaas__I guess if Firefox breaks under WINE 1.1.27, I can just purge and reinstall 1.1.23 again :/08:22
th^mankeletor: and do: checkinstall -D -y instead of make install08:22
gartralmankeletor: checkinstall?08:22
Crash1hdanyone any idea?08:22
StrangeCharmdoes links support cookies?08:22
crushyboianyhelp with this syntex whats wrong in here --->  iptables -t mangle -A POSTROUTING -o eth3 -j IPMARK --addr=dst08:23
mankeletorcool, i used checkinstall for slack packagin but slackbuild was 100 times better.. anyway checkinstall works fine for me =) thanks guys08:23
chal`awayth^ it looks fine :)) thank you :)08:23
crushyboiwhat wrong am doing here : anyhelp with this syntex whats wrong in here --->  iptables -t mangle -A POSTROUTING -o eth3 -j IPMARK --addr=dst :-s anyone08:23
gartralcrushyboi: change the 'dst' part to a real destination?08:24
mankeletorth^,  gartral, thx08:24
chal`awaycrushyboi, did you also try #Netfilter ?08:24
gartralmankeletor: np, yw08:24
crushyboino chal`away:08:24
crushyboiwhat i want is traffic which is coming for an ip should go with the same ip not the real ip of server :(08:25
DrMrHorseim trying to get hardy to boot via grub that is installed on a jaunty partition. running update-grub from jaunty doesnt see the hardy partition. any ideas?08:25
DrMrHorseholy quiet.08:26
crushyboichal`away: :( noob here, can you explain me what exactly i should do and where?08:27
No1hi Yos08:27
YosHi No108:28
crushyboi*hoping*08:29
* crushyboi is hoping for a miracle guy to help him08:29
chal`awaycrushyboi, i haven't done iptables, so i'd be lost helping you.. but it's the right thing to do08:31
crushyboiwhat is netfilter @ chal`away08:31
dAnonhow do I unmount?08:32
chal`awayi hate my isp, they are 'improving things' while disconnecting me over and over again08:32
vladkI just recompiled a new kernel (2.6.30.3) with standard configuration. When I reboot the startup graphics are messed up (3 ubuntu symbols all in the top third of the screen). I'm probably doing something stupid, does anyone know what im doing wrong or where to look for specific unformation about this problem08:32
chal`awaycrushyboi, #netfilter is where #iptables redirects to08:32
DrMrHorsedAnon: sudo umount <mount location>08:32
wally1337is there any media center function in ubuntu?08:32
crushyboiunmount /dev/sda <--- where sda is your hard drive @ dAnon08:33
wally1337functionality*08:33
chal`awayvladk, look for drivers for your situation08:33
Firefishewally1337: There are a slew of players...what do you want to do, have a music environment?08:33
vladkchal`away: Is there anywhere specific I can look for more information on what you mean?08:33
zamolxesth^: oook, i updated the system, rebooted, all ok, install nvidia drivers, rebooted, bork. any clues now?08:33
AndorinGuys, how do I mark a thread as Solved on the forum?08:33
dAnonit say command is not found08:33
wally1337firefishe: i was more thinking divx movies ;)08:33
th^zamolxes: mmh.. what's your nvidia card? :/08:33
DrMrHorsedAnon: are you sure you typed "umount" and not "unmount?"08:34
dAnon"-bash: unmount: polecenie nieodnalezione" in polish command is not found08:34
zamolxestwo nvidia 9500GTs, linked with a SLI cable08:34
dAnonoh08:34
dAnonthx DrMrHorse08:34
wally1337and im gathering that onboard intel graphics will cut it for dvd/divx playback in linux? Im talking intel exreme grahpics.. or perhaps intel extreme II graphics08:34
chal`awayvladk, there should be drivers for your video card, if ubuntu didn't find them right .. is what you're running the latest version of ubuntu?08:34
DrMrHorsethe command is umount for better confusion08:34
Firefishewally1337: Divx is trick on any linux system, at least by my own experience.  I use xine for most dvd playings, but sometimes Totem for other things.  VLC can play movies, too.08:34
Firefishetrick=tricky08:34
crushyboimount -u /dev/sda @ dAnon08:34
vagothcppI remapped my swap partition to another HDD, now I am just editing my fstab to match (from a liveCD), but each partition is using a UUID. how do I change it?08:35
wally1337firefishe: really why is it tricky08:35
vladkchal`away: Yes Im on 9.04, the kernel that gets updated by the package manager works fine. Its only my custom recompiled kernel that doesn't work. I'm not sure where to look for what driver I might need08:35
Flannelvagothcpp: The same way.  You can use sudo blkid to get the UUIDs of the partitions08:35
vagothcppFlannel: Thanks08:35
AndorinGuys, how do I mark a thread as Solved on the forum?08:35
Flannelvagothcpp: Or you can use the /dev/sd** style too, that still works.08:35
chal`awayvladk, look up your video card plus the word drivers and ubuntu 9.0408:37
=== suigeneris is now known as Kartagis
vagothcppis there any advantages/disadvatages of using a UUID?08:37
gogeta1Firefishe: divx is suppirted threw xvid linux support is pretty good08:37
dAnonhow do I check which /dev/sdX represents which partition/08:37
dAnon?08:37
crushyboifdisk @ dAnon08:37
DrMrHorsedAnon: also try df -h08:37
vladkchal`away: OK, before I do that one question. I just noticed that I didn't have a /boot/abi-$(KERNEL_VERSION) file though I did have all the others that the stock ubuntu kernels had. Could it have been to do with that?08:38
AndorinGuys, how do I mark a thread as Solved on the forum?08:38
dAnonDrMrHorse it doesn't show my linux partition's notation08:40
DrMrHorsehmm08:41
dAnonI typed fdisk -ls and it says cannot open /dev/sda08:41
vagothcppdAnon: Is it a SATAII disk or SCSI?08:42
SunStealerhttp://www.wired.com/techbiz/it/magazine/17-07/mf_freer?currentPage=208:42
DrMrHorsedAnon: run it as root?08:42
Brando753is there a way to sync my korganizer calender with my laptop from my desktop08:42
dAnonSCSI08:43
gartralcan anyone read me?08:43
vagothcppdAnon: Then you may need a SCSI driver installed for it to be recognized08:43
dAnonworked DrMrHorse08:43
dAnonthx08:43
Brando753?08:43
dAnondidn't see I wasn't rot08:43
dAnonroot08:43
vagothcppI guess I phailed08:43
DrMrHorsenp08:43
gartral!ping08:44
ubottuping yourself ;-) really the diodes all down my left side are sore08:44
om26erwhen metacity compositor is active on the latest stable intel driver sometime the panels disappear08:44
gartralom26er: i get that too08:44
crushyboiubottu netfilters08:44
ubottuSorry, I don't know anything about netfilters08:44
crushyboiubottu netfilter08:44
ubottuSorry, I don't know anything about netfilter08:44
om26ergartral: so u got any solution08:44
DrMrHorseim trying to get hardy to boot via grub that is installed on a jaunty partition. running update-grub from jaunty doesnt see the hardy partition. any ideas?08:44
gartralom26er: subnote: im on an Nvidia 620008:44
om26ergartral: but still u have the problem08:45
kofihi ppl08:45
dAnonI cannot remove mounted folders in /media/08:45
gartralom26er: use compiz, metacity as a composit manager is buggy.. also, reducing your panel count to one and adding a dock seems too work too08:45
crushyboiany pro with iptables?08:46
gp_will_be_backis the intel graphic driver issue in jaunty has been fixed ?08:46
kofii need some help ppl08:46
om26ergartral: so use compiz08:46
gogeta1nope08:46
=== gogeta1 is now known as gogeta
kofitrying to install frostwire08:46
gartralom26er: that or add awn/cairo dock08:46
om26ergartral: how to add awn08:47
dAnonI mounted /media/root/ but I can't remove it now, what to do, it says "umount: /media/root: not mounted"08:47
No1crushyboi, u check fourms for iptables howto08:47
om26ergartral: or cairo08:47
zamolxesat least I'm not alone in this http://ubuntuforums.org/archive/index.php/t-1136205.html08:47
dAnonI used sudo08:47
vagothcppIs there a way to open the GNOME Explorer as root?08:47
gartralom26er: sudo apt-get install awn08:47
gogetavagothcpp: bad thing can happon if you do08:47
kofii have issues with java. can anyone help me?08:48
No1https://help.ubuntu.com/community/IptablesHowTo08:48
gartralvagothcpp: gksu nautilus08:48
kofii'm new to ubuntu08:48
om26ergartral: wat is awn08:48
gartral!awn | om26er08:48
ubottuom26er: Avant Window Navigator is a dock-like navigation bar for the Linux desktop that positions itself at the bottom of the screen. Homepage http://wiki.awn-project.org/ Awn-Manager can be found the Gutsy !backports repository and in Universe in Hardy08:48
Myrttikofi: what issues do you have?08:48
vagothcppgartral:08:48
No1welcome to it kofi08:48
vagothcppgogeta: Like?08:48
No1:D08:48
vagothcppgartral: ?08:48
Myrttikofi: ask your question, someone will help08:48
gogetavagothcpp: destoryed filesystem08:48
vagothcppgogeta: Why would I do that?08:48
dAnonI mounted /media/root/ but I can't remove it now, what to do, I typed: "sudo umount /media/root/" and it says "umount: /media/root: not mounted"08:49
kofii seem to have java but frostwire still won't launch08:49
gartralvagothcpp: be extreamly careful while running nautilus as root.. to do so, hit alt-f2 and type gksu nautilus08:49
om26ergartral: package awn nt found08:49
gogetavagothcpp: sudo on the file manager is just not something any sane support guy will recmond08:49
gartral!find avantwindowmanager08:49
ubottuPackage/file avantwindowmanager does not exist in jaunty08:49
gartral!find awn08:49
ubottuFound: awn-applets-c-core, awn-applets-c-extras, awn-applets-python-core, awn-applets-python-extras, awn-manager (and 11 others)08:49
vagothcppdAnon: sudo unmount /dev/sda108:49
gartralom26er: sudo apt-get install awn-manager08:50
om26ergartral: is awn always on top?08:50
vagothcppgogeta: Well, editing config files is annoying in nano08:50
gogetavagothcpp: so sudo gedit file08:50
gartralom26er: it can be configured any way you like, including to do the mac auto-hide thing08:50
om26ergartral: will it activate window shadows?08:50
gartralvagothcpp: then gksu gedit /path/to/file08:51
vagothcppgogeta: Easier from gnome08:51
gartralom26er: you need a composit manager too do that08:51
gogetavagothcpp: dont come bck crying if you trash the system08:51
vagothcppgogeta: VM, there are snapshots =D08:51
MiLLAoh oh08:51
gogetalol08:51
MiLLAhi guys08:52
om26ergartral: so installing awn will solve the problem of the panels that disappear???08:52
vagothcppI love vbox seamless mode, so handy08:52
gartralom26er: it did for me.. but then again, our systems are rather different, so try it, if nothing else, it wont harm anything08:52
om26ergartral: ok thanz08:53
gogetavagothcpp: and sudo gedit launches the gui edtior fyi08:53
ukunbuany body home08:53
vagothcppI know what gedit is08:53
gogetanope08:53
xim_using apt-get, can i combine the options -f and autoremove?08:53
gogetaall asleep08:53
YosNo108:56
No1hi08:56
Pilkahey08:56
No1:)08:56
gp_will_be_backis the intel graphic driver issue in jaunty has been fixed ?08:56
YosI detched this channel now it is the only one that I see :(08:56
gogetagp_will_be_back: no08:57
inuhmy ubuntu partitions  is locked and i am running out of disk space how to unlock it ?08:57
No1click other on list08:57
gp_will_be_backany idea when it will be ?08:57
gogetagp_will_be_back: intel issue are slated for 9.1008:57
gp_will_be_backoh no then i have upgrade again08:58
gogetagp_will_be_back: the intel patches are in 9..04 but there very unstable08:58
gogetagp_will_be_back: and i mean very08:58
vagothcppWhat is a good IRC client of ubuntu?08:58
inuhmy ubuntu partitions  is locked and i am running out of disk space how to unlock it ?08:58
gogeta!best | vagothcpp08:58
ubottuvagothcpp: Usually, there is no single "best" application to perform a given task. It's up to you to choose, depending on your preferences, features you require, and other factors. Do NOT take polls in the channel. If you insist on getting people's opinions, ask BestBot in #ubuntu-bots.08:58
gp_will_be_back90% of computers in the world basic intel graphic chipset08:58
Dextorionvagothcpp, irssi for console based. xchat for GUI08:59
gogetagp_will_be_back: i tested he new modes my inteel was fast but crashed 5 minuts later08:59
inuhmy ubuntu partitions  is locked and i am running out of disk space how to unlock it ?08:59
jussi01Is it possible to apply a template to an openoffice presentation after it has already been created? if so... how?08:59
vagothcppDextorion: Thank you, least someone gives an answer not a ggtf xD08:59
gogetagp_will_be_back: why they are being worked on in 9.1008:59
inuhmy ubuntu partitions  is locked and i am running out of disk space how to unlock it ?09:00
gp_will_be_backgogeta: is the same itel issue in other distro also like fedora , suse ?09:00
gogetagp_will_be_back: being dirt slow yea09:00
inuhmy ubuntu partitions  is locked and i am running out of disk space how to unlock it ?09:00
vagothcppDoes ubuntu have a package for installing ACE Libraries?09:01
Dextorionvagothcpp, i try. I know how it can be sometimes. I usually ask questions like that aswell.09:01
gogeta!ace09:01
ubottuFiles with extensions .tar, .gz, .tgz, .zip, .bz2, .7z, .ace and other archive file formats can be opened with file-roller (GNOME) or Ark (KDE) - Also see https://help.ubuntu.com/community/FileCompression09:01
inuhmy ubuntu partitions  is locked and i am running out of disk space how to unlock it ?09:01
gogetalol09:01
vagothcppgogeta: ACE the C++ Software Library09:01
inuhmy ubuntu partitions  is locked and i am running out of disk space how to unlock it ?09:02
gogetai knoe thats why i laughed09:02
gogetainuh: use the same softwhere you locked it with09:02
inuhi didn't lock it09:02
gogetainuh: then you sol09:02
gogetainuh: you need the key09:03
inuhi instaled it yesterday and now there is a key09:03
=== vagocpp is now known as vagothcpp
gogetainuh: then you set it09:03
inuhno09:03
crushyboigogeta: hi09:03
inuhii dunno where i even have to set it09:04
gogetainuh: lol are you trying to resize it mounted09:04
inuhno its not mounted09:04
inuhi did umount09:04
inuhand it is still the same09:04
gogetainuh: LOL boot off the live cd09:04
vagothcppgogeta: So is there a package I can install for THE SOFTWARE <-- library09:04
inuhi am booting from it right now09:04
inuhand did it09:04
Dextorionvagothcpp apt-cache search libace09:04
vagothcppThanks again Dextorion09:05
Dextorionvagothcpp dont know what you'll get, but i think there is a libace package..09:05
gogetainuh: normaly gparted shows them as locked if it cant read off them09:05
crushyboihelp with iptables please09:05
vagothcppI did, a few actually09:05
Dextoriongoodie09:05
inuhso what to do09:05
gogetainuh: it may be flagges as dirty09:05
gogetaflagged09:05
inuhno09:05
inuhthere are no flags09:05
gogetainuh: thers only 2 reasions gparted whont read a partation its mounted ot cruupt09:06
gogetaor09:06
inuhand if it is locked where can i fill in the key09:06
UmeaboyHi!09:06
gogetainuh: if you skipped the disk checks thats why09:06
=== ripps_ is now known as ripps
UmeaboyCan somoneone please check to see if the Midori bugtracker-page is working?09:07
xim_how can I install a deb file from the terminal?09:07
inuhno i never skip a part of a instalation09:07
gogetainuh: omg09:07
Umeaboyxim_: sudo aptitude install packagename.09:07
inuhgogeta: so what do i have to do09:08
* gogeta has gone insane 09:08
xim_Umeaboy, so aptitude installs local debs while apt-get fetches remote ones and then installs them?09:08
Dextorionxim_, aptitude installs both remote and local packages.09:08
Umeaboyxim_: As far as I can see it, yes.09:09
Dextorionxim_, aptitude is a bit newer that apt-get if i recall correctly09:09
FloodBot1NOTICE - If you couldn't speak to the channel during the past minutes, please try again now.09:09
xim_also will synaptic register as installed packages which have been manually installaed?09:09
gogetawoa 3 flood bots09:09
inuhgogeta: what do i have to do09:09
xim_ah i see09:10
xim_nm09:10
xim_thanks for the help09:10
gogetainuh: arg the disk got unmounted unclean its not locked it just cant be changed untill you let ubuntu to its scans and do a clean shutdown09:11
gogetado09:11
inuhhow to do that09:11
gogetaomg block09:11
inuhgogeta: how to do the scans and how to do clean shutdown09:12
mbostwickhello I am getting "CalRecurrenceInfo = new Components.Constructor(kCalRecurrenceInfoContractID, kCalIRecurrenceInfo);" from the lighting extension in thunderbird anyone know the best place to go for help ? I have checked google and have been working on this issue for some time...09:12
gogetai am not telling you the diffrence bwtween a dirty and clean shutdown09:12
inuhWTF ???09:13
gogetair means dont kick the power buttion09:13
inuhok09:13
inuhi know you don't have to do that09:13
inuhso how to do the scans09:13
gogetayou dont do it at all09:13
inuhno i never do that09:14
gogetainuh: ubuntu should see it as dirty and start scanning at boot09:14
xim_what was the name of the package for the debian bar?09:14
inuhso thats not the reason why they are locked09:14
gogeta?09:15
koolheadhi ahs anybody tried launchpad locally on there intranet for project collabration?09:15
koolhead*has09:15
Umeaboyxim_: A good suggestion is to use the available manuals.09:16
inuhgogeta: what do i have to do to unlock my partitions09:16
gartralok, im trying to "clean up" an appearently damaged San Disk Cruzer micro that has a bad fs.. fsck says the drive has a bad boot sector, though the drive doesnt have any bootable data in it, what should i do?09:16
gogetainuh: the live cd will not do such a sscan09:16
gogetagartral: just delete the entire fs and make a new one09:17
inuhgogeta: so i have to boot it from my pc and do a scan ???09:17
gogetainuh: you on live cd or hdd09:17
inuhlive cd09:17
gartralgogeta: i cant... the drive's node "dissappears" when i try too do that09:17
inuhgogeta: i am on live cd09:18
gogetagartral: toss it in the garbage09:18
gartralgogeta: its one of those U3 smart drives, it isn't mine, and i have too repair it09:18
hateballI have an Ubuntu 8.04 running in VmWare ESX. Anyone have any idea why adding another 4GB ram on top of the 4GB that's there now would cause it to kernel panic on boot? And yes, it is 64bit09:18
gogetagartral: sd cards dont last forever09:18
gartralgogeta: and i HAVE removed the U3 software correctly09:18
jacekowskihateball: you can't run vmware esx on ubuntu09:19
gartralgogeta: its BRAND new.. i had to take it out of the packaging myself09:19
jacekowskihateball: vmware esx is running directly on hardware09:19
gogetagartral: might be defectiv09:19
gartralgogeta: it isnt an sd card..09:19
hateballjacekowski: That's great, and I already knew that. However if you read my question, you'd see I typed *in* rather than *on*09:19
gartralit worked before a write cycle got interupted by powerfailure09:19
jacekowskimhm09:20
gogetagartral: reformating the drive should not creipple it09:20
jacekowskihateball: so you add 4G to host?09:20
gartralgogeta: as stated several times it's a U3 capable drive, and they weird09:20
jacekowskihateball: and it causes guest to panic?09:20
Nom-Hey all... this *may* be a little off-topic, but hoping you can help.  I'm chasing a telnet or telnet-like tool which will let me specify a local (source) port to use on a connection -- I'm trying to verify a potential issue with some firewall rules on my network09:20
hateballjacekowski: No, to the guest... the 8.04 ubuntu running server kernel09:21
gogetagartral: have you just tryed a reformat09:21
vladkA custom kernel that I recompiled is not able to load the propietary ATI 'fglrx' driver and its messing up my bootup. I tried switching to the 'radeon' driver in my xorg.conf but that doesnt even work with the standard ubuntu kernel. Is there a good resource for info on what I need to do to get fglrx to work with my custom kernel? I can only find info on using it with the ubuntu distribution kernels09:21
gartralgogeta: i said this, time and time again, i try and reformat it and the node for the drive dissappears after i unmount it09:21
jacekowskihateball: can you show that panic?09:21
hateballjacekowski: I'm running ubuntu on standard hardware where I have no problem adding a lot of ram. it just doesnt work well in vmware, but I dont know if it's a vmware or ubuntu issue. I mean... it doesnt work *in* vmware... but where is the blame? :)09:22
gogetagartral: plug in windows box and do so09:22
gogetagartral: they format mounted09:22
gartralgogeta: here this is as FAR as iv'e gotten http://pastebin.com/m4eccd7e909:22
hateballjacekowski: Hmmm, afraid I cant right now... It's a live system, cant fiddle with it during office hours :/09:22
gartralgogeta: windows does the exact same thing09:22
jacekowskihateball: make a copy09:22
jacekowskihateball: add more memory to copy and start t09:22
gartralgogeta: read the logs from about 3 hours back, i ran over this every way to sunday with a few of the others here09:23
hateballjacekowski: ESX does not allow cloning a live system afaik?09:23
jacekowskii can't check right now09:23
gogetagartral: have you tryed restoring the backup09:23
jacekowskibut from what i remember you can copy it09:23
gartralgogeta: I wasn't sure if i should try, that's why im asking09:23
hateballjacekowski: Well I can, and it doesnt... at least not on 3.5 which I run09:23
jacekowskiwhich version of vmware infrastructure do you have?09:24
gogetagartral: its saying thers diffrences i  would assume the current got messed up09:24
gogetabeing its not working09:24
vagothcppHas anyone used Mercurial HG: I keep getting the following error "abort: requirement 'fncache' not supported!" when running command "hd update"09:25
gartralgogeta: well.. THAT backfired09:25
vagothcpphg*09:25
jacekowskivagothcpp: have you tried google?09:26
vagothcppWhat is this phenomenon called google?09:26
gartralgogeta: reload the pastebin, i updated09:26
jacekowskivagothcpp: it's like answer for life universe and everything09:27
=== pizdets is now known as pizzledizzle
kiaas_Google knows everything. the right, and the wrong. it will tell you both indiscriminately.09:27
Dextorionjacekowski 42?09:27
vagothcppjacekowski: Really, I must find the meaning of like. *Searches Google*, the answers is 4209:27
vagothcppBtw, what is the name for ubuntu 9.04 64bit?09:28
crushyboiubottu ubuntu 9.0409:29
ubottuSorry, I don't know anything about ubuntu 9.0409:29
crushyboiubottu ubuntu09:29
ubottuUbuntu is a complete Linux-based operating system, freely available with both community and professional support. It is developed by a large community and we invite you to participate too! - Also see http://www.ubuntu.com09:29
jacekowskiwhy usb is so slow09:29
crushyboiwhich device you are using on usb?09:29
crushyboimay be its not 2.0?09:30
Dextorionvagothcpp, what version of Mercurial are you using?09:30
jacekowskiit's 2.009:30
Don_Miguelvagothcpp, codenamed Jaunty Jackalope09:30
jacekowskii'm coping my disk to new bigger one09:30
vagothcppDextorion: Package from apt-get09:30
gogetagartral: i dont see any update09:31
=== chaky_ is now known as chaky
gogetagartral: i would restore the backup09:31
btmI recently upgraded to karmic and it's not booting, "init: rc-sysinit main process (862) terminated with status 134", is there a particularly channel where I should look for help nailing this down?09:32
vagothcppDextorion:  hgsvn (0.1.6-1)09:33
TrijntjeHi all, how can I use evolution to fetch webmail from squirrelmail? I tried googling but nothing usefull came up09:33
Dextorionvagothcpp um.. ok. Mercurial prior to version 1.1 does not support fncache09:33
gartralgogeta: http://pastebin.com/m44e1d54 if you notice, no matter what i choose, it returns to propmt09:34
crushyboistill looking for help regarding mangle iptables09:34
suziraihi guys,09:34
vagothcppDextorion: I am confused, it is sudo apt-get install mercurial mercurial-common hgsvn09:34
suziraii am having a known problem.09:34
suziraiErrors were encountered while processing:09:34
suzirai kubuntu-docs09:34
suziraiE: Sub-process /usr/bin/dpkg returned an error code (1)09:34
gartralTrijntje: did you open ports 22 and 8080 on your router//09:34
FloodBot3suzirai: Please don't flood, use http://paste.ubuntu.com to paste, don't use Enter as punctuation.09:34
gogetagartral: outch09:35
gogetagartral: have you tryed gparted09:35
vagothcppIs there a way I can upgrade it then?09:35
suziraianyone knows how to solve them09:35
Trijntjegartral: emm no, i'm not that far. I'm not sure what to put in evolution, the url?09:35
gartralgogeta: YEA using gparted "looses" the node!09:35
Dextorionvagothcpp, try this.. apt-cache madison mercurial09:35
gogetagartral: oh i knoe09:35
vagothcpp mercurial |  1.0.1-5.1 | http://au.archive.ubuntu.com intrepid/universe Packages09:36
vagothcpp mercurial |  1.0.1-5.1 | http://au.archive.ubuntu.com intrepid/universe Sources09:36
Dextorionvagothcpp or if its apt-cache poli..09:36
gogetagartral: dosfsck should correct the drive09:36
gartralTrijntje: well, squirrelmail is a web based front end... you need too visit it via firefox/your browser of choice09:36
Dextorionvagothcpp, so, you have version 1.0. you need 1.1 atleast to use fncache09:36
vagothcppDoes that mean manual install?09:36
Trijntjegartral: so its impossible to acces my account with evolution?09:37
gartralgogeta: crap~! Currently, only 1 or 2 FATs are supported, not 19109:37
=== root is now known as Guest75272
vagothcppthere is a .deb install on there site09:37
gogetagartral: why not plug in a windows system and use chkdsk driveletter /f09:38
Dextorionvagothcpp they probably have a deb package on their sit09:38
Dextorionvagothcpp exactly09:38
gogetasorry /F09:38
gartralgogeta: primarily, because i dont have a windows sysytm, i have mac and ubuntu09:38
gogetagartral: outch09:38
gogetai think only a windows system can correct it09:39
gartralgogeta: yea... ide LOVE to just trash this partition table... but i cant do that easily09:39
vagothcpp"Dependency not satisfiable: mercurial-common"09:40
gartralgogeta: double crap09:40
gogetagartral: genrely a issue wen using windows fs you need a windows system to fix it09:40
gartralgogeta: i HATE windows, and i hate microsoft equally as much09:40
gogetalol09:41
zaggynldon't hate09:41
gartralgogeta: I hate windows so much i beliberatly bught a mobo for my ubuntu machine that wont run windows09:41
gartraldeliberatly*09:41
kiaas_I hate windows. I love Mac OS X. Ubuntu is pretty close to OS X, but has extra features I like.(such as GIMP actually works with tablets!)09:41
gogetalol09:41
Guest75272shit--->windows<---shit09:42
gartral!language | Guest7527209:42
kiaas_gartral, beagle board?09:42
ubottuGuest75272: Please watch your language and topic to help keep this channel family friendly.09:42
dAnonI am just installing windows09:42
Guest75272good luck09:42
dAnonsecond os09:42
Guest75272for the next 2 hours09:42
gogetagartral: i say just initallize the drive using its tools cd09:42
dAnonneed it to play Street Fighter IV09:42
dAnonwhich won't run under ubuntu09:42
gogetagartral: reset everything09:43
gartralgogeta: tools cd? it didnt come with one09:43
Dextorionvagothcpp, if you have pything try "easy_install -U mercurial09:43
vagothcppI just found that :P09:43
gogetagartral: well look around google see if there is one09:43
Dextorionok09:43
gartralgogeta: isnt there a way to destructivly trash the partition table?09:43
gogetagartral: yea intlize it09:43
gartralgogeta: there's the U3 installer, but that requires .NET 3.009:44
gartralgogeta: i ment from ubuntu09:44
dAnonI just recorded an image an when I put the cd back in drive it's still empty09:44
gogetagartral: genrely you need the tools disk09:44
gartralgogeta: there is no tools disk!09:44
dAnonis brasero worthless piece of shit or not?09:44
gogetagartral: thers always one09:44
gartral!language | dAnon09:44
ubottudAnon: Please watch your language and topic to help keep this channel family friendly.09:44
vagothcppMercurial is a pain!!!09:44
Trijntjegartral: so its impossible to acces my squirrelmail account with evolution?09:45
dAnonok and actual answer gartral?09:45
gartralgogeta: its a cruzer micro.. there the cheapest drives sandisk makes09:45
hateballjacekowski: it appears my vmware problem is with iommu and the kernel. in case you ever run into it, http://tinyurl.com/l3rbbk09:45
BoohbahTrijntje: you can access the same IMAP account that squirrelmail does with your evolution client.09:45
gartralTrijntje: its NOT squrrelmail, its send mail.. squirrelmail is a client, like evolution, you need too configure your evolution too access your IMAP account on that machine09:46
gartralgogeta: so theres no way to recover this drive from Ubuntu or Mac/09:47
TrijntjeBoohbah, gartral: sorry, that is indeed what i meant. Do you have any pointers on finding out the IMAP server from within squirrelmail?09:47
gogetagartral: im shure there is09:47
MacGyverNLgartral: What's the exact problem? I missed it.09:47
gartralTrijntje: is SENDMAIL running on your machine your infront of right now?09:47
Trijntjegartral: i dont know, i'm not familiar with that program09:48
gogetagartral: oh its a pen drive09:49
BoohbahTrijntje: generally you will find the IMAP server listening on port 143 of the same host09:49
gartralMacGyverNL: I have a borked partition table on a sandisk cruzer micro... i need to trash the partition table, but it seems part of U3's stupidity ws left behind and isnt letting me get t the partition table to do anything, i try and format it in gparted and it throws a read/write error, then the drive auto ejects and the node disappears.. (this as far as i can tell, i may be wrong, but the symptom is right)09:49
xim_what was the name of the package for the debian bar?09:50
MacGyverNLAh, right.09:50
MacGyverNLTried TestDisk?09:50
gartralgogeta: what did you think i was talking about? a quizenart? ;p09:50
MacGyverNLhttp://www.cgsecurity.org/wiki/TestDisk09:50
gartralmac testdisk? no. never heard of09:51
gogetagartral: lol09:51
gogetagartral: pendrive dont have bootsectrs by nature09:51
wizztjhhi , my name is jia hen and i want to be a part of MOTU , anyone can help me?09:51
gogetagartral: just the crapware09:52
gartralgogeta: this one thinks it does, and is flagged as bootable09:52
Boohbahgartral: why not format with fdisk?09:52
MacGyverNLWell, try it. See if it can restore the disk to operation and try if you can then write a new partition table.09:52
gartralBoohbah: /me bangs head against desk "Iv'e tried.. MANY times"09:52
MacGyverNL(Or, perhaps testdisk might actually repair the borked partition table entirely)09:52
* gartral is beginning to wonder if he's the only one who knows about /last09:53
gogetagartral: lol09:53
=== kb is now known as Guest30707
gartralMacGyverNL: i dont care, the only thing on it is a half borked portableapps installation09:54
TrijntjeBoohbah: hm, I think i'm in over my head a bit here. I'll try to do some reading to figure things out. Thanks for your help.09:55
MacGyverNLgartral: In either case, testdisk might be able to restore the stick to operation. I suggest you try it. You seem fresh out of other options ;)09:55
gogetaMacGyverNL: omg i frgot abought testdisk09:56
gogetathat can reintlize it09:56
cpercibamay anyone help me about kmobiletools on ubuntu ?09:56
=== Hyperion2010 is now known as Hyperion|sleep
gartralgogeta MacGyverNL the only thing i've learned so far is too not touch sandisk U3 drives with a 20 foot pole09:57
gogetalol09:57
MacGyverNLgartral: Well, I knew *that* since they ever came out :P09:57
ScottGIf I manually download a theme, how do I then use that theme inside of gnome?09:57
gogetagartral: format the basterd to ext3 lol09:57
gartralMacGyverNL: im guessing that Intel == msdos partition?09:58
gogetaim going to bed09:58
atapoorhello all09:58
gartralgogeta: cant, the damn thing is going back to a winblows owner09:58
atapoorI can't use yahoo messenger with pidgin09:58
atapoorI think the server for yahoo messenger is changed09:58
MacGyverNLgogeta: Hmm, good question. I'm not sure.09:58
MacGyverNLgartral*09:58
atapoorany one can help me09:58
gogetagartral: then vfat from gparted once you fix it09:58
vagothcppWhat is the Python package for C++/C?09:59
Davidf88timestamp commands anyone?09:59
gartralatapoor: the pidgin in repos isn't compatable with yahoo anymore, ubuntu dev team is awear, and like so many other things, their waiting for karmic to update, and recommending using the pidgin PPA in the mean time09:59
krautmoin10:01
gartralMacGyverNL: ummm. testdisk froze and the drive has the error light... AGAIN meaning the U3 crap has blocked me from fixing it.. AGAIN... I hate sandisk now! >.<10:01
=== greyz` is now known as greyz|nn
MacGyverNLHmm.10:01
MacGyverNLI take it you already tried the U3 uninstallation tool on a windows machine?10:02
kupesoftIs there a small, low dependency, command-line webcam snapshot tool for v4l and/or v4l2? None seem to work.10:02
=== lipsin__ is now known as lipsin
gartralMacGyverNL: yep... but the U3 tech. is partially hardware... meaning even after you clen it out, theres still a watchdog to "prevent hacking" the damn drive >.<10:03
MacGyverNLThen I'm afraid I'm out of ideas. Sorry.10:03
Bleupommehello, is it safe to use ext4 with jaunty netbook remix?10:03
gartralMacGyverNL: holey crap... testdisk forced the write!10:03
MacGyverNLIt did?10:03
googgo goog ?10:04
MacGyverNLCool :P10:04
googkick goog out !10:04
gartralMacGyverNL: now i did an analysis... and its failing 100% of the sectors! this might be a good thing10:04
MacGyverNLOr a bad one. But if it is, the drive couldn't be used anyway, so it's not as if there's any loss to be had here, only gain :P10:05
gartralMacGyverNL: AWESOME! the drive is clean10:05
Bleupommehello is it safe to use ext4 with jaunty?10:06
MacGyverNLSend your thanks to the TestDisk devs ;)10:06
FirefisheWhat is the difference between ext3 and ext4?10:07
MacGyverNL110:07
gartralMacGyverNL: ok.. nooberQ: whats the difference between FAT32 and FAT#@ LBA?10:07
gartralfat32 LBA10:07
FirefisheMacGyverNL:  *snark*10:07
MacGyverNLLBA allows the BIOS to access disks over 8GiB, iirc.10:08
gartralMacGyverNL: seeing it's only a 1 gig drive, i can smeg that opt10:08
MacGyverNLI honestly don't know. FAT32 is past it's "best before" date anyway.10:09
Ihow can i get tor working for my games?!10:09
IHElp10:09
Ihow can i get tor working for my games?!10:09
MyrttiI: patience.10:09
Ioh10:09
MacGyverNLFirefishe: I suggest you read http://en.wikipedia.org/wiki/Ext410:10
MacGyverNLIt has most of the major differences listed.10:10
gartralMacGyverNL: next nooberQ: should i reinsert the drive before atempting to format the SoB?10:10
MacGyverNLgartral: Not necessarily, but I guess it can't hurt either.10:10
rekhow can i read the name of my agp video card?10:11
Ihow can i get tor working for my games?!10:12
Ihow can i get tor working for my games?!10:12
senolTürkçe bilen var mı10:12
Myrtti!tr | senol10:13
ubottusenol: Turk ubuntu kullanıcıları, Türkçe yardım ya da geyik için #ubuntu-tr hizmetinizde.10:13
Myrtti!patience | I10:13
ubottuI: Don't feel ignored and repeat your question quickly; if nobody knows your answer, nobody will answer you. You can search  https://help.ubuntu.com or http://ubuntuforums.org while you wait.10:13
Trijntjel:emm, what kind of game?10:13
andrew_46rek: I don't have one of those but you could try: lspci | grep -i 'graphics'10:13
andrew_46rek: Or I guess you could crack the case of your computer and look :-)10:14
rekno10:14
rekno  i already know10:15
reklspci -v10:16
rekfound10:16
andrew_46rek: Perhaps: lspci | grep -i 'agp' might have been on the money?10:19
Ihi10:19
rekon the money?10:21
Aayushhow to boot ubuntu at runlevel 310:21
andrew_46rek: Sorry = slang. I meant would have been a more accurate search :-)10:21
dawideo??10:22
rekno no cool so i can learn new words10:22
dawideo??10:22
reki have learnt also gurless that's girls10:22
syntaxHow do you unmount something in terminal10:23
Jariumount10:23
rekbut dnt rmmbr what brb means10:23
rekumount10:23
gartralMacGyverNL: WAAAAA! the watchdog undid my work!10:23
Jaribe right back rek :)10:23
rekwhat jari?10:23
rekahj ok10:24
rekah yes10:24
TrijntjeBoohbah: I have found the imap server for my squirrelmail. But i still cant recieve or send mail. When sending evolution keeps saying: sending message (100% complete). any ideas?10:24
rekand.... bs ?10:24
rekit was a bs10:24
Jariback soon10:24
MacGyverNLgartral: And the partition is again inaccessible?10:24
rekno10:24
FloodBot3rek: Please don't flood, use http://paste.ubuntu.com to paste, don't use Enter as punctuation.10:24
rekbalco scandal ?10:24
rekbachelor of science?10:24
gartralMacGyverNL: i just launched gparted, lets see10:24
rekfloodBot i'm not floodin'10:24
gartralMacGyverNL: the partition was always accessable.. but i can't write too it!10:24
gartralMacGyverNL: and i know for a fact it was always flagged RW10:25
v_vhello. how to monitor the loading of each cpu ? top gives only a total summary10:25
Myrttirek: yes you are, try to keep your stuff in one line please10:25
Myrttiv_v: try htop10:25
MacGyverNLWell, like I said... I'm afraid I'm fresh out of ideas then.10:25
rekhtop10:25
rekdid biceps and triceps yesterday10:26
Myrttirek: you're being offtopic. This is Ubuntu support channel. If you're after casual chit-chat, please join #ubuntu-offtopic for that10:26
rekmyrtti are you an op ?10:27
R0b0t1How might I make ubuntu execute a user's .xinitrc as a session option?10:27
* gartral is concidering sueing sandisk for activly trying to defeat fairuse10:27
Myrttirek: does it matter? I'm requesting you to stop offtopic on this channel. Shouldn't matter if I'm an op or not10:27
gartralR0b0t1: its called an xscript in the session options10:28
rekso and so.... this chan works always so...if i say something ...should be ok10:29
Aayushhow to change runlevel at boot time10:29
gartral!runlevel | Aayush10:30
ubottuAayush: In Ubuntu all runlevels except 0,1 and 6 are by default equal. Also keep in mind that Ubuntu now uses !Upstart instead of System V init so there is normally no /etc/inittab.10:30
debrahi, i just installed 9.04 on an older XP laptop but have not been able to get pandora.com to load via firefox, any ideas?10:31
Aayushgartral, cant i senf runlevel parameter to kernel at boot ti,e10:31
Boohbahdebra: have you installed flash player?10:31
cHarNe2hi guys, i have some problem regarding VPN in the terminal (PPTP), anyone ever made a successful connection?10:32
R0b0t1gartral: I mean, no execution of anything else, just the .xinitrc. would the Exec=~/.xinitrc work?10:32
debrayes, but it gave several plugins to load but they don't seem to load properly or can't find them wherever they are supposed to load from10:32
Aayushgartral, cant i send runlevel parameter to kernel at boot time10:33
gartralR0b0t1: not sure.. try?10:33
crushyboihow do i check if iptables enabled or disabled?10:35
jmk^ircNcrushyboi: iptables -L10:36
Myrtticrushyboi: sudo iptables -L gives you a list of active rules10:36
Aayush!Upstart10:37
ubottuUpstart is meant to replace the old Sys V Init system with an event-driven init model.  For more information please see: http://upstart.ubuntu.com/10:37
Megra_crushyboi, "iptables -L -v -n" gives you a more precise list than "iptables -L"10:37
Aayush!runlevel | Aayush10:37
ubottuAayush, please see my private message10:37
crushyboi[root@pentium-d network-scripts]# iptables -L -v -n10:38
crushyboiChain INPUT (policy ACCEPT 0 packets, 0 bytes)10:38
crushyboi pkts bytes target     prot opt in     out     source               destination10:38
crushyboiChain FORWARD (policy ACCEPT 0 packets, 0 bytes)10:38
crushyboi pkts bytes target     prot opt in     out     source               destination10:38
crushyboiChain OUTPUT (policy ACCEPT 0 packets, 0 bytes)10:38
FloodBot3crushyboi: Please don't flood, use http://paste.ubuntu.com to paste, don't use Enter as punctuation.10:38
inuhi have a problem whit my ubuntu partition , its locked and i don't know how to unlock it10:38
Ihow can i get tor working for my games?!10:38
Iso i can join banned servers10:38
Ilike second life10:38
inuhi have a problem whit my ubuntu partition , its locked and i don't know how to unlock it10:39
crushyboihttp://paste.ubuntu.com/251249/ check the output and tell me if iptables active please10:39
MyrttiI: if you're banned, how about you work your way towards becoming unbanned instead of evading the ban...?10:39
Myrtticrushyboi: no it's not active10:40
inuhi have a problem whit my ubuntu partition , its locked and i don't know how to unlock it10:40
crushyboihow to activate it @ myrtti can you help ?10:40
zirodayinuh: what are you trying to do to it?10:40
Myrttiinuh: patience! the people haven't really changed since you last asked!10:40
inuhi want to resize it10:40
ActionParsnip1yo yo yo10:40
crushyboiinuh do you have dual booting ?10:41
inuhyea10:41
zirodayinuh: you need to unmount the partition before you can resize it10:41
crushyboiwhats the partition type you trying to resize?10:41
inuhi did umount and it says it isn't mounted10:42
Myrttiinuh: which method did you use to install ubuntu in the first place?10:42
ActionParsnip1inuh: if you run   mount   it will show what is mounted10:42
inuhi used the live cd10:42
jacekowskii'm copying my harddisk to new one10:42
Myrttiinuh: you installed from inside a live session that was Ubuntu, or from inside windows?10:42
jacekowskiresizing and doing lot of stuff with it10:43
inuhfrom inside a live sesion10:43
Myrttiok, just checking :-)10:43
jacekowskinot really10:43
jacekowskifrom live system10:43
ActionParsnip1jacekowski: make sure the data backup is recent on the partition(s) you are resizing10:43
jacekowskiActionParsnip1: it's reiserfs10:43
inuhif i do mount i get a load of text10:44
jacekowskiand besides10:44
jacekowskii first copied it to new harddrive10:44
jacekowskiand now i'm playing with partition sizes10:44
ActionParsnip1jacekowski: doesnt matter, backups are still great for if something goes wrong10:44
zirodayinuh: could you please pastebin the output of mount and sudo fdisk -l10:44
jacekowskiand only importand data that's on this disk is my porn collection10:44
jacekowskiimportant*10:44
ActionParsnip1nice :)10:45
R0b0t1Does ubuntu "up" the internet devices via some widget in gnome?10:45
crushyboii would have burnt my hard drive if i had porn on it10:45
crushyboi:)10:45
R0b0t1So if I say, ran dwm, they would not start?10:45
ActionParsnip1just make sure what you need isnt ultimately lost in an emergency and you can do what you like :)10:45
zirodayR0b0t1: if you did ifconfig <interface> down network-manager would not bring them back up. It would just fial10:45
R0b0t1ziroday: Well, I mean, from the login screen, if I make my own *.desktop file, move it to /usr/share/xsessions etc..10:46
ActionParsnip1R0b0t1: you can add   auto <interface name>      in /etc/network/interfaces10:46
R0b0t1Would it be expected that the xsessions file or something it calls ups the device?10:46
inuhhttp://paste.ubuntu.com/251254/10:47
zirodayinuh: are you currently on the livecd?10:47
outywhere does opera install to on ubuntu ?10:47
inuhziroday: http://paste.ubuntu.com/251254/10:47
outyor any program10:47
ActionParsnip1R0b0t1: i wouldnt think network upage was the xsessions concern10:47
zirodayouty: in a variety of places. What are you looking for?10:48
ActionParsnip1outy: due to the nature of linnux there is no one place10:48
=== elwood is now known as Guest91832
R0b0t1Me neither, but ubuntu seems to do some odd things :\10:48
rchapI am having trouble installing a mod for Springlobby. Any ideas?10:48
ActionParsnip1outy: apps use may libs which are shared between other apps and will reside in /lib, binarys and other stuff will be elsewhere but it does not install to a single folder like windows does10:48
TrijntjeHi all, in evolution, when setting up your account with smpt you can select 'authentication PLAIN'. Does this mean that no authentication is used?10:49
MyrttiTrijntje: iirc it means that it is used, but it's not encrypted in any way10:49
zirodayTrijntje: it means your username and password are passed along the network in plaintext.10:50
ActionParsnip1R0b0t1: i always use the interfaces file, makes life slicker10:50
R0b0t1So auto eth1?10:50
TrijntjeMyrtti, ziroday: so thats no good then, thanx for the reply10:50
ActionParsnip1R0b0t1: indeed10:50
R0b0t1Thanks :)10:50
jacekowskiActionParsnip1: resize on reiser is safe operation - it's builtin into kernel, it's journaled, there is no way that resize can go wrong - it's as safe as any other operation10:51
ActionParsnip1jacekowski: what if you hav a power outage during the operation10:51
inuhziroday: what do i have to do (sry i was away for 1min.)10:51
Trijntjeziroday, myrtti: but what if you select "use secure connection: TLS encryption" in combination with PLAIN?10:51
jacekowskiActionParsnip1: journal10:51
ActionParsnip1jacekowski: or a surge10:51
jacekowskiActionParsnip1: resize on reiser is journaled10:51
Idhanhi, is there any way on linux to see the current level of my printer's ink10:52
ActionParsnip1jacekowski: ive just seen too many people in here moaning their data is lost when they start doing stuff like that or when their drive dies and they havent got a backup but their data is "important"10:52
jacekowskiActionParsnip1: besides i have UPSes10:52
ActionParsnip1jacekowski: its an eample10:52
jacekowskiActionParsnip1: and diesel generator that will start 10 seconds later10:52
ActionParsnip1Idhan: depends if the printer driver can talk to the printer to ask it. HP ones usually can10:53
IdhanActionParsnip1: I have a HP psc131010:54
inuhziroday: can you help me plz10:54
anux9.10 dah rilis blom ?10:54
ActionParsnip1!karmic | anux10:54
ubottuanux: Karmic Koala is the codename for Ubuntu 9.10, due October 2009 - Karmic WILL break - Discussion and support in #ubuntu+110:54
jacekowskiActionParsnip1: and one more thing - i moving and resizing partitions on new disk, and old one is completly untouched10:54
anuxyups10:54
jacekowskii'm*10:54
TrijntjeIn evolution account setup: what happen when you select "Use secure Connection TLS" to smtp with authentication: PLAIN. Is your password send in plaintext that way?10:55
anuxterakhir sa dengar sudah alpha10:55
ActionParsnip1jacekowski: its just a friendly warning RE what i said earlier10:55
anuxtq  actioons10:55
ActionParsnip1Idhan: the hp driver in your task bar will tell you10:55
anuxbtw 9.04 support via chrome9 ?10:56
anuxHCIGP10:56
jacekowskiTrijntje: server needs to support encryption10:56
ActionParsnip1Idhan: http://hplipopensource.com/hplip-web/install_wizard/index.html10:56
jacekowskiTrijntje: and password is sent AFTER encryption is negotiated10:56
IdhanActionParsnip1: I try "sudo apt-get install hplip" and is already installed...10:56
MyrttiIdhan: hplip-gui10:56
Trijntjejacekowski: so when i select TLS and PLAIN my password is not send in plaintext?10:57
ActionParsnip1Idhan: there may be a newer version on the site10:57
ActionParsnip1anux: https://help.ubuntu.com/community/OpenChrome10:57
jacekowskiTrijntje: that depends10:57
jacekowskiTrijntje: it's sent in encrypted connection10:57
jacekowskiTrijntje: but if somebody can acess endpoint of that connection then he can get that password10:58
jacekowskiTrijntje: there is DIGEST authentication that doesn't send password over network10:59
IdhanMyrtti: thanks... I can see it right now. :)10:59
Trijntjejacekowski: ok, thats cool. But how do they know it is me than?10:59
Aayushi configured runlevel 3 as i need , how do i boot into in during boot time11:00
jacekowskiTrijntje: challenge-response auth11:00
anuxtq actions11:00
jacekowskiTrijntje: server sends you a challenge which is then mixed with a password and server does same thing11:01
jacekowskiTrijntje: and then response is sent back to server, if response calculated by server is same that means you have correct password11:01
Trijntjejacekowski: hmm, ill read into that. For the moment though the server only alows PLAIN over TLS. But as long as the password is not send over in plaintext i'm (quite) happy11:01
jacekowskiTrijntje: challenge is different every time11:01
Trijntjejacekowski: thats a smart system, I wish they'd use that11:01
jacekowskiTrijntje: with TLS password is only unencrypted on endpoints11:02
jacekowskibut tls have couple weaknesses11:02
jacekowskibut that's a long story11:03
Trijntjejacekowski: so where possible i should use ssl?11:03
jacekowskisame problems11:03
Trijntjeah, so where possible i should use paper mail ;)11:03
jacekowskino11:03
jacekowskiwith tls or ssl11:03
jacekowskiserver confirms it's idenity11:04
jacekowskiand if you are sure that's legit server11:04
jacekowskiso when you connect to id you have to verify server certificate fingerprint11:05
outyare there any good docks for kde 64 ?11:05
jacekowskito it*11:05
Trijntjejacekowski: and evolution checks the certificate right? So thats quite safe i should think11:06
vigge_sWehai11:06
jacekowskiit checks stored fingerprint with current fingerprint11:06
vigge_sWeI'm quite new to linux11:06
jacekowskibut11:06
vigge_sWeI am getting this in SSH: ./Aseco.sh: line 2: /dev/null: Permission denied11:06
vigge_sWeHow would I go about fixing that?11:06
jacekowskihow do you know that it isn't fingerprint of server that's in the middle and sniffs your traffic11:07
jacekowskiwhen you connect first time you should verify that fingerprint11:07
Trijntjejacekowski: where can i find the fingerprint in evolution?11:08
jacekowskiussualy certificates are signed by verisign or somebody else11:08
Yossihow do i format a floppy to 1.72 mb?11:08
jacekowskibut then it's the question how much do you trust them11:08
Yossifdformat /dev/fd0u172211:09
Yossi isnt working11:09
jacekowskiTrijntje: i don't use evolution11:09
Yossigives this: /dev/fd0u1722: No such file or directory11:09
dvinchi666__Yossi, the flopy dont use anymore11:09
Yossibut i am using it11:10
claudeHi all, since I've installed pavumeter, I've been unable to play any audio file... any idea what went wrong?11:10
dvinchi666__[newbie@Arch/Linuz ~]$ ls /dev/fd/011:10
dvinchi666__/dev/fd/011:10
dvinchi666__[newbie@Arch/Linuz ~]$ file /dev/fd/011:10
dvinchi666__/dev/fd/0: symbolic link to `/dev/pts/0'11:10
FloodBot3dvinchi666__: Please don't flood, use http://paste.ubuntu.com to paste, don't use Enter as punctuation.11:10
Trijntjejacekowski: ok, thanks a lot for your help. I now have it working, so i'm happy11:10
Yossidvinchi666__, what are you showing there?11:11
dvinchi666__Yossi, my system take the device of other way11:12
laperrwanted a *.fdi file for a imps/2 logitech touchpad11:13
Yossimine gives the same results11:13
eFfeMhi, i am trying to install phpmyadmin under ubuntu, but t I can't access it, the problem seems to be apache configuration; I doubt if the conf files in the conf.d dir are processed. How can I find out (or is there a way this could be disabled)11:13
server_sidehi11:18
server_sidehi all11:19
outyhttp://www.ex-parrot.com/~pete/upside-down-ternet.html11:20
server_sidehow is people finding ubuntu?11:20
server_sideso far great11:20
Megra_eFfeM, you can try to install it manually11:21
server_sideheyy11:22
Megra_eFfeM, cd ~/Desktop && wget http://prdownloads.sourceforge.net/phpmyadmin/phpMyAdmin-3.2.1-all-languages.tar.gz && tar -xf phpMyAdmin-3.2.1-all-languages.tar.gz11:22
Alvinware(((uh-ah)))11:22
Megra_eFfeM, then configure the apache Vhost11:23
server_sidehow can i get konversation toolbars the same color as my other themed windows?11:23
PvpeterHello! I'm trying to get my hamachi to work, and even though ufw is disabled im not able to log in... It works with windows though when i dual-boot.... Any ideas?11:23
Kartagis!wmv11:23
ubottuFor multimedia issues, this page has useful information: https://help.ubuntu.com/community/RestrictedFormats - See also https://help.ubuntu.com/9.04/musicvideophotos/C/video.html - But please use free formats if you can: https://help.ubuntu.com/community/FreeFormats11:23
jmuthi. got a friend that installed "Ubuntu 8.04 LTS Desktop"       and should have installed "Ubuntu 9.04 Desktop"        he's quite new at linux and I haven't used ubuntu.    tried with apt-get dist-upgrade but no packages to update seem tihs 8.04 is whole other OS.       any easy way to migrate to 9.04  without reinstalling?11:24
Alvinwareask question by voice.11:25
Kartagiswhat can I use to decode wmv?11:25
asus_hi11:26
asus_ciao11:26
erUSUL!w32codecs11:26
ubottumedibuntu is a repository of packages that cannot be included into the Ubuntu distribution for legal reasons - See http://www.medibuntu.org11:26
gianciao11:26
AlvinwareWho know wat's chibai?11:26
jmutAlvinware: google?11:26
giansi11:26
fireball_hey all, please help. ubuntu thinks my ext4 drive is ntfs, how do i fix that?11:27
jmutAlvinware: http://www.urbandictionary.com/define.php?term=chi+bai       seems someone doesn't like you :)11:27
pretenderis anyone here from Australia that can help with this one  http://ubuntuforums.org/showthread.php?t=1237226 creating a channels.conf11:28
fireball_how do i mount my drive ext4?11:29
eFfeMMegra, made progress, apparently the apache2.conf file was not including the conf.d conf files (or at least not at the proper location11:30
eFfeMwill sort that out after lunch11:30
eFfeMs/Megra/Megra_/11:31
erUSULfireball_: mount -t ext4 /dev/sdxx /mount/point11:31
gianoi11:31
gianhelp!!11:31
erUSUL!ask | gian11:32
ubottugian: Please don't ask to ask a question, simply ask the question (all on ONE line, so others can read and follow it easily). If anyone knows the answer they will most likely reply. :-)11:32
gianhei!!11:32
gianaiutoooo!11:32
us0r2\join #proplay11:33
erUSUL!it | gian11:33
ubottugian: Vai su #ubuntu-it se vuoi parlare in italiano, in questo canale usiamo solo l'inglese. Grazie! (click col tasto destro sul nome del canale per entrare)11:33
Andhi11:33
sinyoaliasa11:33
fireball_erUSUL: thanks :)11:34
erUSULfireball_: no problem11:34
Alvinwarei use notebook, when i remove the battery, when the plug already in the power, the battery icon still there, how to do? refresh didn't work?11:35
Alvinware((((((ZZZzzzzZZZ))))))11:35
fireball_erUSUL: anyone, do you know the best way to restore that drives grub?11:35
erUSUL!grub | fireball_11:36
ubottufireball_: GRUB is the default Ubuntu boot manager. Lost GRUB after installing Windows? See https://help.ubuntu.com/community/RestoreGrub - GRUB how-tos: https://help.ubuntu.com/community/GrubHowto11:36
Andwho can help me to find the chinese  irc ubuntu channel?thanks11:36
erUSUL!cn11:36
ubottuFor Ubuntu help in Chinese 您可以访问中文频道: #ubuntu-cn 或者 #ubuntu-tw  或者 #ubuntu-hk11:36
Andthanks again11:36
BitTorrentAlvinware: try reboot.11:36
icerootcan i clone a full-hdd (40gb) to another hdd (100gb)? so that the 100gb caan boot to?11:36
Kartagiswhen decoding wmv to avi, I got a lot of Skipping frame! messages. do I need to be concerned?11:36
fireball_ubottu: no, lost grub after i installed dodgy psu11:36
ubottuError: I am only a bot, please don't think I'm intelligent :)11:36
sleepy_cathi i recently installed Virtualbox3 tried to load win98 on it did not work it used to hang so deleted vb3 and installed virtual box ose still same problem11:37
sleepy_cat btw is this a problem because of ext4 file system11:37
Kartagisiceroot, yes you can11:37
erUSULfireball_: is the same procedure. ubottu is just a bot11:37
icerootKartagis: clonezilla or what you prefer?11:37
Kartagisiceroot, you could use dd11:38
icerootKartagis: thx i will have a look11:38
icerootsleepy_cat: what you mean with "did not work"?11:38
Joe_fsck on a 4TB RAID0 is slow...11:38
server_sideanyone use konversation?11:38
iceroot!anyone | server_side11:39
ubottuserver_side: A large amount of the first questions asked in this channel start with "Does anyone/anybody..."  Why not ask your next question (the real one) and find out?11:39
sleepy_caticeroot: it states11:39
sleepy_catstarts11:39
sleepy_catthan in middle of installation it takes a lot of time11:39
server_sidecan i theme konversation?11:39
icerootsleepy_cat: cd is ok? this is not a ubuntu-problem and also i dont think its a virtualbox problem11:40
sleepy_catcd is fine11:40
iwobblesyou can change a lot of stuff in Konversation eh server_side, I dunno about skins but11:40
sleepy_cati installed win98 directly on my pc11:40
sleepy_catthat worked11:40
server_sideis se linux already installed or some sort of firewall for ubuntu?11:40
icerootserver_side: www.kde-look.org/11:40
iceroot!ufw | server_side11:41
ubottuserver_side: Ubuntu, like any other linux  distribution, has firewall capabilities built-in. The firewall is managed using the 'ufw' command (see https://help.ubuntu.com/community/Uncomplicated_Firewall_ufw), or 'iptables' (https://help.ubuntu.com/community/IptablesHowTo). GUI applications such as Firestarter/Gufw (Gnome) or Guarddog (KDE) also exist11:41
icerootsleepy_cat: win98 se?11:41
sleepy_catyes11:42
icerootsleepy_cat: maybe have a look at #vbox11:43
server_sideisnt se linux better?11:43
sleepy_catohk11:43
icerootserver_side: what is se linux?11:43
icerootah SELinux11:44
bullgard4What Ubuntu program (besides Gimp) allows to edit the 'Properties' of a .jpg file?11:44
Myrttibullgard4: do you mean the EXIF information?11:45
bullgard4Myrtti: I mean 'Title:', 'Subject:', 'Author',...11:46
server_sideis there a resource where i can learn about linux filesytem and everything else what i can print off from?11:47
dattamy software sources does not seem to connect, they show error messages, i had done some stuff such as authorizing a new key and adding and removing software sources, how can i revert them all back to the default?11:48
dattaeven the restore default button does not seem to work in that situation11:48
bullgard4server_side: There are several Linux filesystems. You can print the articles in your Documentation folder.11:48
fireball_thanks all :)11:50
bullgard4datta: You can take your Ubuntu CD and load it live. Then call Synaptic and write down the IP addresses of the repositories.11:51
dattabullagrd4 i dont have the cd, how should i revive it back? i think one time when i asked here someone told me how to do it but i totally forgot that11:52
wo_Okiewhen i change the sensitivity of my mouse in the menu it changes my touchpad's sensitivity but not the sensitivity of my usb mouse11:53
SplintCan someone help me with g++ installation?11:55
vagothcppHow do I add more workspaces?11:55
DextorionSplint, apt-get install g++ doesn work?11:55
SplintI dont have internet connection on my Linus machine11:56
SplintLinux*11:56
DextorionSplint, oh..11:56
bullgard4datta: http://wiki.ubuntuusers.de/Paketquellen11:56
geirhaSplint: In synaptic, find the package «build-essential» and mark it for installation. But instead of clicking «Apply» to install, choose File -> Create package download script11:57
Joe_X hard locks, system partial lock (can SSH in, but even reboot doesn't seem to work), only seems to happen when I have massive amounts of TCP traffic for long periods of time (like if I seed a bunch of torrents without any limits on connections or speed), anyway (besides the obvious of limiting) to fix it?11:57
dattathanks bullgard4 but it didn11:57
dattabullgard4, it didn't tell me on how to solve the issue11:58
xim_how can i install the dbian bar?11:58
error404notfoundi am looking for a contact Manager, a simple one, just to save my mobile contacts in VCF format and then export it to other cell phone. No Evolution/Thunderbird/KEmail/Kontact.11:58
xim_*debian bar11:58
geirhaSplint: https://help.ubuntu.com/community/InstallingSoftware  See the section on installing without an internet connection11:58
rchapHow do I see my favorites?11:59
inuhi have a problem whit the ubuntu  partition its locked and i need to make it bigger12:00
tenxdon't install in off line if you are new one12:01
inuhwhat do you mean12:01
bellosguardohi12:01
bellosguardowhat does "updatedb" do exactly? I wonder because all my feisty repos are broken (404 not found), but it seems like updatedb is still working on something.12:02
tenxinuh: are you want recover data12:02
vagothcppIs there a way to profile my hdd i/o speed on ubuntu?12:03
inuhi just want to make my ubuntu partirion bigger12:03
icerootvagothcpp: hdparm12:04
Joe_evolution seems to freeze up after it's been running for 10+ hours, unless there is a fix for it what is a good replacement?  I like something small and basic, don't need a lot of features in my email (ie not a big fan of thunderbird)12:04
error404notfound^bump^12:04
vagothcppiceroot: thanks12:04
MyrttiJoe_: claws-mail might be what you're looking for12:05
tenxinuh: use gparted.12:05
icerootJoe_: maybe kmail? never tried but dont know other ones then thunderbird, evolution and kmail12:05
icerootJoe_: also littelbird should be nice, its thunderbird but smaller (addon)12:05
Joe_myrtti/iceroot I'll try those, thanks12:07
kushal_bellosguardo: updatedb updates the search database used by the locate command-line tool.  It is scheduled to run once a day.  As for your broken repos, at least archive.ubuntu.com does not seem to have feisty anymore.12:10
Pvpeter1How the hell can I get hamachi to work? i even removed iptables with ufw, and i still get logging in .... failed12:13
SplintIm still having troubles trying to install g++ compiler. I have no internet access on my linux machine and am new to linux. Could someone PM me to help me through g++ instalation?12:14
Splintthanks12:14
BoohbahSplint: what version of ubuntu?12:15
Splint8.0412:15
Splintdesktop12:15
nefahi. does anyone know how to change the font in ion3? it's too big12:15
BoohbahSplint: download this .deb and its dependencies and transfer them to your linux machine: http://packages.ubuntu.com/hardy/g++12:16
Splintok, ill try that.12:17
Pvpeter1I can't login to hamachi, I've removed iptables and it still says logging in .... failed.. Any ideas?12:18
=== morlock is now known as Guest44851
tenxwhy hamachi12:20
Pvpeter1I need it to play games with my friends12:20
neil_don a KVM guest running Jaunty... how do I get a higher screen resolutions that 800x600 ?12:20
SplintI get an error message saying Wrong architecture 'amd64'12:22
damo22how do i blacklist a udev module in ubuntu?12:26
erUSULSplint: you dled the wrong files? you have 32 bit linux and g++ is for 64 bits12:26
damo22i dont want ubuntu to claim my usb printer12:26
erUSUL!blacklist12:26
ubottuTo blacklist a module, edit /etc/modprobe.d/my_blacklist and add « blacklist <modulename> » to the end of that list - To explicitly load modules in a specific order, list them in /etc/initramfs-tools/modules and type « sudo update-initramfs -u »12:26
ActionParsnip1yo yo yo12:26
SplintCan I use g++ on 32 bit?12:27
ActionParsnip1Splint: absolutely12:27
ActionParsnip1Splint: sudo apt-get install build-essential12:27
erUSULSplint: yes but you have to dwonload the correct deb packages... offline instalation of packages is a bit tricky in ubuntu12:27
Pvpeter1I can't login to hamachi, I've removed iptables and it still says logging in .... failed.. Any ideas?12:27
ActionParsnip1Pvpeter1: can you ping the server you are logging onto?12:28
erUSULActionParsnip1: Splint has no inet connection on the ubuntu box12:28
erUSUL!offline12:28
ubottuIf you need to download Ubuntu packages using another machine or OS, check the desired packages in Synaptic and select File > Generate package download script. Alternatively, try http://apt.alturl.com/ - See also !APTonCD12:28
erUSUL!offline | Splint12:28
ubottuSplint: please see above12:28
ActionParsnip1erUSUL: gotcha, thats gonna be helluva messy12:28
Pvpeter1actionparsnip1: dunno what server i am logging into actually ^^12:28
ActionParsnip1Pvpeter1: i'd fid out and check that first12:28
erUSULSplint: read what ubottu have said and follow the docs12:28
tenxsplint: are you have a dvd it will have the package12:28
damo22erUSUL: do you know the name of the usb printer module?12:28
erUSULdamo22: lpusb or something like that12:29
ActionParsnip1Pvpeter1: if you get bad username/pass then you are hitting the server12:29
SplintI have the CD but couldnt install the packages from it12:29
server_sidecan i get WoW to work in ubuntu?12:29
erUSULdamo22: usblp to be more precise12:29
erUSUL!appdb | server_side12:29
ubottuserver_side: The Wine Application DB is a database of applications and help for !Windows programs that run under !WINE: http://appdb.winehq.org - Join #winehq for application help12:29
Pvpeter1actionpasnip1: I actually don't get anything except logging in .... failed12:29
MyrttiSplint: that's because the cd doesn't have the package. Use the method ubottu gave you earlier12:29
ActionParsnip1server_side: its the highest ranked game in wine12:29
ActionParsnip1!appdb | server_side12:29
damo22erUSUL: hmmm i already have blacklist usblp in my /etc/modprobe.d/blacklist.... but vmware cant access my usb printer12:30
ActionParsnip1server_side: http://www.winehq.org/download/deb12:30
erUSULdamo22: i never used vmware... maybe you can find a more apropiate channel... #vmware ?12:31
ActionParsnip1server_side: http://appdb.winehq.org/objectManager.php?sClass=version&iId=1415412:31
SplintIm on  http://apt.alturl.com/. What do i type into 'What (meta)package do you already have'?12:32
bullgard4What Ubuntu program (besides Gimp) allows to edit the 'Properties' (= 'tags'?) of a .jpg file?12:32
Pvpeter1actionparsnip1: The only IP I found to hamachis server wored to ping, but I still can't login12:32
erUSULSplint: ubuntu-desktop12:33
Splintthanks12:33
nefabullgard4: exiv212:33
ActionParsnip1bullgard4: imagemagick12:33
mizipzori just found out that my ftp server allows changing of directory to ../ and then into another users directory, reading/writing all their files >.<12:33
erUSULSplint: select jaunty-i386 as distribution12:33
ActionParsnip1mizipzor: d'oh12:34
Splintshould i get g++ or build-essential?12:34
erUSULSplint: no sorry you said you have hardy... choose hardy and i38612:34
ActionParsnip1mizipzor: if you set the home drive as the users home directory then it will be stopped12:34
erUSULSplint: build-essential12:34
mizipzorActionParsnip1: i like it though :p the ftp is behind a router anyway, and i wanted to fetch some files from another user... but i cant escape the "bad practice" feeling12:34
ActionParsnip1Splint: g++ does very little without external libs12:34
chessnutmushroomis anyone having an issue getting the login screen to appear for vmware server under ubuntu 8.04 9.04?12:34
SplintThanks XD12:35
ActionParsnip1mizipzor: then log in with ssh which is more secure, you can then use sudo cp as normal12:35
tamiyaHey guys12:35
ActionParsnip1chessnutmushroom: boot to recovery mode in grub and select fix graphics12:35
tamiyaI have Ubuntu 9.04 and recently installed KDE with 'apt-get install kde', selected 'y' to the KDM, and subsequently rebooted after the install. Now I get the KDM login but no KDE. GNOME loads instead. How do I get the KDE desktop?12:36
ActionParsnip1tamiya: sudo apt-get install kubuntu-desktop12:37
chessnutmushroomwhy do i need to fix the graphics?12:37
chessnutmushroomits the host machine that refuses to display the login screen for the webgui for vmware server 212:37
chessnutmushroomsorry if i was unclear.12:37
bazhangtamiya, its kubuntu-desktop12:37
tamiyaThanks, guys :)12:37
tamiyaI'll give that a go12:37
ShapeShifter499hi12:38
ActionParsnip1chessnutmushroom: the login screen isnt working, the login screen requires an x server, you don't have a working x server or you'd see the login screen, so you need to fix the x server so you get a display using graphics which will give you a log on screen]12:38
ActionParsnip1chessnutmushroom: web gui?12:38
ActionParsnip1chessnutmushroom: oh you mean the VIC12:38
chessnutmushroomim talking about vmware server 2 https:127.0.0.1:8333/ui inside firefox12:39
ActionParsnip1chessnutmushroom: is the service running?12:39
ActionParsnip1chessnutmushroom: try 127.0.1.1 instead12:39
chessnutmushroomhostd: yes12:39
aaron11aspen12:39
aaron11helo i have a problem with my compiz fusion icon when i switched to compiz then it stopped working12:40
chessnutmushroomthat doesnt play ball,12:41
aaron11ok12:41
aaron11ok12:41
chessnutmushroomit only attempts to load the page when accessing via port 833312:41
chessnutmushroomand usings https12:41
aaron11its safe12:41
ShapeShifter499I need to update/install a bios on another pc(a acer aspire one netbook) now to fix a few issues, I got the files now how do I make a dos booting usb on a PowerBook G4?12:41
ActionParsnip1chessnutmushroom: try running:   gksudo firefox https:127.0.0.1:8333/ui12:41
ShapeShifter499the powerbook has ubuntu 9.0412:42
ShapeShifter499on it12:42
Schmidthow do I disable the Ubuntu google plugin in firefox 3.5 ? :(12:42
rashed2020Is there a way to make 'du' display the size in MB no matter how big the directory is?12:43
ShapeShifter499??12:43
ActionParsnip1rashed2020: du -h12:43
BenwaHi, i've got an Nvidia and after a big upgrade (but not of the graphic driver) my resolution became very low. I cannot change it even with nvidia-settings. Any idea?12:43
aljosai have jaunty installed with "ATI RV370 [Sapphire X550 Silent]" and would like to enable one desktop on 2 monitors (currently monitors are mirroring 1 desktop). do you use xinerama or something else? what's the easiest way to configure this?12:43
ewookrashed2020: man du gives you the avaiable switches.12:43
rashed2020ActionParsnip1: Wouldn't that display it in GB if it was that big?12:44
chessnutmushroomthis login seems to be an issue every now and again, i dont know why12:44
SevetActionParsnip1: no, that'll give GB for larger directories12:44
ActionParsnip1ShapeShifter499: http://www.netbooktech.com/tag/acer-aspire-one-bios-update-instructions/12:44
jazzkutyarashed2020: du -m12:44
ActionParsnip1rashed2020: yes12:44
ActionParsnip1Sevet: do you want it all in Mb?12:44
chessnutmushroomwhat reliable alternatives are there to vmware server 212:45
chessnutmushroomvmware server 1 was rock solid12:45
ActionParsnip1Sevet: you can use du -m them12:45
Benwanobody?12:45
bazhangSchmidt, the one in Karmic?12:45
SevetActionParsnip1: that was rashed2020's original question12:45
ActionParsnip1chessnutmushroom: virtualbox is one12:45
rashed2020lol yep. Thanks you guys.12:45
ShapeShifter499ActionParsnip1: the software UNetbootin I can't seem to get working on my ubuntu(its PPC)12:45
chessnutmushroomdo you think this is because im connecting in bridged mode using wireless?12:46
chessnutmushroomwireless doesnbt connect until after x windows manager login.12:46
bazhang!karmic > Schmidt12:47
ubottuSchmidt, please see my private message12:47
ActionParsnip1chessnutmushroom: i'd ask in #vmware you will get more precise answers12:47
ShapeShifter499well?12:47
ActionParsnip1Benwa: uninstall the video drivers: sudo dpkg-reconfigure xserver-xorg; sudo apt-get --purge remove nvidia*; sudo apt-get --purge autoremove12:48
=== arand_ is now known as arand
ActionParsnip1Benwa: then reboot and run: sudo apt-get clean; sudo apt-get install nvidia-glx-180; sudo shutdown -r now12:49
ActionParsnip1Benwa: will remove any nvidia drivers and reinstall a fresh one from repo12:49
zetheroois there an app that does calling over Yahoo?12:51
Schmidtbazhang: yeah, the one in Karmic. I missed to disable the Multisearch add-on... :)12:52
ShapeShifter499can someone help12:52
bazhangShapeShifter499, with what12:52
bazhangSchmidt, #ubuntu+1 for help with Karmic stuff12:52
AndrewTHey need help getting Raid0 setup in ubuntu :)12:53
iceroot!raid | AndrewT12:53
ubottuAndrewT: Tips and tricks for RAID and LVM can be found on https://help.ubuntu.com/community/Installation/SoftwareRAID and http://www.tldp.org/HOWTO/LVM-HOWTO - For software RAID, see https://help.ubuntu.com/community/FakeRaidHowto12:53
chessnutmushrooma network restart on the host and then a mgmt restart seems to do the trick - although this is not a persistent resolution as when closing firefox and reopening you then lose your login screen again12:54
=== bac` is now known as bac
chessnutmushroomcheers12:54
ShapeShifter499I need to make a bootable usb dos so I can update a bios of a netbook to try to fix graphical issues, but I can't because I using a powerbook g4 with ubuntu 9.04 thats ppc and I need to use Unetbootin, I can seem to get the universal installer for it running on my powerbook12:55
AntaranianHi guys12:55
Antaranianwhat is echo -n "\033]0;${HOST}:$cwd\007\033]30;${HOST}:$cwd\007 for ?12:55
zetheroos there an app that does calling over Yahoo?12:56
ShapeShifter499can anyone help?12:56
stefanosto cercando un programma tipo movie maker per ubuntu.....ce ne sono?12:56
veikohi , i'm using ubuntu 9.04 and dont know how to configure authentification after standby, any help?12:56
AntaranianI've googled it, but found only usage and don't get12:56
ActionParsnip1ShapeShifter499: ultimatebootcd may help, you can spit the iso onto a usb stick and boot to that12:59
oldude67!es | stefano12:59
ubottustefano: En la mayoría de canales Ubuntu se comunica en inglés. Para ayuda en Español, por favor entre en los canales #ubuntu-es o #kubuntu-es.12:59
ShapeShifter499ActionParsnip1: oh?........tnx I'm google for it13:00
ActionParsnip1ShapeShifter499: www.ultimatebootcd.com13:00
ShapeShifter499ActionParsnip1: tnx ^_^13:00
SplintWhen trying to install the g++ deb I get the message 'Error: Cannot install 'g++-4.2''13:01
ShapeShifter499ActionParsnip1: so I un-pack the iso then move the files of the iso and bios, then just boot right?13:02
SevetSplint: any messages shortly before that error?13:02
Dr_WillisShapeShifter499:  you do not 'unpack' the iso and expect the thing to be bootable.13:02
ShapeShifter499huh?13:03
induswhats an image file really13:03
ActionParsnip1ShapeShifter499: no, do not unpack it13:03
ShapeShifter499ActionParsnip1: ? so..I...........13:03
Dr_WillisShapeShifter499:   indus  a direct 'dump' of the exact contents of a device/disk/floppy in 'raw' format to a file.13:03
ActionParsnip1ShapeShifter499: you will need to use software to copy the data over to the usb stick13:04
nomikehi13:04
rodimus_can someone help me? everytime i try to enable compiz on my computer i get a blank white screen13:04
nomikeIs it possible to install ubuntu with wubi on a truecrypt encrypted windows partition?!?13:05
ShapeShifter499ActionParsnip1: i'm sorry, copy with what?13:05
rafiqhello13:05
ActionParsnip1ShapeShifter499: http://www.pendrivelinux.com/install-and-boot-ultimate-boot-cd-ubcd-from-a-usb-device/13:05
ActionParsnip1ShapeShifter499: the ISO is a bootable piece of data, you can copy the files to it but the bootable part of the stick is missing13:06
rafiqhi frns113:06
Dr_Willisnomike:  if you want to test out ubuntu. you might want to try running it inside virtualbox.  wubi can be.. problematic at times.13:07
Dr_Willisnomike:  and im being very 'nice' about my feelings towards wubi. :)13:07
ActionParsnip1nomike: or use at least a 2Gb USB stick and use that13:07
ActionParsnip1Dr_Willis: right with you there dude13:07
indusunetbootin is good for making a bootable usb13:08
ShapeShifter499ActionParsnip1: nvm I found a img file of UBCD13:08
Dr_Willisnomike:  wubi dosent get much 'love' from most people. :)  it can be a real... problem.13:08
rafiqhello any1 listenin tome13:08
ActionParsnip1ShapeShifter499: that'll do too13:08
indusrafiq: yes13:08
bazhangrafiq, yes do you have a support question13:08
indusrafiq: what is the question13:08
Dr_Willisrafiq:  yes we see you.. theres 1314 people in this room.13:08
DeathPlanTHe what?13:09
DeathPlan>.>13:09
rafiqok der somproblem wid my ubuntu i cant instal flash palyer13:09
rafiqwat to do13:09
DeathPlanO_O13:09
DeathPlanHmm..<_<13:09
bazhangDeathPlan, this is a support channel; do you have a support question?13:10
Dr_Willisrafiq:  how have you tried to install it?  I normally install 'ubuntu-restricted-extras' package and it installs flash and some extra things you proberly want.13:10
ActionParsnip1rafiq: sudo apt-get install flashplugin-installer13:10
fosser_joshhi13:10
ActionParsnip1!hi | fosser_josh13:10
ubottufosser_josh: Hi! Welcome to #ubuntu!13:10
nomikeWell, the reason for choosing wubi, is that it is a company laptop, and they do not officially alow me to install ubuntu on it (for private use). Tha't why I use wubi, as they are not experienced enough to detect it (and also I don't want to interfere with company data when doing private stuff in my spare time)13:11
rafiqE: Couldn't find package flashplugin-installer this isd msg13:11
nomikewell what I could find through google truecrypt and wubi are not close friends...13:11
TbbWanyone know how to blacklist a pci id instead of a kernel module ?13:11
TbbWgot issues with my modem that uses the same module as my soundcard13:11
fosser_joshthis question is specially those r indian. i want to configure cable net on ubuntu 9.0413:12
ActionParsnip1rafiq: can you please type in full english sentances, you are not charged anything for typing more in IRC. It is free13:12
nomikeTbbW: Is turning of the modem in bios (I assume it's built in and you could not just unplug it) an optoon?13:12
nomikes/optoon/option/13:12
ActionParsnip1rafiq: sudo apt-get update; sudo apt-get install flashplugin-nonfree13:12
psys?DCC SEND "ff???f?" 0 0 013:13
TbbWnomike: Toshiba laptop, cant do anything in the bios exept set time/date and boot order13:13
geekhutc.freenode.com13:14
fosser_joshhow to configure cable net on ubuntu9.04. i tried to sudo pppoeconf but its not wroking properly.13:14
rafiqi am sorry...i tried these too..installation works but it doesnot show in sound and video and i can not watch youtube and orkut videos13:14
syntaxhow do you save a .txt file in terminal useing nano13:15
ActionParsnip1rafiq: ok what is the output of: uname -a   please13:15
jribsyntax: ctrl-o (the bottom of nano should say ^O - Write Out)13:15
Dr_Willissyntax:  ^ = use the ctrl key.13:15
ActionParsnip1syntax: ctrl+x  y   type filename   press enter13:15
SplintIm trying to install two .debs that are dependent on each other. Is there a waw for me to install these?13:15
Dr_WillisSplint:  sudo dpkg -i package1  package213:16
jribSplint: dpkg -i 1.deb 2.deb  -- what are you installing?13:16
ActionParsnip1Splint: sudo dpkg -i file1.deb fil2.deb13:16
TbbWSo... no one knows how to blacklist a pci id ?13:16
syntaxThx13:17
syntaxLinux is pretty sweet13:17
indus!who | rafiq13:17
ubotturafiq: As you can see, this is a large channel. If you're speaking to someone in particular, please put their nickname in what you say (use !tab), or else messages get lost and it becomes confusing :)13:17
rafiquname: extra operand `please'Try `uname --help' for more information.13:17
jribrafiq: what did you type to get that?13:17
ActionParsnip1rafiq: uname -a13:17
indusfosser_josh: hi13:17
indusfosser_josh: cable internet?13:18
fosser_joshindus: hi13:18
indusfosser_josh: how do you login?13:18
fosser_joshindus: yah i wnt to configure in ubuntu 9.0413:18
indusfosser_josh: pacenet?13:18
fosser_joshindus: i tried sudo pppoeconf command13:18
fosser_joshindus: no local cable net13:18
indusfosser_josh: what happens when you try that?13:19
nomikeIs there a way to remove options from the User-Menu (the menu on the top right where you could loggoff, suspend, hibernate, reboot, shutdown)?13:19
nomikeI want to remove or at least disable hibernating and suspending.13:19
fosser_joshindus: i will tell u what i done13:19
fosser_joshindus: sudo /etc/init.d/networking stop13:20
fosser_joshindus: then i run sudo pppoeconf13:20
indusfosser_josh: can u tell me the method how you connect in windows?13:20
rafiqbuddy i dont kno who has answered me...sorrry can i kno your name13:20
fosser_joshindus: i dont know how to connect in windows13:21
fosser_joshindus: i never used it13:21
indusfosser_josh: your cable operator didnt tell you?13:21
fosser_joshindus: i think they provide some dialer13:21
indusfosser_josh: yeah13:21
ActionParsnip1rafiq: open a terminal, type    uname -a      press enter, copy the text, paste it here13:21
Dr_Willisnomike:  Hmm.. Mine just has Logoff, Restart, and Shutdown. :)13:21
fosser_joshindus: i want configure at my friends place13:21
indusrafiq: go to main menu>accessories>terminal\13:22
indusfosser_josh: which city are you in?13:22
fosser_joshindus: in vasai near to mumbai13:22
indusfosser_josh: i had a cable connection once,but just had to set up static ip to connect13:22
indusfosser_josh: hmm what is the nameof the dialer they provide? any idea13:23
rafiqLinux rafiq-laptop 2.6.24-24-generic #1 SMP Fri Jul 24 22:46:06 UTC 2009 i686 GNU/Linux13:23
fosser_joshindus: no idea13:23
ActionParsnip1fosser_josh: i use cable, just have to clone mac address and its good13:23
fosser_joshindus: coz i never used windows13:23
rafiqbangalore13:23
rekhi,installed a new hdd... now i don't have the permission to write files on it13:23
rafiqindia13:23
ActionParsnip1rafiq: ok thats cool, 32bit is great for plugins13:23
rafiqok13:23
indusrafiq: i was talking to fosser_josh, btw iamalso in bangalore13:23
rafiqthanks13:24
ActionParsnip1rek: you need to partition it and mount it13:24
rekalready done13:24
indusfosser_josh: do u have a username and a password for connectiong?13:24
fosser_joshActionParsnip1: can u tell me how to configure13:24
fosser_joshyah13:24
rekalready done13:24
rafiqoh my goodness...u dint tel your name13:24
ActionParsnip1rafiq: try: sudo apt-get --purge remove flashplugin-nonfree; sudo apt-get -purge autoremove13:24
fosser_joshindus: when i tried this pppoecof command i entered username & password13:24
rekhei13:24
fosser_joshindus: but stil its not working13:25
indusfosser_josh:did u restart networking13:25
ActionParsnip1rafiq: then close all firefoxes and then go to something like http://www.rathergood.com/blode213:25
rekwhat can i do?13:25
ActionParsnip1rafiq: you should be offered flash13:25
Dr_WillisRathergood.. :) heh.. turn down the volume@!13:25
fosser_joshindus: 1st i stopped then i tried pppoeconf command13:25
ActionParsnip1rek: gksudo gparted13:25
indusfosser_josh: then restart networking?13:26
fosser_joshindus: then i proceed as per the instruction13:26
rek?13:26
fosser_joshthen it shown pppoe loaded13:26
rafiqfor the second command E: Command line option 'p' [from -purge] is not known.13:26
indusfosser_josh: did u enter proper dns address etc13:26
rekgksudo?13:26
fosser_joshindus: yah13:26
rekalready done g parted13:26
bazhangrek, yes13:26
rekwhat's gsudo ?13:27
ActionParsnip1rek: it runs gui apps with elevated priveledges13:27
bazhang!gksudo > rek13:27
ubotturek, please see my private message13:27
indusfosser_josh: can we start again with pppoeconf13:27
reki did sudo gparted13:27
rekso sudo gpardet is shit ????13:27
indusfosser_josh: did u try sudo pppoe-start?13:27
ActionParsnip1rek: close it and run it properly13:27
bazhangrek, watch the language13:27
indusfosser_josh: once you finish config type this command13:27
fosser_joshindus:  at one of my friends placeits working properly. but at others friend its now working13:27
ActionParsnip1rek: sudo is for command line commands ONLY13:27
reksure??????13:28
fosser_joshindus:  no i didnt tried that command13:28
ewooksave some questionmarks for the rest of us.13:28
ActionParsnip1rek: sudo does not onfigure the environment for apps that use x so gksudo is used13:28
fosser_joshindus: ohk fine i will check it13:28
rekbazhang what language are u an operator?^?????13:28
ActionParsnip1rek: kde has kdesudo for the same reason13:28
bazhangrek, dont curse in here13:28
rekbut it ewoarked i did it13:28
Dr_Willisrek:  its best to use gksudo or gksu for gui apps.. some times 'sudo' wont work for X apps...     just a good habbit to get into so you dont get all confused some time in the future.13:28
fosser_joshindus:  for now i am at my home so cant try anything13:28
rekbut it worked13:28
fosser_joshindus:  thanks for the help13:28
reki ext3ed it13:28
ActionParsnip1rafiq: sudo apt-get --purge autoremove13:29
rekformatted lol13:29
rekwhat's cursing?13:29
bazhang!enter | rek13:29
ubotturek: Please try to keep your questions/responses on one line - don't use the "Enter" key as punctuation!13:29
Dr_Willisrek:  saying naughty words.13:29
ActionParsnip1rek: if you use sudo for gui apps you will get this: https://answers.launchpad.net/ubuntu/+source/azureus/+question/7215113:29
rek!enter | bazhang13:29
ubottubazhang: Please try to keep your questions/responses on one line - don't use the "Enter" key as punctuation!13:29
ActionParsnip1rek: i keep that link in my favourites to educate13:29
rekasuhauh  whjat?13:29
bazhangrek, stop that13:30
fosser_joshindus: is ther any dialer for cablenet in ubuntu13:30
rekwhat? however...how can i set the right permissiones?13:30
rekns*13:30
ActionParsnip1rek: you set the mount point and permissions using fstab13:30
indusfosser_josh: pppoe is the dialer for all things, but it doesnt work for pacenet13:30
indusfosser_josh: i use airtel :) Its the greatest isp on earth13:31
rekis it what i need?13:31
fosser_joshindus: ohk fine13:31
ActionParsnip1!fstab | rek13:31
ubotturek: The /etc/fstab file indicates how drive partitions are to be used or otherwise integrated into the file system. See https://help.ubuntu.com/community/Fstab and http://www.tuxfiles.org/linuxhelp/fstab.html and !Partitions13:31
rekin order to use my hd?13:31
indusfosser_josh: switch to it if you want quality, those cable providers are fools/idiots etc13:31
ActionParsnip1rek: yes13:31
Myrttirek: please try to keep your question to one line so that we don't have to go digging for parts of your questions for clues13:31
rekfstab not found13:31
fosser_joshindus: no need i am using bsnl broadband13:31
rafiqldconfig deferred processing now taking place13:32
bazhangindus, fosser_josh could you take discussion of IP to #ubuntu-offtopic please13:32
fosser_joshindus: with inlimited plan13:32
ActionParsnip1rek: its in /etc/fstab, its a config file13:32
indusfosser_josh: aah ok, if you could find out which is the dialer name then its easier13:32
rekah ok13:32
rafiqnow u want me to go to rathergood.com?13:32
rekgedit lol?13:32
ActionParsnip1rek: read the links in the factoid and you can configure your system to use your newly created partition13:32
ActionParsnip1rafiq: sure13:32
indusfosser_josh: ask your friend what settings he used to get it working, write it down then try it at the other friends place13:32
rekno gui?13:33
Dr_Willisrafiq:  turn the volume down a bit befor going there.. it can be a loud site. :)13:33
indusfosser_josh: remember the step sudo pppoe-start to start the link13:33
booksbuggycan anyone tell me what driver to use for nvidia ck804 AC'97 audio controller?13:33
ActionParsnip1rek: read the links13:33
fosser_joshindus: ohk fine i will do that. i will ues that comand13:33
rekopened the file it's cool13:34
rafiqDr: sure..thank u13:34
ActionParsnip1Dr_Willis: but very happy :)13:35
el_-Hi anyone got a HP LJ4p Running on ubuntu 9.04?13:35
Andhave not try that13:36
rekdoes not talk about permission13:36
rekhelp13:36
xerox1hi, I just wanted to install the drivers for my ati x1800 graphics card; according to several sites in the internet i should use system->system options->hardware drivers (translated to english); but the window is empty (no driver at all listed)13:36
reki must set the permissions13:36
rafiqactionParsnip: sorry i m here for the first time i dint c name being displayed on left...13:36
Besogon!flash13:36
Myrttirek: patience!13:36
ubottuTo install Flash see https://help.ubuntu.com/community/RestrictedFormats/Flash - See also  !Restricted and !Gnash13:36
aaron11helo i have a blender 3d modeling program but its having some interference im using jaunty13:36
el_-hi HP LJ4P is detected and pretends to print... but it does actually not!13:36
rekok13:36
bazhangaaron11, please explain 'some interference'13:37
Andcan you change ntfs partions to ext3?13:37
geraldineRockall doesn't work...13:37
geraldineWhat's happen ?13:37
rekActionParsnip1:13:37
aaron11there is a messup at the heder13:37
indusAnd sure13:37
bazhangaaron11, no idea what a 'messup' is13:38
indusAnd when you format the partition that is13:38
aaron11ill show you13:38
ActionParsnip1rek: ?13:38
crushyboican i mark traffic coming from an ip to same ip from which it came ?13:38
bazhangaaron11, paste.ubuntu.com13:38
aaron11no im sending a file13:38
rekhow can i set the permssn?13:38
ActionParsnip1rek: you set it in the fstab file when you mount it13:39
aaron11acsept13:39
bazhang!imagebin | aaron1113:39
ubottuaaron11: Screenshots can be made with the [PrtScr] button. Want to show us a screenshot of your problem? Upload an image to http://tinyurl.com/imagebin and post a link to it.13:39
booksbuggycan anyone tell me what driver to use for nvidia ck804 AC'97 audio controller?13:39
rekwhat can i write?13:39
aaron11fine13:39
ActionParsnip1rek: read the fstab factoid links that ubottu gave you13:39
aaron11>:/13:39
reksorry i'm nervous but i have a..... i drunk cool carbonated water13:40
rekread13:40
bazhangrek, please read the links13:40
rekdon't no13:40
aaron11http://imagebin.org/5910613:40
rekhttps://help.ubuntu.com/community/Fstab13:40
ActionParsnip1rek: you need to read the output of: sudo fdisk -l13:40
rekthx now i try13:40
indusso whats rek problem13:41
indusrek's problem13:41
ActionParsnip1rek: and add a line to your fstab, the partition name will be something like /dev/sdb1 or similar13:41
rekindus permissions13:41
indusk13:41
ActionParsnip1rek: you can then read the fsta factoid links and add an entry to the file and the partition on the new drive wil mount at boot13:41
indusrek: ActionParsnip1 is helping which is good13:41
aaron11bazhang: http://imagebin.org/5910613:41
rek/dev/sdb113:42
rekyep he's cool and kind13:42
ActionParsnip1rek: ok so now if you run: sudo mkdir /media/storage13:42
bazhangaaron11, no idea about blender, perhaps try in #blender13:42
ActionParsnip1rek: what format is the new partition you made?13:42
aaron11:(13:42
rekshalli ?13:42
smrln_mrln13:43
indusaaron11: did u post the screenshot?13:43
asgerI neede help. My screen resolution is messed up after i tryed to connect to tv-out13:43
rekext313:43
aaron11indus: yes13:43
indusaaron11: seems like a video driver issue13:43
aaron11ok13:44
ActionParsnip1rek: ok cool now run: gksudo gedit /etc/fstab13:44
indusaaron11: desktop visible through it13:44
ActionParsnip1rek: and add this line13:44
aaron11indus: do you know what to do13:44
indusaaron11: restart blender and check if it happen again?13:44
shadowhywindhay all when ever i try to run mogrify, I am getting mogrify: NoDecodeDelegateForThisImageFormat any ideas?13:44
aaron11lol13:44
indusaaron11: :)13:44
rekthis? which? ActionParsnip113:44
aaron11indus: did that a million times with and without compiz13:45
indusaaron11: i suggest you file a bug report with the display driver version13:45
indusaaron11: also,look for suggestions in #blender13:45
booksbuggycan anyone tell me what driver to use for nvidia ck804 AC'97 audio controller?13:45
aaron11how do you do that13:45
ActionParsnip1rek: /dev/sdb1ext3 /media/storage auto,users,uid=1000 0 013:45
indusaaron11: try also playing with the display options in blender, probably open gl or xv or whatever13:45
progre55hi people! I was trying to install swatch here, and when I run it, I get this error "sendmail: fatal: open /etc/postfix/main.cf: No such file or directory" what's that? and any workarounds? well, I havent googled yet.. I guess I should =)13:45
indus!launchpad | aaron1113:46
ubottuaaron11: Launchpad is a collection of development services for Open Source projects. It's Ubuntu's bug tracker, and much more; see https://launchpad.net/13:46
ActionParsnip1rek: with a space between sdb1 and ext313:46
=== aaron11 is now known as ransome132
ActionParsnip1rek:  /dev/sdb1 ext3 /media/storage auto,users,uid=1000 0 013:46
ransome132ok thanks13:46
ActionParsnip1rek: press enter on the end of the line, save the file and reboot13:46
maximus_hello! I'm using Ubuntu for a while now, but I got a weird situation: I brought a western digital external hard drive (my passport) and when I plug it in to the USB, nothing happens13:46
maximus_anyone could give me some hints?13:47
vivxonehey can any one plz help me?13:47
maximus_(on google, people seem to have it working fine)13:47
vivxone?13:47
rekcool , what's users, uid  1000 0 0 ??13:47
vivxoneany one plz13:47
indusmaximus_: what is the output of mount13:47
indusmaximus_: whats the output of lsusb also13:48
rafiqAction: website is awsome... but the problem is again wid utube13:48
rekwhat would have happened if i had used gksudo ?? ActionParsnip113:48
rafiqUpgrade to Flash Player 10 for improved playback performance. Upgrade Now or get more info.13:48
vivxonePlease suggest a name for our college tech fest13:48
Timborhi guys13:48
ActionParsnip1rek: it sets the environment up properly13:48
vivxoneplz13:48
rafiqthis is the error message13:48
maximus_indus: how to see the output of mount?13:48
indusvivxone: wrong channel \13:48
ActionParsnip1rafiq: you got javascript enabled?13:49
bazhangvivxone, offtopic for here13:49
vivxonePlease suggest a name for our college tech fest13:49
Pici!ot | vivxone13:49
ubottuvivxone: #ubuntu is the Ubuntu support channel, for all Ubuntu-related support questions. Please use #ubuntu-offtopic for other topics. Thanks!13:49
indusmaximus_: in mainmenu>accessories>terminal type mount13:49
indus!paste | maximus_13:49
ubottumaximus_: pastebin is a service to post multiple-lined texts so you don't flood the channel. Ubuntu pastebin is at  http://paste.ubuntu.com | To post !screenshots use http://tinyurl.com/imagebin | !pastebinit to paste directly from  command line | Make sure you give us the URL for your paste - see also the channel topic13:49
rekActionParsnip1:  properly equals....  i would have been able to write files on it?????13:49
rafiqsorry how to check that?13:49
Timbori've a problem with my ubuntu system. it will not detect my ps2 mouse/keyboard.13:49
vivxonei knowwww thttttt13:49
vivxoneplzzzzz13:49
Timborif i boot in the recovery mode i can work with my keyboard13:49
vivxone help me13:49
FloodBot1vivxone: Please don't flood, use http://paste.ubuntu.com to paste, don't use Enter as punctuation.13:49
reki never do gksudo gedit.... i always do sudo gedit13:50
bazhangvivxone, then stop asking13:50
xerox1i would like to install the drivers for my ati x1800 on jaunty; the list of restricted drivers is empty; how to fix that?13:50
vivxonegod will help u13:50
Timborbut if i start x it doenst work13:50
indusvivxone: call it techspam13:50
pozicFirefox crashes after I visit a page with a Flash plugin on it. Is this a known problem?13:50
maximus_indus: lsusb -> http://paste.ubuntu.com/251343/13:50
vivxoneok13:51
indusmaximus_: what make is the usb hdd13:51
ActionParsnip1rek: yes but it may mangle permissions and owners13:51
vivxoneas u wish13:51
vivxonebyeeeeeeeeeeeeeeeeeeeeeee13:51
indusbye13:51
rekmangle?13:51
indusrek: mangle=messup13:51
maximus_indus: I do not understand the "what make" ?13:51
indusmaximus_: what company13:51
indus:)13:51
indusmaximus_: make and model13:51
Lo_Panhe already said western digital13:51
rekindus ok mangle equals destroy13:52
maximus_indus: Western Digital13:52
indusmaximus_: aargh thanks i remember13:52
rekthx another word learnt13:52
indusmaximus_: whats the output of mount13:52
rekActionParsnip1:  properly equals....  i would have been able to write files on it?????13:52
maximus_indus: mount -> http://paste.ubuntu.com/251345/13:53
neoTheCatthis is a real general question, but has anyone had any problems with 9.04 becoming slower in general?13:53
indusmaximus_: ok in terminal type 'mount -a' without the quotes13:54
booksbuggycan anyone tell me what driver to use for nvidia ck804 AC'97 audio controller?13:54
indusmaximus_: ok here is a simpler solution> do u see anything in menu>places?13:54
maximus_indus: mount -a gives nothing13:54
chrismHas anybody spotted the corrupt file in the 9.04 remix .img?13:54
indusmaximus_: ya it wont give anythng,just mounts all devices13:55
maximus_indus: no, I see nothing on the manu>places regarding the external usb hdd13:55
=== XLV_ is now known as XLV
indusmaximus_: ok do this in terminal 'sudo modprobe usb_storage'13:56
oguncakhi everybody.. is there a solution to prevent the beep sound on startup and shutdown? my sound scheme is adjusted for no sounds though!!!13:56
sergio /msg StArGaTe|Mp3|020 XDCC SEND #2613:56
rekActionParsnip1:  user or users ?13:56
noisehi 2 all.how can i have the 313:56
noise3d cube ?13:56
noisehow is the name of the program?13:56
zirodayoguncak: you can blacklist the pcspkr module all together and prevent your pc speaker from going off ever13:57
bret noise: compiz13:57
cahJogjahiiii13:57
noiseok13:57
maximus_indus: nothing happens13:57
ziroday!ccsm | noise13:57
ubottunoise: To enable advanced customization of desktop effects in Ubuntu: install 'compizconfig-settings-manager' or 'simple-ccsm'. If you install the latter, a new option will appear in your appearance properties - See also !compiz - Help in #compiz13:57
ActionParsnip1rek: user i think, read the fstab guides13:57
indusmaximus_: ya nothing visible will happen13:57
rekuser13:57
indusmaximus_: now do a mount -a13:57
rekyes other dev uses user13:57
maximus_indus: still, nothing happens13:57
indusmaximus_: now check in places13:58
maximus_indus: the usb hdd has fat3213:58
maximus_indus: no new entries in places13:58
indusmaximus_: can i see out put of sudo fdisk -l also13:58
Montecristo_!keep edmond13:58
ubottuSorry, I don't know anything about keep edmond13:58
oguncakthanks for the reply.. does that shut down my sounds copletely? will i be able to play music anyways?13:59
zirodayoguncak: you will be able to play music. It only stops the pc speaker for making any "beeps"13:59
indusmaximus_: try this in terminal13:59
indussudo modprobe -r ehci_hcd13:59
maximus_indus: fdisk -l -> http://paste.ubuntu.com/251346/13:59
induskk14:00
indussudo modprobe -r ehci_hcd14:00
chrismoguncak: i  left the chat  but can say i use psst.app It works well and is adjustable. Only affects the chime not the usual sound. hth14:00
indusnow paste the output of dmesg | tail14:00
maximus_indus: the usb that is listed on the output of fdisk -l is not what I need14:00
indusmaximus_: nvm the fstab,14:00
indussudo modprobe -r ehci_hcd14:00
indusnow paste the output of dmesg | tail14:00
oguncakthanks ziroday!!! so, how will i do the things you told? instructions :D14:01
booksbuggycan anyone tell me what driver to use for nvidia ck804 AC'97 audio controller?14:01
zirodayoguncak: in a terminal type in sudo nano /etc/modules.d/blacklist and add in the line blacklist pcspkr14:01
indusoguncak: you have a file called /etc/modules/blacklist.conf add line to end blacklist pcspkr14:01
maximus_indus: dmseg | tail -> http://paste.ubuntu.com/251348/14:02
indusziroday: ya sorry oguncak i forget exact path14:02
ActionParsnip1booksbuggy: can you provide the output of: sudo lshw -C sound14:02
oguncakthanks.. i hope i am not keeping you stuck with me.. i will try what you told.14:02
indusziroday: oguncak please use blacklist.conf in jaunty as the other one is deprecated14:02
indusboth work though14:02
rekActionParsnip1: now i don't even see it14:02
rekdon't even see it as a drive14:03
rekhelpp14:03
ActionParsnip1rek: can you provide the output of     mount14:03
oguncakok ziroday.. i will try and come back again.14:03
indusmaximus_: ok switch off power to device, restart system , then boot into ubuntu and power on again14:03
booksbuggyActionParsnip1: what is the paste bin site again?14:03
ActionParsnip1!paste > booksbuggy14:03
ubottubooksbuggy, please see my private message14:03
bazhangbooksbuggy, paste.ubuntu.com14:03
ActionParsnip1booksbuggy: any will do though, you don't need to use that particular one14:04
maximus_indus: should I connect the device at boot time or after logged I log in?14:04
rekhttp://paste.ubuntu.com/251352/14:04
booksbuggyActionParsnip1: http://paste.ubuntu.com/251351/14:04
indusmaximus_:after login you connect it14:04
indusmaximus_: then check dmesg | tail14:04
rekbooksbuggy i told him lol14:05
ActionParsnip1rek: ok what if you run: sudo mount -a14:05
rekmount: mount point ext3 does not exist14:05
booksbuggyActionParsnip1: when i googled that they said something about it being buggy14:05
ubtestHey folks, I use standard Ubuntu CD and want to perform an automatic install. I specify auto=true url=http://..../preseed.cfg interactive=false, and the system properly gets the IP address and obtains the preseed file, but it still opens the graphical display and asks the questions manually, as if its ignoring the preseed data. Any hints?14:05
ActionParsnip1booksbuggy: from a forum someone advises: sudo apt-get --reinstall install pulseaudio14:06
booksbuggyActionParsnip1: okay14:06
rekso gparted didn't the job?14:06
chrismthe corrupt file in the 9.04 remix .img is at  /pool/main/ppp/p.  Called PPP_245~.D nul nul.  It gives error -43 and can't be deleted or renamed or whatever.  It is screwing up my attempts to 'disk verify' and to get a proper reading of my USBs size.14:06
rekmount: mount point ext3 does not exist14:06
ActionParsnip1rek: ok can you pastebin the /etc/fstab file please14:06
rafiqActionParsnip: java script enabled..14:07
Dr_Willistypos in fstab :) fun fun fun14:07
ubuntulol14:07
ActionParsnip1Dr_Willis: tell me about it14:07
ActionParsnip1rafiq: run: gksudo gedit /etc/fstab14:08
rekrw action man ? we missed read and write maybe14:08
Dr_WillisFstabulus!14:08
ActionParsnip1rafiq: change the line to /dev/sdb1 /media/storage ext auto,users,uid=1000 0 014:08
ActionParsnip1gah14:08
Dr_Willisext2 or ext3 ya mean :)14:08
rekusers or user14:08
ActionParsnip1/dev/sdb1 /media/storage ext3 auto,users,uid=1000 0 014:08
Dr_WillisHeh.14:08
rekto be or not to be that is the question14:08
ActionParsnip1rek: whichever you found it to be14:08
rafiqtext file fstab opened14:08
xerox1i am facing a flickering mouse pointer + no desktop effects; graphics card: ati x1800 on jaunty; any recommendations?14:09
reklol14:09
rekwe must be more accurate14:09
ActionParsnip1rek: if yu read some guides online you can find all this out, including the links in the factoid14:09
rekhttp://paste.ubuntu.com/251357/14:09
ubtestBtw, how can I disable graphical installer?I'd like the usual text version.14:10
booksbuggywhat kind of audio device is compatible with amorak?14:10
ActionParsnip1rek: yeah, swap ext3 and /media/storage   around14:10
bazhangubtest, use the alternate cd? the minimal one?14:10
booksbuggyI meant amarok14:11
ActionParsnip1rek: the rest will be fine14:11
rek?14:11
ActionParsnip1rek: i mixed the colomns up14:11
rekActionParsnip1: don't know14:11
ActionParsnip1rek: change: /dev/sdb1 ext3 /media/storage auto,user,uid=1000 0 014:11
=== academia_ is now known as wwarior
ActionParsnip1rek: to: /dev/sdb1 /media/storage ext3 auto,user,uid=1000 0 014:11
ActionParsnip1rek: i know you don't know thats why i'm doing so much hand holding here14:12
rekhand holding?14:12
rafiq ok now save?14:12
rekcan i reboot?14:12
ActionParsnip1rek: me pretty much giving you every command and option rather than yo uinjecting anything to the process14:13
sheyla#SEMARANG14:13
ActionParsnip1rek: i'd add rw to the options too14:13
maximus_indus: http://paste.ubuntu.com/251359/14:13
sheyla#semarang14:13
rekuinjecting ? i whould ad rw too lol14:13
rekand where?14:13
ActionParsnip1rek: change auto,user,uid=1000   to rw,auto,user,uid=100014:13
indusmaximus_: so still cant see the usb drive?14:13
reksure u don't miss something??14:13
maximus_indus: still can't14:14
ActionParsnip1rek: its a bit of experimentation with wat will work, we'll get there14:14
rafiqActionparsnip: file edited..shali save n close14:14
ActionParsnip1rek: you can now save the file, close gedit and type: sudo mount -a14:14
maximus_indus: but I've done reboot before too, so that won't help14:14
rekin the fd0auto is before14:14
indusmaximus_: aah not sure whats going on,but i read somewhere on the forums about one step wait14:14
maximus_indus: "one step wait" ?14:15
indusmaximus_: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/34440614:15
maximus_indus: the usb hdd is connecting and disconnecting automatically every 2 seconds14:15
rekline 11 in /etc/fstab is bad14:15
indusmaximus_: i meant wait 1 sec :)14:15
ActionParsnip1rek: you can now verify the task has complete by running     mount14:15
indusmaximus_: just read that link i think it might help14:15
ActionParsnip1rek: ok can you pastebin the fstab file again14:15
indusi need to leave now14:15
maximus_indus: thank you!14:16
indusmaximus_: most welcome, bye then14:16
jacekowskithat reminds me something14:16
lorasaironwill gnome 3 change a lot?14:16
lorasairons/gnome/gconf14:17
rekhttp://paste.ubuntu.com/251363/            for ActionParsnip114:17
jacekowskihttp://i28.tinypic.com/dg06iv.jpg14:17
bazhangjacekowski, dont spam here14:17
rekis there a gui to set this..... ....permissions^14:17
ransome132jilo14:18
bazhangransome132, hi14:18
ransome132hi there14:19
rekUUID=30fcb748-ad1e-4228-af2f-951e8e7b56df / ext3 defaults,errors=remount-ro,noatime 0 1   ActionParsnip1 how can i find this root filesystem14:19
geirharek: sudo blkid -t UUID=30fcb748-ad1e-4228-af2f-951e8e7b56df14:21
rekgood and cool geirha14:21
ActionParsnip1rek: you didnt change the line14:22
rekah sorry14:22
ActionParsnip1rek: your fstab still reads: /dev/sdb1 ext3 /media/storage ext3  rw,auto,user,uid=1000 0 0     which won't work14:22
rek2 ext314:22
ActionParsnip1rek: it needs to read: /dev/sdb1 /media/storage ext3  rw,auto,user,uid=1000 0 014:22
vagothcpp"sudo su" or "sudo bash", whats the difference?14:23
rekand the rooth filesystem?14:23
ActionParsnip1vagothcpp: both arent hugely advised, sudo -i   is advised14:23
nafae14:23
vagothcppActionParsnip1: Why and Why?14:23
=== naf is now known as ce_luTu
ce_luTuaoww14:24
Commander1024sudo bash just starts an new (redundant) bash with admin right14:24
ActionParsnip1vagothcpp: sudo su will make you be root, but when you modify files in your home they will be owned by root and you may damamge files and settings so you cannot log in14:24
cresusoHey14:24
cresusoSorry for asking there14:24
rekhttp://paste.ubuntu.com/251371/ ActionParsnip114:24
=== Kottizen is now known as XyZ
Commander1024sudo su invokes the running shell with the "superuser" command in admin mode14:25
cresusobut how can i register for #python channel ?14:25
=== XyZ is now known as Kottizen
bazhang!register > cresuso14:25
ubottucresuso, please see my private message14:25
Kottizencresuso: I think it's already registred.14:25
ActionParsnip1rek: have you formatted the partition?14:25
cresusoKottizen, It says no14:25
vagothcppand sudo -i when I modify files/save files it is as my user?14:25
cresusoI'll seee bazhang, thank's14:25
ActionParsnip1vagothcpp: sudo -i   is an interactive sudo and will be your username just elevated in priveledges14:25
rekyep but....why can't i set the right device with blkid ???14:25
bazhangcresuso, register and identify, #freenode for help in the future thanks14:26
rekhe don't even display the drive in computer14:26
ActionParsnip1vagothcpp: your settings for bash will be your own too as when you run sudo su your settings and home will be /root14:26
cresusobazhang, Yes, sorry ;)14:26
ActionParsnip1rek: you don't have to use blkid14:26
rekhowever now i try to see if there are some problems with the wires14:26
ActionParsnip1rek: you can use it if you wish14:26
rekwhy ActionParsnip114:26
ActionParsnip1!blkid14:26
ubottuTo see a list of your devices/partitions and their corresponding UUID's, run this command in a !shell: « sudo blkid » (see https://wiki.ubuntu.com/LibAtaForAtaDisks for the rationale behind the transition to UUID)14:26
Commander1024sudo su will most probably not load a sane profile environment (wrong or no %PATH set etc.)14:26
ActionParsnip1rek: if the partition shows up in sudo fstab -l then its fine14:26
rekinsane?14:27
rekno14:27
schweizer_hi folks14:27
rekit does not work that command after i rebooted14:27
ActionParsnip1vagothcpp: its just advised to use sudo -i14:27
ActionParsnip1rek: then your wires may be loose14:27
schweizer_how can i set up a pseudo printer so that i can print a document for instance to a png file with "soffice -pt pseudo_printer_png document" ?14:28
sunamiebobtry sudo fdisk -l14:28
rekActionParsnip1:  99% yes14:28
reknow i open the case14:28
ActionParsnip1rek: make sure its off before you play14:28
rekwhen i touch it i hear the hdd14:28
WishingMasterActionParsnip1, i want to update my kde version from 4.1 to latest,do you know the repository address of kde?14:28
richardcavellActionParsnip1: My wires have been loose for some time14:29
rekmust buy a new PSU what PSU do u like?14:29
ActionParsnip1WishingMaster: http://www.kubuntu.org/news/kde-4.314:29
ActionParsnip1WishingMaster: its in the MOTD in #kubuntu14:29
rekwhat PSU ....could i buy? 20 euro14:29
ActionParsnip1rek: thats offtopic here14:29
rekyep but it's a little ontopic14:30
rek5% topic14:30
nfrgvn_sh'ello14:30
bazhangrek, its offtopic14:30
Picirek: No, its not.  ##hardware would be the best place to ask.14:30
rek2%14:30
bazhangrek, try ##hardware14:30
nfrgvn_shi have a question14:30
rekhi pici14:30
ActionParsnip1rek: its hardware related which is OS independant, take it to #ubuntu-offtopic or #hardware14:30
nfrgvn_shany gurus around?14:30
reknow i power off14:30
vagothcppWhat is the filesystem type for vbox shared folders?14:31
noise_who is the best terminal14:31
rekActionParsnip1:  i know hw.... i'll be back and...14:31
ewooknoise_: I am.14:31
noise_nice to meet you14:31
noise_:p14:31
Otacon22Wich program can i use to modify video and inserting audio and images?14:31
runpain2_Hello all14:32
Otacon22i've not found anything decent to do that14:32
ActionParsnip1vagothcpp: shares dont have an fs, its managed by the managed by the service14:32
runpain2_How do i run file browser in root14:32
=== avelldiroll_ is now known as avelldiroll
ActionParsnip1runpain2_: gksudo <app name>14:32
vagothcppActionParsnip1: I beg to differ, it is used via a mount14:32
=== adam is now known as Guest12310
ewookActionParsnip1: so, nfs is what?14:33
nfrgvn_shi updated my presistant liveUSB and now it wont boot, any solutions?14:33
noise_where can i find a guitar tuner?14:34
nfrgvn_shi updated my presistant liveUSB and now it wont boot, any solutions?14:34
vagothcppmount.vboxsf sharename mountpoint14:34
ActionParsnip1vagothcpp: then it will be determined by the sharing service, sshfs, smbfs14:34
ewooknoise_: in a music store, or via apt-cache search / aptitude / synaptec14:34
ActionParsnip1etc14:34
vagothcppmount -t vboxfs MyShareName /mnt/ShareName14:35
nfrgvn_shi updated my presistant liveUSB and now it wont boot, any solutions?14:36
sunamiebobdoes it boot to a shell?14:37
nfrgvn_shnope14:37
noise_ok14:37
nfrgvn_shit hangs at boot error, about 3 secs after i turn on the PC14:38
noise_how can i become a programer! :D14:38
bazhangnoise_, please take chat to #ubuntu-offtopic14:38
sunamiebobhmm I had same problem but I typed exit [enter] twice and then sudo /etc/init.d/gdm start and it booted fine14:38
noise_okokokok14:38
nfrgvn_shtheres no cmd line or anything i can type in14:39
Leaderfoxhallo guys who know ppp interface _14:39
abhishek_how can I install flash player as to run youtube??14:40
abhishek_in ubuntu14:40
ActionParsnip1!flas > abhishek_14:40
ubottuSorry, I don't know anything about flas14:40
ActionParsnip1!flash > abhishek_14:40
ubottuabhishek_, please see my private message14:40
hasanhabibiE: Sub-process /usr/bin/dpkg returned an error code (1) ??????????14:40
abhishek_thanks...ubottu14:41
abhishek_let me see it..14:41
sunamiebobabhishek_ if you have problems still try this14:42
sunamiebobsudo apt-get remove flashplugin-* --purge14:42
sunamiebobsudo apt-get remove --purge swfdec-mozilla swfdec-gnome mozilla-plugin-gnash gnash14:42
nick_hplasma and kicker crashed. i ssh'd into my box and ran "kstart plasma". however, that failed with "kstart: cannot connect to X server". any suggestions for what to do?14:42
sunamiebobsudo apt-get install flashplugin-nonfree14:42
pkkmhow to convert mp3 to flac?14:42
pkkmin console14:43
sunamieboband then restart firefox and it should be working. I hope!14:43
ActionParsnip1hasanhabibi: is there any error message in the output of: sudo apt-get update; sudo apt-get upgrade14:43
nick_hpkkm: have you searched google? there are lots of answers there14:43
bazhangnick_h, please dont recommend that here14:43
nick_hbazhang: really? why's that?14:44
ActionParsnip1pkkm: http://ubuntuforums.org/showthread.php?t=87189414:44
gribouillehi14:44
EMPulsehey guys14:44
bazhangnick_h, people know about google; this is a support channel not a redirect to google.14:44
EMPulseany idea how I can enable flash in chromium14:44
nick_hbazhang: i agree. but many questions can be answered by searching google, and many people don't bother to search google before asking14:45
bazhangnick_h, its not acceptable nonetheless.14:45
nick_hbazhang: i'm happy to conform to the channel's guidelines, and shall do so from now on14:46
gribouilleon my machine, the command to launch firefox is firefox-3.0 and not firefox. as a result other programs can't lauch it. how can I rename firefox-3.5 to firefox ?14:46
ActionParsnip1EMPulse: create a symlink to libflashplayer.so in /usr/lib/chromium-browser/plugins/14:46
ActionParsnip1EMPulse: you will then need to run it with: chromium-browser --enable-plugins14:46
gribouilleon my machine, the command to launch firefox is firefox-3.0 and not firefox. as a result other programs can't lauch it. how can I rename firefox-3.0 to firefox ?14:46
nick_hbazhang: for the record, let me just state that i disagree with that policy. it reinforces bad behaviour14:46
EMPulseActionParsnip1, ah, thanks lemme try14:46
maximus_anyone got the "modprobe ehci_hcd" working? it says that "FATAL: Module ehci_hcd not found."14:47
tavihy14:47
tavii have a game14:47
LOLWTFOMGBBQHAI14:47
LOLWTFOMGBBQcool14:47
tavimade for both mac and linux14:47
LOLWTFOMGBBQ:O14:47
ActionParsnip1gribouille: sudo ln -s /usr/bin/firefox-3.0 /usr/bin/firefox14:47
tavibut doesn't work14:47
lorasairontavi: what game?14:47
taviwhen i click on it14:47
EMPulseActionParsnip1, thanks, I did a tutorial that made the symbolic link thing, thanks alot for the help14:47
tavisun blast14:47
ActionParsnip1EMPulse: np :)14:47
abhishek_guys!!! I am still not been able to see youtube videos...wat i do14:47
tavihttp://www.sunblastthegame.com/support.php14:48
sunamiebobkudos to ActionP14:48
ActionParsnip1sunamiebob: ?14:48
sunamiebobabhiskeh_ did u see my cmds for you up above ?14:48
LOLWTFOMGBBQHai boiz, what i want to do is: Build a kernel so i can apply a patch for my Broadcom network card :). So i wanted to ask where can i get source code? and if u got another idea how to apply the patch that would be great :D14:49
ActionParsnip1tavi: you need to run:  tar -zxvf sunblast_demo_linux32.tar.gz14:50
LordLandonDear channel, why does the interbleh think it's so difficult to disable gnome-panel?14:50
ActionParsnip1tavi: to extract it14:50
tavii extracted it14:50
ActionParsnip1tavi: ok cool14:50
taviand i cant start14:50
ActionParsnip1tavi: is your ubuntu 32bit?14:50
tavialso games like counter strike doesnt work14:50
taviyes14:51
ActionParsnip1tavi: have you installed video drivers?14:51
taviyes14:51
LOLWTFOMGBBQwtf14:51
LOLWTFOMGBBQ?14:51
ActionParsnip1tavi: ok then launch the game fromcommand line, when it dies, give us the output14:51
bazhangLOLWTFOMGBBQ, watch the language14:51
taviwell14:51
tavihow should be the comand to lauch the game?14:52
LOLWTFOMGBBQbazhang: ?14:52
Pici!kernel | LOLWTFOMGBBQ these links should help14:52
ubottuLOLWTFOMGBBQ these links should help: The core of the Ubuntu Operating System is the Linux kernel: see https://help.ubuntu.com/community/Kernel - You shouldn't have to compile your own, but if you're convinced you do, see https://help.ubuntu.com/community/Kernel/Compile - See also: /msg ubottu stages14:52
boss_mcLOLWTFOMGBBQ: http://lmgtfy.com/?q=ubuntu+custom+kernel+compile&l=114:52
ActionParsnip1tavi: type the name of the thing  you click on in the folder14:52
LOLWTFOMGBBQthank you guys and bots14:52
jiohdiwhats the best ubuntu compatible movie editor?14:52
tavisunblastdemo14:52
taviwhitout any extension14:53
LOLWTFOMGBBQSEEMS U CANT HELP /CRY14:53
boss_mc!best | jiohdi14:53
ubottujiohdi: Usually, there is no single "best" application to perform a given task. It's up to you to choose, depending on your preferences, features you require, and other factors. Do NOT take polls in the channel. If you insist on getting people's opinions, ask BestBot in #ubuntu-bots.14:53
ActionParsnip1jiohdi: best is an opinion so isnt concrete14:53
jiohdilocal opinion is acceptable to me :)14:53
boss_mcjiohdi: then ask BestBot in #ubuntu-bots14:53
ActionParsnip1jiohdi: best does not exist at any time excepting for an evaluation of a product to your own (and only your) requirements14:53
jiohdihow do you operate it?14:53
ActionParsnip1jiohdi: why not try a couple, see which you think is best14:54
rashed2020Where do logs usually go? I'm looking for the apache logs14:55
jiohdiaction, thank you :)14:55
Acediphow do i know that the computer has ditected the dvd rom??14:55
boss_mcjiohdi: ask him 'What's the best video editor'14:55
boss_mcrashed2020: /var/log14:55
ActionParsnip1rashed2020: try /var/log14:55
rashed2020Thank you.14:55
b3rz3rk3rAcedip, type: eject in the terminal. if it opens, you're a winner14:56
rekActionParsnip1:14:56
rekunvalid mount option ActionParsnip1 but now it see it... but fdisk -l  doesn not didplay something14:56
taviActionParsnip1:14:57
Acedipb3rz3rk3r: it does eject, but does that mean its been mounted, coz i dont see any icon of the dvd rom?14:57
taviany ideea?14:57
b3rz3rk3rAcedip, so your drive, works but when you put something in you cant access it?14:58
Acedipb3rz3rk3r: yes14:58
strangehey guys how to upgrade 8.04 to 9.04 from commandline14:58
b3rz3rk3rAcedip, if you go to Places -> computer can you see your drive there?14:58
ActionParsnip1rek: does the disk show up in bios?14:58
strange? upgrade14:59
Kottizen!upgrade command line14:59
ubottuError: I am only a bot, please don't think I'm intelligent :)14:59
bazhangstrange, no direct path14:59
boss_mcstrange: you have to upgrade to 8.10 first14:59
rekif it sees it in computer (gnome) of course14:59
ActionParsnip1!upgrade > strange14:59
ubottustrange, please see my private message14:59
Acedipb3rz3rk3r: no, i cant see it14:59
bazhangstrange, you need to go to 8.10 first14:59
rekActionParsnip1:  so.. it asys wrong fs type bla bla bla if i do sudo mount -a14:59
ActionParsnip1strange: do the server upgrade as it uses command line, you will not however install the server kernel (this is good)14:59
ActionParsnip1rek: if the partition doesnt show up in the fdisk output then you need to look into that, did you format the partition?15:00
boss_mc!upgrade > boss_mc15:00
ubottuboss_mc, please see my private message15:00
rek./media/storage ActionParsnip1 is this an invalit mount option?15:00
strangeActionParsnip1L: alright thanks i will keep the desktop install then i hope15:00
fbianconistrange: http://lmgtfy.com/?q=upgrade+8.04+to+9.04+from+commandline15:01
reki used gparted... created partition tthe* and...said him to format it15:01
rekrety15:01
rektry15:01
ActionParsnip1rek: its not ./media/storage  its /media/storage15:01
b3rz3rk3rAcedip, hmm, never some across that before. Every drive iv ever owned has just appeared there, as well as friends machines.. if its not being detected i dont know what to do. Perhaps someone else in here can help?15:01
rekaction / irc  eat the line lol15:01
fbianconistrange: sorry was not my intention to disrispect15:01
Acedipb3rz3rk3r: well how to check which device is my drive?15:01
strangei get "No new release found" when i run  do-release-upgrade15:02
b3rz3rk3rAcedip, is this a new install?15:03
anasthi15:03
b3rz3rk3rAcedip, runnning updates usually fixes things on a new install for me, try that first15:04
anastcould someone help with libg2c installation?15:04
rekmount: wrong fs type, bad option, bad superblock on /dev/sdb1,15:04
rek       missing codepage or helper program, or other error15:04
rek       In some cases useful info is found in syslog - try15:04
rek       dmesg | tail  or so15:04
FloodBot1rek: Please don't flood, use http://paste.ubuntu.com to paste, don't use Enter as punctuation.15:04
reki'm not flooding floodBot115:04
bazhangrek, paste.ubuntu.com dont flood15:05
rekhei15:05
rekformatted it again and now i don't see the media15:05
strangefound it had to change /etc/update-manager/release-upgrades15:05
rekwhy?15:05
Acedipb3rz3rk3r: no its not, i installed 9.04 months back, but just got a new dvd rom, the older one had some lense problems15:05
strangethanks guys15:05
b3rz3rk3rAcedip, do you have anything in /media?15:05
pragmatistihas anyone had problems with amarok in ubuntu 9.04?15:06
b3rz3rk3r!question | pragmatisti15:07
ubottupragmatisti: Please don't ask to ask a question, simply ask the question (all on ONE line, so others can read and follow it easily). If anyone knows the answer they will most likely reply. :-)15:07
rekim really tired15:07
CaptainCrooki'm trying to save a projet file that is located in system files...it says access denied... anyway to sudo save?15:07
CaptainCrookin a gui application...15:07
pragmatistithx, its my first time using irc15:07
b3rz3rk3rAcedip, Places->Computer->Filesystem->Media  whats in there?15:08
b3rz3rk3rbrb... have to hang the washing :(15:08
caio_hi, when i double-click .deb files it opens Ark, and I cant install package, how can I do it? without going to command line...15:08
bazhangcaio_, which .deb15:08
rekhelp15:08
Acedipb3rz3rk3r: there are folders named cdrom0 and cdrom1 but nothing in there15:09
caio_bazhang: what?15:09
rekhelp i'm tired15:09
caio_all .deb opens on ark.15:09
bazhangrek, take chat elsewhere15:09
null_ndabänd15:09
null_oh15:09
rekno bazhang15:09
rekno15:09
DJones!ot | rek15:09
ubotturek: #ubuntu is the Ubuntu support channel, for all Ubuntu-related support questions. Please use #ubuntu-offtopic for other topics. Thanks!15:09
pragmatistion ubuntu amarok appears to be fine but I get no sound. solution?15:09
abhishek_can I play mp3 and standard media formats in UBUNTU?15:10
bazhangabhishek_, sure15:10
rek!ot nothing15:10
ubottuSorry, I don't know anything about ot nothing15:10
koudelka_abhishek_, yes15:10
bazhanginstall ubuntu-restricted-extras abhishek_15:10
thiebaude!medibuntu15:10
ubottumedibuntu is a repository of packages that cannot be included into the Ubuntu distribution for legal reasons - See http://www.medibuntu.org15:11
pragmatistiI get the message in amarok on startup that "the audio playback device HDA intel" does not work"15:11
koudelka_it should automatically ask you to install the necessary drivers15:11
abhishek_from where can I install it...bazhang15:11
koudelka_codecs i mean15:11
koudelka_not drivers15:11
thiebaudekoudelka_, synaptic15:11
bazhangabhishek_, from synaptic package manager or the command line15:11
shindowi want to ask about mount15:11
shindowshould the xp mount before we use the disk15:12
Aroll605Hello15:12
sunamiebobabhishek_: its gona be sudo apt-get install ubuntu-restricted-extras15:12
bazhangabhishek_, lets keep it in channel please15:12
Aroll605whats the difference between free and available disk space?15:12
Aroll605in gnome-system-manager15:12
rohdefdoes anyone happen to know how to use the "network usb" from the D-Link DIR-635 in Ubuntu?15:13
abhishek_yeah sure..you can tell here to...15:13
=== hombre_ is now known as hombre
mirashhi there15:15
mirash:)15:15
koudelka_hi15:15
vagothcppHow do I restart X/Gnome15:15
Kottizenwin 1915:15
Kottizenops15:15
Aroll605/etc/init.d/gdm restart15:15
Aroll605Does anyone know whats the difference between Available and Free disk space in gnome-system-manager?15:16
mirashi want to include windows in my boot options15:16
mirashhow can i?15:16
mirashi can now boot my ububntu only15:16
bazhangabhishek_, sudo apt-get install ubuntu-restricted-extras (from the terminal)15:16
mirashs/ububntu/ubuntu15:16
mirashhow can I include Windows also in Grub?15:17
pragmatistii just installed amarok and i am getting no sound, is this common?15:17
koudelka_mirash, ubuntu didnt add it automatically?15:17
mirashdidnt15:18
mirashi dont knw y15:18
bazhangmirash, windows installed second?15:18
mirashusually it does15:18
mirashno15:18
mirash1st, I installed Win15:18
bazhanghttps://help.ubuntu.com/community/GrubHowto mirash15:18
Aquahallicmirash: did you put winblows on a separate partition?15:19
koudelka_mirash, what version of windows is it?15:19
mirashya15:19
mirashWinXP SP215:19
rekError opening file '/media/disk/easytut-it.pdf': Permission denied15:19
rekhelp now it's mounted15:19
b3rz3rk3rback15:19
sunamiebobyoull have to edit the boot.ini15:19
bretmirash, from file manager, can you see your windows partition?15:19
vagothcppIt failed to restart X/GNOME15:19
mirashI just want to know which drive I have to give in menu.lst15:19
Aquahallicmirash: can you mount and browse that partition and see your win installation?15:19
icerootis gparted resizing a partition while running the os? or at the boot like partition magic? because i want to resize a fake-raid1 and ubuntu-live is not detectong the raid until running dmraid15:19
Lord-Readmanhello, how do you make a message popup to the user? ie im in ssh to an ubuntu desktop and wish to leave a message15:20
mirashI can see my Win files in one drive15:20
b3rz3rk3rAcedip, there isnt meant to be anything in there, but if they are showing up then your drive is being detected by ubuntu, which is good15:20
koudelka_mirash, you have to add windows to your grub config15:20
k4dm3lhello?15:20
Myrttiiceroot: you can't resize a partition that you've got mounted15:20
koudelka_it is pretty easy15:20
rekError opening file '/media/disk/easytut-it.pdf': Permission denied   b3rz3rk3r15:20
k4dm3lpeople! good morning15:20
=== Shinobi is now known as Guest83108
icerootMyrtti: lice-cd15:20
icerootMyrtti: live-cd15:20
koudelka_mirash, you can find the file in /boot/grub/15:20
koudelka_i think it is called grub.conf15:20
koudelka_or15:20
Acedipb3rz3rk3r: ohk, but then what to do now?15:21
koudelka_ menu something15:21
b3rz3rk3rrek, use sudo15:21
k4dm3lany one of you have tried to update an ipod on linux?15:21
MilliganHow can I check TXT records for a domain ?15:21
bazhangkoudelka_, menu.lst15:21
bazhangk4dm3l, the firmware? cant be done15:21
koudelka_bazhang, yes that thanks15:21
bretmirash, here gives you some instructions:  htp://ubuntuforums.org/archive/index.php/t-116093.html15:21
tuxxiehow can I connect to a serial console15:22
k4dm3ltuxxie, use minicom15:22
koudelka_mirash, http://ubuntuforums.org/showthread.php?t=116093#415:22
tuxxiek4dm3l, thanks15:23
k4dm3lbazhang, any way to run a virtualbox windows inside15:23
Lord-Readmanhello, how do you make a message popup to the user? ie im in ssh to an ubuntu desktop and wish to leave a message15:23
k4dm3land itunes detect ipod?15:23
thiebaude!vm15:23
ubottuThere are several solutions for running other operating systems (or their programs) inside Ubuntu, while using the native CPU as much as possible: !QEmu (with !KQemu), !VirtualBox, !VMWare, as well as !WINE and !Cedega for Windows applications15:23
Lord-Readmanlike the one when the its locked15:23
bazhangk4dm3l, that would be the option15:23
k4dm3lbazhang, y will try15:23
b3rz3rk3rAcedip, just had a google session - this might solve your problem: http://ubuntu-virginia.ubuntuforums.org/showthread.php?p=775671515:23
k4dm3lthanks15:23
mirashno grub.conf there15:23
bazhangk4dm3l, be forewarned though it is really slow15:23
bazhangmirash, its menu.lst15:24
k4dm3lok, what about wine?15:24
bazhangk4dm3l, itunes will work in wine, but even more glacial15:24
homyHi! Which easy to set-up remote backup solution would you recommend? I mean, something like rsnapshot or rdiff-backup that backups to a local server.15:24
sunamiebob/boot/grub/15:24
b3rz3rk3rk4dm3l, i just use banshee to manage my ipod.. works great15:24
olinuxxyep'15:25
bazhangb3rz3rk3r, he wants to upgrade firmware of an ipod though15:25
k4dm3lbut i need to upgrade it15:25
mirashi hav menu.lst15:25
b3rz3rk3rhomy, i use sbackup.. works great for my purposes. supports remote servers15:25
bretI have itouch, and banshee won't work with it.  what version of itunes will work in wine?15:25
mirashi need to knw which hd is my disk15:25
bazhangbret, best to check appdb15:25
b3rz3rk3rbazhang, ah, yeah, you will need to do that from itunes afaik ?15:25
bazhang!appdb15:25
ubottuThe Wine Application DB is a database of applications and help for !Windows programs that run under !WINE: http://appdb.winehq.org - Join #winehq for application help15:25
k4dm3lbret, use floola15:25
mirashhd0,1 or hd0,2 ....................15:25
thiebaudebret, not all programs work in wine15:26
sunamiebobmirash: which one does menu.lst show booting ubuntu?15:26
mirash/boot/vmlinuz.......................15:26
bretlast I checked I did not see a version that worked good in the wine app db.  saw someone said that itunes worked and wondered what version they had15:27
namuchdoes anyone know what package contains the "merge" command for ubunut server 8.04?15:27
homyb3rz3rk3r: it seems sbackup is not mantained anymore?15:27
bretfloola will also not work with itouch k4dm3l, but thanks for the suggestion.15:27
miguelzenhello15:27
koudelka_mirash, it is probably  hd01 if thats the one you installed first15:27
miguelzensalut15:27
koudelka_you can try15:28
miguelzenbonjour15:28
thiebaude!fr15:28
ubottuCe canal est en anglais uniquement. Si vous avez besoin d'aide ou voulez discuter en francais, merci de rejoindre #ubuntu-fr15:28
joeyeyemirash: cd /boot, then df .15:28
mirashwat15:28
Sitowlannamuch, rcs15:28
b3rz3rk3rhomy, i dont know if thats the case or not, didnt really look into it too much, i was told it was good and simple.. and for me that just the case. It even backups to my FreeBSD server. If you want it simple and automated, thats what id suggest15:28
namuchahh, very good, thanks15:29
mirashits /dev/sda515:29
mirashso15:29
homyIs rdiff-backup recommendable?15:29
mirashhd0,415:29
mirashisnt it?15:29
selocolcan someone recommend me a clear console font?15:29
vavarhow can i generate the x11 configuration files for xinit?15:29
joeyeyemirash: yes, and double check with sudo fdisk -l and see which is listed as the boot drive15:30
asgerI neede help. My screen resolution is messed up after i tryed to connect to tv-out15:30
mirashiits linux swap, the boot disk15:31
dr3mrohi i am using jaunty now and i can successfully use my modem to start xchat but firefox dont get i have internet connection but i can ping yahoo and i can use xchat i use wvdial and all is fine help plz15:31
rosco_yWhat is the best virtual Operating System Software to install?15:32
Megra_virtualbox is great15:32
bretrosco_y, I personally like virtualbox...  but I think it's up to the individuals preference15:33
bazhangrosco_y, there is no best. try them and decide15:33
rekError opening file '/media/disk/easytut-it.pdf': Permission denied   bazhang15:33
rosco_yMegra_: Thank you, I will try it out :)15:33
mirashwhat is that chainloader?15:33
mirashin menu.lst?15:33
rosco_y(I'm also holding you responsible--if it's not the best then grrrrrr)15:33
Megra_mirash, it allows to load another loader15:33
bretrosco_y, xen works good for linux virtualizations, but is kind of slow w/ windows15:33
dr3mroi use wvdial to connect to dial up modem and i can use xchat now but firefox cant browse the net plz help15:33
Megra_mirash, typically, the Microsoft loader15:33
bazhangrosco_y, virtualbox-ose is in the repos if you dont need usb support15:33
mirashanother loader?15:34
mirashmeans other than grub?15:34
mirashlet me see15:34
sunamiebobmirash: yes I have mine set +115:34
Megra_mirash, for example, if you install Windows XP then Linux, you can use Grub to launch Linux, and if you want to run XP, grub launch the Micriosoft loader which will launch XP15:35
vavarhow to generate the x11 configuration files for xinit? i don't have /etc/X11/X.15:36
ace_I need help... I just installed Ubuntu 9.04 on my sisters laptop, and she typed in her password during setup.. We started up after install and went to update, she put in her password and it's saying wrong password! Is there a way to recover the password without reinstalling?15:36
Acedipb3rz3rk3r: there is no dvd rom entry in /etc/fstab15:36
Megra_!wiki xorg15:36
ubottuSorry, I don't know anything about wiki xorg15:36
Megra_!wiki X15:36
ubottuSorry, I don't know anything about wiki X15:36
homyace_: on boot of ubuntu, select "Recover mode"15:36
iacaI am in recovery mode, how do i stop certain programs from starting up at boot?15:36
bazhangMegra_, please /msg ubottu15:36
PiciMegra_: ubottu doesnt have a !wiki command.15:36
iacaplease15:37
b3rz3rk3rAcedip, cdrom entry tho?15:37
ace_homy: Ok, and it will take me through the process to recover password?15:37
homyace_: look at this guide: http://www.psychocats.net/ubuntu/resetpassword15:37
Megra_vavar, sudo dpkg-reconfigure -phigh xserver-xorg15:37
Megra_bazhang, ok15:37
ace_homy: Thank you!!15:37
homyace_: not completely, you have to enter some things, look at the link.15:37
dr3mrono  answer i found it any way i had to go file disable work offline15:37
dr3mrothanks any way15:37
Acedipb3rz3rk3r: yeah, no such cdrom entry either15:38
VaineDragonANYONE? Is there a Quickbooks server module out there for EBOX/Ununtu Hardy?15:38
reksudo chown user:user /media/disk !!!! bazhang it was simple15:38
b3rz3rk3rAcedip, then you will need to create one like in the example on that link i sent you15:38
Megra_!xorg | vavar15:39
ubottuvavar: The X Window System is the part of your system that's responsible for graphical output. To restart your X, type « sudo /etc/init.d/?dm restart » in a console - To fix screen resolution or other X problems: https://wiki.ubuntu.com/X/Config/Resolution15:39
sparrI need to redirect all traffic to a particular server/port to a different port on the same server, either in my web browser or at a lower level on my computer.  How can I do this?15:39
vavarMegra_: thanks15:39
morph_hello i got problem whit server jackd15:39
morph_someone can help me?15:40
vavarMegra_: i didn't install xorg. just xinit.15:40
MrElendigmorph_: no, because you havn't said what your problem is15:40
Megra_!ask | morph_15:40
ubottumorph_: Please don't ask to ask a question, simply ask the question (all on ONE line, so others can read and follow it easily). If anyone knows the answer they will most likely reply. :-)15:40
rekb3rz3rk3r: lol that music is the hell15:40
enochhi all15:40
b3rz3rk3rrek, what music?15:41
rekthe berzerker15:41
enochhow can i add loose bindings options to compiz by default in ubuntu 9.04??15:41
morph_Could not connect to JACK server as client. - Overall operation failed. - Unable to connect to server. Please check the messages window for more info.15:41
bazhangrek, ??15:41
iacaHow do you change application startup from within Recovery Mode?15:41
rekwhat bazhang ?15:41
rbilcan anyone tell me how the latest versions of xorg.conf works? where are the details now stored?15:41
grawityrbil: They are detected automatically.15:41
rekit's metal15:41
bazhang!ot > rek15:41
ubotturek, please see my private message15:41
erUSULrbil: they are not stored they are configured at runtime15:42
rbilgravity: yes, but the stuff has to be written somewhere15:42
rekagain15:42
enochhow can i add loose bindings options to compiz by default in ubuntu 9.04??15:42
reksudo chown user:user /media/disk !!!! bazhang i found the problem15:42
grawityrbil: Not necessarily. It can just detect "stuff" on start.15:42
homyIs rdiff-backup recommendable?15:42
rbiland if it detects incorrectly? in the old days one could tweak xorg.conf to get it to work15:43
erUSULrbil: you can still do that. if an xorg.conf is present is followed15:43
rosco_yRehi channel--I tried virtualbox, but it crashes on my Windows 7 (64 bit) install--did anyone have luck installing 64 bit Windows 7 in a VBox?15:44
rbilthis is getting too windoze-like to me15:44
grawityrbil: You still can tweak xorg.conf.15:44
erUSULrbil: just do the old 'sudo dpkg-reconfigure -phigh xserver-xorg'15:44
rosco_yrbil: you can log in to a command shell ;)15:44
rbilyes, but i want to know how it might be missing it's analysis15:44
erUSULrbil: start from that an teak the conf all you want15:44
erUSULtweak**15:45
achillesdoes anyone have experience with hosting and configuring TRAC?15:45
rosco_yIt's not windows-like unless you're reading dump files15:45
rosco_yWhat is a popular alternative to Virtualbox?15:46
iacaI am at the root shell prompt in recovery mode, how do you stop programs from starting up at boot?15:46
mirashGuys, its not working15:46
mirashWindows in not in the list15:47
=== peter_ is now known as kantoka
rbilwhen xorg is unable to realize that I changed graphics card it doesn't report what it thinks is there. so where would i find this out?15:47
rosco_yrbil: what card are you using?15:47
hendrixskiachilles: hello15:48
rbilnvidia is what i put in15:48
ThreeNertia!test15:48
ubottusigh... again? I'm busy here, I already told you it failed.15:48
ruben23are there current problem with ubuntu desktop nstallation with regards to high definition audio drivers..?15:48
rbilX wouldn't start15:48
ThreeNertia!test15:48
rosco_yYou might try: System/Administration/Hardware Drivers15:48
mirashi want to include Windows in boot menu15:48
erUSULiaca: which one ?15:48
ecolitan!love15:48
ubottuLove is like racing across the frozen tundra on a snowmobile which flips over, trapping you underneath. At night, the ice-weasels come.15:48
bazhangThreeNertia, /msg ubottu please15:48
rbilbut since details aren't recorded in xorg, no idea what it is automatically installing15:49
ThreeNertiaWho's in charge of ubottu?15:49
erUSULrbil: details are in /var/log/Xorg.0.log like allways15:49
erUSULThreeNertia: why you ask ?15:49
rekhi15:49
rbilerUSUL: yeh, if I could understand what was being said in that log file :-)15:50
erUSULrbil: (II) informative (WW) warnings (EE) serious errors15:50
ThreeNertiaerUSUL: Because as far as I'm aware, ubottu is an eggdrop. And has an invalid command script in which I would appreciate help implementing on my bot15:50
bazhangThreeNertia, supybot15:51
enochhow can i add loose bindings options to compiz by default in ubuntu 9.04??15:51
erUSULThreeNertia: is supybot based15:51
ThreeNertiaDamn15:51
rbilAnyway, I just don't like this "automatic" stuff. I want to see configs in text files15:51
Acedipb3rz3rk3r: thankyou, adding the line in /etc/fstab did the job15:51
iacaerUSUL: Ubuntu 9.04 x6415:51
PiciThreeNertia: If you do have questions about our plugins, you can ask in #ubuntu-bots though.15:51
erUSULiaca: which software you want to disable ?15:51
ThreeNertiaThanks for the info15:52
iacaerUSUL: i believe it is conky15:52
b3rz3rk3rAcedip, np man, you did all the hard work yourself. glad its working.15:52
erUSULrbil: we have told you twice already that you can use an xorg.conf if you want to15:52
rbilthat has always been the power of Linux and I just don't like stuff happening that is hidden from the user. A step backwards15:52
iacaerUSUL: was using the system cleanup tool lslint and it screwed up my system15:52
ruben23are there current problem with ubuntu desktop nstallation with regards to high definition audio drivers..?15:52
erUSULiaca: how come ?15:53
rbilend of rant :-)15:53
iacaonce the system is booted up the screen is flashing15:53
marielishola15:53
erUSUL!es | marielis15:53
toDDieconky screwed up your screen?15:53
ubottumarielis: En la mayoría de canales Ubuntu se comunica en inglés. Para ayuda en Español, por favor entre en los canales #ubuntu-es o #kubuntu-es.15:53
=== kushal is now known as kushal_kumaran
iacaerUSUL: the screen flashes and I can not access anything15:54
marielisalguien me puede ayudar algun programa p2p para bajar musica15:54
marielis?15:54
enochhow can i add loose bindings options to compiz by default in ubuntu 9.04?? ...15:54
mirashwhen I try to save menu.lst, it says permission denied15:54
marielishello15:54
erUSULmarielis: not here go to #ubuntu-es ( /j #ubuntu-es )15:54
sunamiebobiaca did u install a proprietary video driver?15:54
bazhangmarielis, /join #ubuntu-es por espanol15:54
marielissomebody help me with ares over ubuntu?15:54
erUSULmarielis: here we can only talk in english15:55
marielissorry for writed in spanish15:55
mirashwhat to do15:55
iacasunamiebob: I have Catalyst 9.715:55
rbilbtw, any channels dedicated to ubuntu on netbooks, particularly the original AAO?15:55
mirashhow can I save menu.lst?15:55
n3tb0ysad15:55
n3tb0yasd15:55
n3tb0ysad15:55
ruben23are there current problem with ubuntu desktop nstallation with regards to high definition audio drivers..?15:55
icerootrbil: #eeebuntu15:56
erUSULmarielis: the siplest option is to try to make the are windows client run in wine15:56
th0rmirash: you have to edit menu.lst using 'sudo nano menu.lst'15:56
ruben23high definition audio device driver are supported by ubuntu..?15:56
macoruben23: HDA spec is allaround problematic15:56
icerootruben23: yes15:56
mirashya, I did it like that15:56
sunamiebobiaca: so ati card right? you need to use the open source driver for it. I had the same problem15:56
erUSULrbil: they are suported. mine work out of the box15:56
mirashand supplied the pass15:56
icerootruben23: works fine here on jaunty15:56
mirashand also edited15:56
=== ripps_ is now known as ripps
macoruben23: they are supported, yes, but the spec is so broad....many only half-work, though i think most work mostly15:56
ruben23maco: what you mean problimatic..?15:56
erUSULruben23: they are suported. mine work out of the box15:56
savidI have a USB bluetooth adapter in my notebook that doesn't seem to be working.  the command "hciconfig" doesn't show anything,  though I'm seeing this in lsusb:  "Bus 006 Device 002: ID 0db0:6970 Micro Star International Bluetooth adapter"15:56
savidAny ideas?15:57
mirashbut when  I try to save, permission denied15:57
marieliserUSUL, yes i do, but the ares with wine don't download15:57
iacasunamiebob: the driver is working fine for me, the problem did not start until i used the cleanup tool15:57
bkatlcan anyone tell me how to install partition maker in ubuntu?15:57
macoruben23: from a driver dev point of view, they are hard to get working "quite right" so there are lots of bugs filed for them. the spec has hundreds of pages of errata, and depending when it was implemented and by whom, fits or doesnt fit variously15:57
Picibkatl: sudo apt-get install gparted15:57
macoruben23: there's a good chance it'll work, but dont be surprised if something like "microphone built into screen doesnt work" comes up15:58
macoruben23: in which case...use the mic jack instead15:58
sunamiebobiaca: oh ok I thought yur were talking about when it is booting gdm15:58
bkatlwhen I tried that, it asked me "bkatl@bkatl-laptop:~$ sudo -apt install gparted15:58
bkatlsudo: please use single character options15:58
bkatlusage: sudo -h | -K | -k | -L | -l | -V | -v15:58
bkatlusage: sudo [-bEHPS] [-p prompt] [-u username|#uid] [VAR=value]15:58
bkatl            {-i | -s | <command>}15:58
FloodBot1bkatl: Please don't flood, use http://paste.ubuntu.com to paste, don't use Enter as punctuation.15:58
bkatlusage: sudo -e [-S] [-p prompt] [-u username|#uid] file ...15:58
macoruben23: if you can find out the codec in use on the hardware: WIN. avoid sigmatel and realtek.15:58
rosco_yDoes anyone know of a virtualbox that works with Win 7 (64 bit)?15:58
macoruben23: theyre the most problematic15:58
tuxxieI have installed minicom and set the port to ttyS0 but when i start it using " sudo minicom -c on" and type ctrl-a it tells me I am offline. any ideas what i am doing wrong?15:58
Picibkatl: Don't put the dash in front of apt-get15:59
MrElendigbkatl: drop the -15:59
bazhangbkatl, sudo apt-get install gparted15:59
icerootrosco_y: virtualbox 3.x15:59
bkatlok thanks Pici15:59
rosco_yiceroot: Mine crashes just after file-copy operation of the installation...15:59
erUSULtuxxie: what is connected to ttyS0 ?16:00
SeLEctHello everyone, Im trying to safe some files from my brothers computer so im running ubuntu livecd. I want to transfer the files to my ftp server. But can't find any ftp client installed in the CD16:00
SeLEctany tips?16:00
ruben23ok thanks16:00
icerootrosco_y: windows is rc, so its not final.16:00
JohnTeddyAnyone running hardy heron, can you please put your /etc/udev/rules.d/70-persistent-net.rules file on www.pastebin.com for me please, I need to see the original.16:00
rosco_yhmmm.... might be a bios setting16:00
tuxxiea dell switch16:00
grawitySeLEct: Places --> Connect To Server16:00
VaineDragonANYONE? Is there a Quickbooks server module out there for EBOX/Ununtu Hardy?16:01
rosco_ymsg is "CPU not compatible with 64 bit mode"16:01
grawityiceroot: Windows 7 is already RTMed, it can now be considered final.16:01
rosco_ylooks like I should crack the manual :(16:01
icerootgrawity: ah ok, didnt know16:01
rosco_yty peoples16:01
tuxxieerUSUL, a dell switch.16:01
macorosco_y: did you get a 64bit iso and try to use it on a 32bit machine? sounds like it16:01
iacaerUSUL: FsLint was the program that messed up my install16:01
alunoÓlá16:01
SeLEctgrawity i love you, thank you :)16:01
grawitySeLEct: And don't forget the good old 'ftp' command in Terminal.16:02
SeLEctgrawity ive never used it :) and im short on time so had not time to learn now :D16:02
BertoHi - Where do I change my settings to automatically load Amarok when an iPod is plugged in?16:02
SeLEctneeded something gui like :D16:02
BertoRight now it's opening the other program... rhythmbox... don't like that app16:03
iacaerUSUL: I just need to know how to disable a program from startup whilst i am in the recovery mode command prompt16:03
grawityBerto: Then remove rhythmbox?16:03
Bertograwity, yeah i can do that.  i guess i still need to find the setting16:03
bfaseLEct, sudo apt-get install filezilla16:04
grawityBerto: System -> Preferences -> Preferred Applications, maybe16:04
sunamiebobSeLEct: goto Places->Connect To Server...16:05
VaineDragonANYONE? Is there a Quickbooks server module out there for EBOX/Ununtu Hardy?16:05
Bertograwity, thanks i have it manually typed in.. we'll see!16:05
erUSULiaca: look in ~/.config/autostart/16:06
erUSUL!br | aluno16:06
ubottualuno: Por favor, use #ubuntu-br para ajuda em português. Obrigado.16:06
=== drazak is now known as draz|lab
iacaerUSUL: tuy i'm going to try now16:07
bfamsg NickServ register bfa bret381@gmail.com16:07
erUSULbfa: you need a / in front of that... choose a different password everyone has seen it16:07
grawitybfa: You forgot an / before the command; also, it won't accept "bfa" as a password anyway.16:07
bfahaha  my bad guys16:08
=== patrik is now known as Guest87676
VaineDragonANYONE? Is there a Quickbooks server module out there for EBOX/Ununtu Hardy?16:08
sunamiebobVaineDragon: help.ubuntu.com/community/QuickBooks Enterprise Data Server16:09
erUSUL!repeat | VaineDragon16:09
ubottuVaineDragon: Don't feel ignored and repeat your question quickly; if nobody knows your answer, nobody will answer you. You can search  https://help.ubuntu.com or http://ubuntuforums.org while you wait.16:09
psykusi can't seem to get the rdesktop/terminal services app to connect to the console session of a windows vista machine. the option is there in the performance tab, "attach to console" however it creates an entirely new session on the other computer instead of logging into the one I already have on the user16:10
psykustried from both the GUI, and the console16:10
psykusrdesktop -0 (IP/hostname)16:10
grawityDoes Vista even have "console sessions"?16:10
rachit_vithi16:10
rachit_vitmy vlc is not working16:11
psykusgrawity: yes. you can remote desktop in as the current/console user or a user in the background16:11
MrElendigrachit_vit: define "not working!"16:11
MrElendigs/!//16:11
psykusand in this case it's creating a new session in the background16:11
rachit_vitwhen i play a song nothing appears16:11
psykusthe option is there however it doesn't work16:12
MrElendigsounds more like a alsa/pulse problem16:12
icerootrachit_vit: staert vlc from the terminal and look for errors16:12
rachit_vitfor that i just have to type vlc in terminal16:12
grawitypsykus: I thought the "session 0" was only in XP (and got reserved for services in Vista).16:12
powerjucei hav emptied the trash on my desktop, but it says it is not empty16:12
icerootrachit_vit: yes16:13
jacekowskiwhy inkscape takes like 1,5G of ram on small 1M svgz file16:13
rachit_vitok..16:13
powerjuceit keeps saying there are 3 items left16:13
psykusgrawity: hmm. that would explain why -0 wouldn't work then16:13
bigjbdoes anyone know how to make the icons smaller in netbook remix please?16:13
Luisitoalguien me ayudar con apche en ubuntu16:13
Mezwin 5016:13
rachit_vitMrElendig: im getting this msg - VLC is not supposed to be run as root. Sorry.16:13
rachit_vitIf you need to use real-time priorities and/or privileged TCP ports16:13
rachit_vityou can use vlc-wrapper (make sure it is Set-UID root first and16:13
rachit_vitcannot be run by non-trusted users first).16:13
FloodBot1rachit_vit: Please don't flood, use http://paste.ubuntu.com to paste, don't use Enter as punctuation.16:13
erUSUL!es | Luisito16:13
ubottuLuisito: En la mayoría de canales Ubuntu se comunica en inglés. Para ayuda en Español, por favor entre en los canales #ubuntu-es o #kubuntu-es.16:14
=== siekaczx is now known as siekacz
MrElendigrachit_vit: obviosuly, don't run it as root16:14
icerootrachit_vit: why are you root???16:14
MrElendigrachit_vit: it's just stupid to run it as root16:14
rachit_vitim sorry16:14
Anarhisthi, i really need to get a dump (text dump will do fine) of all the packages currently installed via apt-get on this machine16:14
ShapeShifter499bye16:14
JanHolboGood evening all!16:14
grawityMrElendig: It's vlc-WRAPPER....16:14
erUSUL!clone | Anarhist16:14
ubottuAnarhist: To replicate your packages selection on another machine (or restore it if re-installing), you can type « aptitude  --display-format '%p' search '?installed!?automatic' > ~/my-packages », move the file "my-packages" to the other machine, and there type « sudo xargs aptitude --schedule-only install < my-packages ; sudo aptitude install » - See also !automate16:14
hdonhow do i cancel an "Extract" operation in RhythmBox? the CD is scratched, and my load average on my dual core 2.33 GHz Core 2 Duo is 4.58 -- i can barely do anything, everything i click takes forever!16:14
JanHolbo?? encryptfs16:14
psykusgrawity: the session created from ubuntu's rdesktop seems to show up as "RDP-Tcp#0" while my actual console session just says "Console"16:15
erUSULhdon: kill the offending proccess (RB)16:15
rachit_vitis there any way i can use to run vlc a sroot16:15
Anarhistthanks, erUSUL16:15
grawityhdon: Would killing rhythmbox work? Go to terminal, type "pkill -9 rhythmbox"16:15
MrElendiggrawity: sounds like he's running vlc as root, and not a suid'ed vlc-wrapper16:15
erUSULrachit_vit: the question is why you need to run is as root ?16:15
Luisitocomo mierda pongo esto en español16:15
rachit_viti get all the priveledge when i run it as root16:16
erUSULLuisito: ve a #ubuntu-es pon /join #ubuntu-es16:16
tvuserhi, I have a problem with waking up from standby16:16
hdongrawity, erUSUL: yeah, i didn't want it to have to come to that if there was a way to cancel it in the GUI :(16:16
rachit_viti mean for my other work16:16
MrElendigrachit_vit: read what it tells you16:16
MrElendigrachit_vit: it tells you to use the wrapper if you need real-time/access to privileged ports16:16
JanHolboI need a little pointer: when installing UbuntuStudio i opted to encrypt my /home ...   now I need to reinstall - Should I decrypt first?16:16
rachit_vitya16:16
hdonman Jaunty is so full of bugs i am thinking of writing my own GUI app to interface with bugs.launchpad.net more efficiently!16:16
erUSULrachit_vit: we (i) do not support people running all the time as root sorry16:16
JanHolboand how do I decrypt my /home`?16:17
rachit_vitok i got the pint i will run it as normal user16:17
MrElendigrachit_vit: if you need root to access your files, then you are doing something wrong16:17
rachit_vitthanks erUSAL16:17
icerootrachit_vit: run everything as a normal user, also only login als normal user16:18
rachit_vitok16:18
MrElendigand it would be a good time to look into group access and membership16:18
JanHolboMrElendig: do you know anything about ubuntu's encryption of /home?16:18
enthdegreehello!16:18
erUSUL!find crypt16:19
ubottuFound: cryptsetup, ghostscript, libbeecrypt6, libbeecrypt6-dev, libcrypt-blowfish-perl (and 75 others)16:19
jaredlin_HELLO16:19
erUSUL!search crypt16:19
ubottuFound: encrypted, truecrypt, prayer16:19
akshayany body who can help me16:19
psykuslol, time to install wine and copy over the terminal services client exe16:19
powerjucethe trash icon on my drive never seems to get empty, no matter what i do. i hav emptied it like a million times16:19
akshayBUZZ16:19
MrElendigJanHolbo: it's the same as everyone else uses. dm-crypt16:19
akshayBUZZ16:19
mazda01in order to get the volume louder i have to go to pulseaudio applet and go into the manager and then devices, then click on an mplayer audio stream, and change to like 200%16:19
akshayHELLOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO16:19
akshayany body to help16:19
MrElendigakshay: no16:19
JanHolboMrElendig: how to unencrypt?16:19
Knirghakshay: if u state a question16:19
erUSUL!ask | akshay16:19
rachit_vitmy audio goes away when i use headphone16:19
ubottuakshay: Please don't ask to ask a question, simply ask the question (all on ONE line, so others can read and follow it easily). If anyone knows the answer they will most likely reply. :-)16:19
jaredlin_ubuntu 9.04 ATI x1300 GUP very  bad16:20
MrElendigJanHolbo: luks is the prefered way, usually16:20
JanHolboMrElendig: or rather: is it necessary to unencrypt to reinstall ubuntu`?16:20
sandstromI'm trying to use su --login username but can't get past the authentication. Tried my own password and root password.16:20
akshay<knirgh>     iam havng problem wid the grub16:20
dtoljHow to convert ASF to OGG with mencoder or ffmpeg?16:20
MrElendigJanHolbo: nope16:20
sandstromAnyone know what I may be doing wrong?16:20
tvuserhi, I have a problem with waking up after a long standby, could someone please help me identify the problem?16:20
Knirghakshay: please write the whole problem in one line, cannot follow it otherwise16:21
rachit_vitMrElendig:my sound goes away when i use headphone16:21
MrElendigJanHolbo: you can skip making a /home in the installer, and just add your existing /home after you are done reinstalling16:21
macotvuser: file a bug16:21
th0rsandstrom: you can only login as username with username's password16:21
macosandstrom: put in THAT user's password16:21
akshayits some thing like ......................grub loading error 2116:21
JanHolboMrElendig: and the key is stored on the /home folder already?16:21
sandstromth0r: I don't think that user has one. It's a system only user16:21
MrElendigJanHolbo: I asume that you have the key to unlock it backed up somewhere16:22
grawitysandstrom: In that case, use sudo -u username -i16:22
grawitysandstrom: This one will ask for your own pass.16:22
JanHolboMrElendig: not really .....   how to do?16:22
macosandstrom: i dont think you can login as a system user. they have /bin/nologin as their shells16:22
hdonon Debian Etch, RhythmBox had preferences regarding "extraction." where did these preferences go? there used to be more options!16:22
hilconahallo16:22
Luisitoalguien me puede ayudar con apache16:22
Knirghakshay: is it on a fresh ubuntu install? do you have more that one harddrive?16:22
sandstromgrawity: thanks!! that must be the one I used last time16:22
tvusermaco: what's the bug? its really wired, I can put the computer to standby and wake up as much as I like, as long as the suspend period is less than few hours... btw, where do I submit a bug?16:22
gregorio1982scusate ubuntu italiano chat?16:22
MrElendigJanHolbo: grab the key and put it on a usb stick or something16:23
MrElendigasuming you use a key and not only a password16:23
JanHolboMrElendig: /home is a seperate partition16:23
LuisitoHelfen Sie mir bitte16:23
enthdegreeI have a problem mounting my FAT32 Partition to be read/writeable in Crunchbang 9.04. When I mount it, it's writeable for a short while but then later it gives me errors about how it's a read only FS. Here's the Fstab line I added:" /dev/sda3 /home/enthdegree/Share vfat rw,user,auto,umask=0000,iocharset=utf8 0 0" . I also chmodded the actual 'sda3' file in /dev to 777 enthdegree:enthdegree (as a test) but to no avail. Any help wou16:23
enthdegreeld be greatly appreciated! :D16:23
th0r!it16:23
ubottuVai su #ubuntu-it se vuoi parlare in italiano, in questo canale usiamo solo l'inglese. Grazie! (click col tasto destro sul nome del canale per entrare)16:23
macotvuser: bugs get filed on launchpad.net.  get an account thre then run "ubuntu-bug linux" to file a kernel bug. there's something wrong in the acpi stuff in the kernel16:23
JanHolbook16:23
MrElendigJanHolbo: you can't unlock something when the key is on the other side of the locked door :)16:23
JanHolboMrElendig: ok - will try that - thanks :-)16:23
macoLuisito: #ubuntu-de16:24
=== bandoz is now known as a
=== a is now known as b
Luisitoalguien habla quiespañol16:24
macoLuisito: solo inglés aquí, por favor. para español #ubuntu-es16:24
Knirghenthdegree: does unmounting and manually do "mount -t vfat /dev/XXX /mnt/XXX" work?16:24
enthdegreeyou mean mounting as root?16:25
mazda01in order to get the volume louder i have to go to pulseaudio applet and go into the manager and then devices, then click on an mplayer audio stream, and change to like 200%16:25
JanHolboMrElendig: hmmm   really? ;-) but is it the whole /home that gets encrypted or just the data inside each individual folder (e.g. /home/peter /home/mark /home Jan etc)?16:25
Knirghenthdegree: yes. doesnt matter on fat drives16:25
tvusermaco: thanx I will... Do you think there is anything I could do in the meantime?16:25
macotvuser: not really16:25
mirashi need to boot Windows16:25
mirashany idea?16:25
enthdegreebrb, trying...16:25
macotvuser: is it out of battery when you try to wake it up?16:26
akshayhello16:26
powerjucethe trash icon on my drive never seems to get empty, no matter what i do. i hav emptied it like a million times. How do i really empty the trash. I already deleted the ~/.local/share/Trash/* as well as /root/.local/share/Trash/* but the trash still appears full. I also hav 2 internal drives, i do not kno if that causes a problem. can anyone help?16:26
tvusermaco: its a desktop16:26
macotvuser: my laptop used to only last 12 hours suspended, then the battery'd run out and of course it couldnt...oh16:26
JanHolboMrElendig: ie could I drop the key in the /home/ folder?16:26
akshay<knirgh>..........heelooooo16:26
akshayu dere16:26
Knirghyes look in private16:26
enthdegree...yes.16:26
enthdegreeI can mount it.16:26
Knirghenthdegree: so can u add that in /etc/fstab?16:27
enthdegreeI mounted it w/ sudo, though. so to be able to write to it I have to do 'sudo touch test'16:27
=== unforgiven512 is now known as unforgiven512-aw
grawity~[6~[6~[6~[6~[6~/.16:28
sunamiebob/part16:28
grawityWhoops.16:28
MrElendigJanHolbo: that would be like locking your car key inside the car16:28
sunamiebobwhoops16:28
Knirghenthdegree: are you sure? it worked for me with a ntfs disk16:28
JanHolboMrElendig: been there - done that - no reason to repeat that experience :-)16:29
MrElendigonly that it's a bit harder to break into a dm-crypt than a car16:29
JanHolboMrElendig: thanks :-)16:29
jcapincDoes anyone have one of those monitors that can flip on its mount and change from widscreen to tall?  If so, do you have a solution to quickly change resolution and oriantation for that purpose?16:29
* grawity blames SSH lag.16:29
shreymechhi16:29
shreymechhi16:29
MrElendigjcapinc: xrandr16:29
shreymechany 1 there..??16:29
MrElendigjcapinc: asuming your gfx card driver supports it16:29
jcapincMrElendig, will that work on an old-ish nvidia card?16:30
powerjucethe trash icon on my drive never seems to get empty, no matter what i do. i hav emptied it like a million times. How do i really empty the trash. I already deleted the ~/.local/share/Trash/* as well as /root/.local/share/Trash/* but the trash still appears full. I also hav 2 internal drives, i do not kno if that causes a problem. can anyone help?16:30
mazda01in order to get the volume louder i have to go to pulseaudio applet and go into the manager and then devices, then click on an mplayer audio stream, and change to like 200%16:30
ecumenicalubotu mp316:30
mazda01anyone know why that is where i can set a default16:30
grawitypowerjuce: Check if those other drives have a folder .Trash-100016:30
MrElendigjcapinc: maybe not, nvidia doesn't support most of the xrand features16:30
admnsalut la communaute16:30
MrElendigxrandr*16:30
powerjucegrawity: ok one sec16:30
ecumenicalubottu mp316:30
ubottuFor multimedia issues, this page has useful information: https://help.ubuntu.com/community/RestrictedFormats - See also https://help.ubuntu.com/9.04/musicvideophotos/C/video.html - But please use free formats if you can: https://help.ubuntu.com/community/FreeFormats16:30
=== hilcona is now known as hellboy
enthdegreeTo clarify: With this line added in my fstab: "/dev/sda3 /home/enthdegree/Share vfat rw,user,auto,umask=0,iocharset=utf8 0 0" I can mount /dev/sda3 in /home/enthdegree/Share with no privileges. ('user' option) I defined it explicitly as rw, but I can only write to it a couple of times and then it reverts to read only again. :P ( Or at least I think that's what's happening...)16:31
jcapincMrElendig, the nvidia resolution tool does not have the settings to make the tall screen work, I am guessing you know no other alternative to xrandr?16:31
gse7enI was just looking through the mount manual and didn't see what I was looking for.  Essentially, I want to create mount points on the fly and then have the directory removed when the dev is removed.  Is this easy to do?16:31
mazda01enthdegree, have you looked at any logs files?16:31
shreymechdo we require to install X-server in ubuntu..?????16:31
=== hellboy is now known as hilcona
enthdegreeNo, I haven't16:32
powerjucegrawity: i did that it still shows 3 files, and still looks full16:32
=== hilcona is now known as hellboy
Mrokiihi. I still have problems with using Apple-keyboard(s) with Ubuntu, as some keys aren't what they should be, no matter which layout I choose...16:32
grawityenthdegree: Sometimes filesystems get remounted readonly by kernel when there are problems with them... check dmesg, or /var/log/syslog.16:32
shreymechdo we require to install X-server in ubuntu..?????16:32
grawityshreymech: No, it is not required.16:32
MrokiiThere seem to be several problems...16:32
dtoljWhat tool do you use to display summary information about a video file? such as audio bitrate etc.16:32
enthdegreedmesg gives me a whole lot of 'FAT: Filesystem panic (dev sda3)' lines though.'16:32
grawityshreymech: Ubuntu Server doesn't even include an Xserver.16:32
SGnewbiehow do we remove/uninstall GNOME16:33
Cyber_AkumaI can't get linux to install, my display goes crazy after booting16:33
Cyber_AkumaIt keeps turning on and off, like a damn NES16:33
MrokiiFirst: if I chose "Macintosh" as the keyboard-Model, an error-window pops up, starting with "Error activating XKB configuration"16:33
grawityenthdegree: fsck /dev/sda3, then? (I don't remember which package has fsck.vfat... it's probably included by default.)16:33
Cyber_Akumathis is on my PS3 connected by HDMI16:33
shreymechi have ubuntu 8.04 desktop edition andi want to install a mesh modeling software which requires an X-server .. so what shud i do..??16:33
enthdegreeOk, I will...16:33
MrElendigjcapinc: sadly, nvidia-settings indeed does not support rotation16:34
grawityshreymech: Desktop edition already has Xserver...16:34
ecumenicalis MP3 codec part of the Gstreamer Good, Bad, or Ugly set?16:34
VaineDragonI found the Quickbooks server install instructions, and am having issues completing the process, here is the site I pasted the Instructions and Bash output. http://dragonsden.pastebin.com/d651f6dd916:34
jcapincMrElendig, thank you for all your help anyways, I appreciate your thoughts on the matter16:34
shreymechokkk so i can directly install and work on the software (software name is GAMBIT)16:35
Cyber_AkumaIs anybody here free to try to help me with this?16:35
shreymech???????????????16:35
grawityshreymech: Just install it and see if it works. (And use less ?s.)16:35
=== Mavud is now known as Soul
shreymech:-)16:35
shreymechok grawity and sorry for ?16:35
MrElendigjcapinc: the nouveu or however you spell it driver, probably supports rotation using xrandr16:35
crdlbecumenical: the mad mp3 decoder appears to be in ugly16:36
jcapincMrElendig, Thanks, I will check that out16:36
mirashanyone there using grub to boot both Windows and Ubuntu?16:36
=== forceflo1 is now known as forceflow
SGnewbiememememe16:36
Cyber_AkumaI am16:36
shreymechyes mirash16:36
mirashplease give me a screenshot of menu.lst16:36
SGnewbieI use dual boot with grub16:36
mirashi too want to do that16:37
Mrokiiso, is anybody in here who could give a Linux-newbie some tips regarding keyboard-problems?16:37
MrElendigmirash: http://pastie.org/58011016:37
psykusgrawity: found a hacky solution to my RDP problem16:37
MrElendigmirash: screenshots is just silly16:37
ecumenicalcrdlb, ok cool. Where did you find that information? I need to source for this document: https://wiki.opencastproject.org/confluence/display/open/Codec+Support16:37
jan__ /connect irc.pamoya.com16:37
YosHow do I change the status dots in xchat to the standard &,@,%,+ symbols ???16:37
psykusgrawity: once logged in on the second session, you can open task manager, go to users, right click on the console session and click 'switch to'16:37
psykusnot ideal but it works16:37
crdlbecumenical: I did a 'dpkg -S /usr/lib/gstreamer-0.10/libgstmad.so' on my system16:37
mirashi cant boot Windows16:38
ecumenicalcrdlb, ok thanks. :-)16:38
kiaas_Well, I now need to use 2 different OSes in Virtual Box....OpenSOlaris and SuSe.16:39
Cyber_Akumawhats the error you get from grub?16:39
mirashits installed in /sda516:39
Cyber_Akumaor is it windows?16:39
mirashand ubuntu un sda716:39
MrElendigYos: ?16:39
psykusanyways, thanks for your help grawity, out16:39
=== Cueball is now known as Cueball_
YosYes16:39
MrElendigYos: weechat by default uses @ for op, + for voice and so on like everyone else16:39
grawityMrElendig: He said Xchat, not Weechat.16:40
Cyber_AkumaSo has anybody here tried installing Ubuntu on their PS3?16:40
MrElendigsorry, misread >_>16:40
Yosxchat uses colored dots and I know that can be changed but don't know how16:40
Cyber_AkumaYos: It was under skin/themes16:40
kiaas_Cyber_Akuma, sadly, I don't own a PS3. I would install an ubuntu distro on it if I had one though :D16:40
MrElendigwell, switch to weechat :D16:40
MrElendigmuch better anyway :p16:41
mazda01in order to get the volume louder i have to go to pulseaudio applet and go into the manager and then devices, then click on an mplayer audio stream, and change to like 200%16:41
thomthomI need some help joining a windows 2k8 domain16:41
mazda01enthdegree, have you looked at any logs files?16:41
kiaas_Switch to IRSSI16:41
hellboyhallo16:41
mazda01anyone know why that is where i can set a default16:41
YosNooo :P16:41
hellboyhallo16:41
Cyber_AkumaIm deciding between ubuntu or YDL for my PS316:41
Cyber_Akumawas going to install each to test them out16:41
YosThanks Cyber_Akuma  I'll try that16:41
enthdegreeYes. I decided to just fsck.vfat my partition16:41
enthdegreeI lost a couple of files, but it's all backed up, so I'll just copy them back.16:41
enthdegreeDropbox FTW. :D16:42
ninjaslimhi guys, can someone give me some advantages that ubuntu has over fedora16:42
enthdegreeI just switched back from fedora to CrunchBang.16:42
kiaas_I'd use ubuntu for consistency. Everything else I have runs ubuntu(excluding the Sun and Apple computers)16:42
th0rninjaslim: it has more 'u's16:42
enthdegreeThe first thing I noticed was that apt is still ~way~ faster than Yum.16:42
sipiorninjaslim: probably a conversation better pursued in #ubuntu-offtopic.16:42
kiaas_ninjaslim, better package manager16:42
enthdegreeYeah, it's got better package selection too.16:43
MrElendigninjaslim: imo, nothing except that apt is slightly less slow than yum16:43
pikenHi all16:43
MrElendigninjaslim: and that ubuntu has pay to play support if you want it16:43
ninjaslimi see16:43
=== Knirgh_ is now known as Knirgh
enthdegreeThe new fedora release (11) is also really hard to find support for. ( Minus IRC, and stuff like that ) In my experience, anyway. :P16:44
pikenIf you upgrade pacakges to newer ones from launchpad, is there a way to go back to the original. I upgraded to mono 2.4.35 from launchpad and need to go back to the base 2.0.1-4 that comes as part of Juanty as the 2.4.35 is not compiled with the correct tls settings.16:44
jiohdiany reason why my trash icon never empties any more?16:44
shreymechdid anybody here worked on FLUENT software ...  its a fluid simulation software...?? and any onw knows any good MEsh modeling software under LINUX16:45
snarksteri set up a private encrypted folder and now it says the it isnt setup correctly..16:45
snarksteris there anyway to get the data back?16:45
enthdegreecd ~/.Trash16:45
enthdegreerm the stuff you don't want16:46
shreymechdid anybody here worked on FLUENT software ...  its a fluid simulation software...?? and any onw knows any good MEsh modeling software under LINUX16:46
jiohdienthdrgree  cd: /home/jiohdi/.Trash: No such file or directory16:46
snarkstersorry i checked my mail and pidgin died as usual16:46
sipiorenthdegree: i think that's in .local/share/Trash nowadays (9.04 forward)16:46
nick_his the Jaunty alternate install CD still a live CD?16:46
enthdegree! Well, the last time I used it, it was 8.04, so.. :{16:47
ubottuError: I am only a bot, please don't think I'm intelligent :)16:47
iGamanick_h, the alternate was never a livecd16:47
snarksteranyone know how to get data back from and ecryptfs16:47
nick_hiGama: thanks16:47
buchWhat is the best alternative youtube plugin or downloader, since i guess adobe is to blame for not updating? I mean i really miss the part of steaming w/o youtube worrying16:47
iGamanick_h, the live cd is the desktop cd16:47
jiohdisipior, you are correct16:47
jiohdibut there is nothing in trash and the icon still shows full16:47
snarksterfirefox videodownloadhelper works good16:48
sipiorsnarkster: if you could get the data back, it wouldn't be a very good encrypted filesystem :-)16:48
enthdegreeI just use a greasemonkey script.16:48
mizipzorby a fellow wine user, i was asked to try the video driver mesa/xf86-video-intel ... is that in the package repository?16:48
snarksterright it says the sig file doesnt exist.. i know the password.16:48
shreymechr16:48
ammlist room16:48
dr3mrohola16:48
snarksterim assuming the sig file is encrypted to right?16:49
buchOkay.. But isnt there any plugin that actually automatically download and plays it while downloading - so its more or less equal to steaming?16:49
snarksterbuch not that i know of16:49
etherealityI cannot execute the simplest bash scripts; please help! :( see http://ubuntuforums.org/showthread.php?t=123747716:49
buchokay16:49
SuspectZerohi, how can i figure out what version of the iwlwifi driver i have?16:49
snarksterive been having massive issues with adobe flash anyway, switched over to gnash16:49
=== Mavud is now known as soul
snarksterwhich doesnt really work all that well.16:49
snarksterat least for me16:50
snarkster./bashscript16:50
sipiorethereality: have you set the appropriate execution bits on the script?16:50
brorjonasWhat do I need to add MP3-support to Rythmbox?16:50
etherealitysipior: i don't know anything about the default settings for creating files with gedit.16:50
snarksterright chmod +x bashscript16:50
etherealitygedit doesn't do that by default?16:50
IndyGunFreakbrorjonas, install w32codecs from medibuntu16:50
etherealitywhat's the difference between "u+x" and "+x"?16:51
brorjonasThanks will try it out.16:51
sipiorethereality: none16:51
snarksteri dont remember16:51
snarksterok none i guess.16:51
jiohdiether, u is for user no?16:51
snarksterok so no way to access this data that is encrypted..16:51
ammDrugije komnati jestj? ?? ? ?16:51
grawityethereality: +x sets the permission for all -- user, group, and other.16:51
etherealityjiohdi: that's whati thought16:51
etherealityoh, thanks Granis16:52
ethereality... grawity16:52
snarksterwell that saves me a hell of a lot of work. LOL16:52
etherealitywell, that fixed it, and now it will also tab complete16:52
jiohdiso if you use u+x its only for users16:52
etherealityhow do i make gedit set +x by default?16:52
jiohdiso there is a difference :)16:52
snarksteryou dont16:52
sipiorjiohdi: not one that matters here16:52
jiohdinope16:52
etherealitywell, how do i skip chmod +x every time i create a script?16:52
snarksteryou dont16:52
kuba_dobry16:52
etherealityis it that important?16:52
=== kuba_ is now known as Guest36253
brorjonasIndyGunFreak, if you're still listening. Reinstalled, still doesn't works. Missing MP3-codec it says.16:53
jiohdionly if you want it to work :)16:53
sam_hello16:53
snarksterif its not +x then it just a text file16:53
Guest36253jak zrobic se nick/16:53
IndyGunFreakbrorjonas, where did i say anything about reinstalling?16:53
Aroll605sudo apt-get install gstreamer0.10-plugins-ugly16:53
Aroll605or something like that16:53
etherealityso i can create a script that launches applications simply by entering their commands one by one in line?16:53
jiohdi+x = +eXecutable16:53
brorjonasIndyGunFreak, , ok already installed.16:53
ammDrugije komati jest v chate?? ? ? ?16:53
sam_hey anyone know why I can't add the compiz 3d effects?16:53
IndyGunFreakbrorjonas, what did you install?16:53
snarksternot a very pretty script but yes16:54
jiohdiright?16:54
mocashi there16:54
etherealitycoool thanks16:54
snarkstersam_ alittle more information16:54
sam_snarkster, well I recently switched to Ubuntu, but I've used it before and it worked16:54
nick_hi can't seem to communicate with my dcop server. every dcop command fails with "call failed". is it safe to remove ~/.DCOP* and ~/.ICE* ?16:54
snarksterok16:55
snarksterwhat about your video card, processor give us some hardware details and maybe we can get compiz to work16:55
sam_I have a good nvdia graphics card16:55
jiohdinick, .ICE file seems to be needed for a lot of other programs16:55
brorjonasIndyGunFreak, w32codecs was installed, So I reinstalled it from synaptic package manager.16:55
sam_umm trying to remember which number it was16:55
snarksterrunning the nvidia driver?16:55
enzotibamm: /join #ubuntu-lv16:55
sam_well i went to hardware drivers16:56
IndyGunFreakdunno brorjonas works fine for me16:56
snarksterdid it install the drivers?16:56
kiaas_sam_, what ya got a TNT2? that's a "good" nvidia card(it isn't very fast or modern, though)16:56
sam_and it installed nvidia accelerated graphics driver16:56
sam_version 18016:56
ammKak uznal shto ja iz LV?16:56
snarksterok16:56
brorjonasIndyGunFreak, ok Thank you anyways,16:56
sam_the card i have on my laptop that im using right now is like nvidia 8400 or something like that16:57
sam_its the kind that the hp laptops get with about 128mb or whatever it is16:57
snarkstersam_ open a terminal and type glxgears and see if the gears are spining and if they are spining crazy fast.16:57
sam_theyre spinning alright16:57
sam_like not too fast not too slow16:58
snarksterif they are spining crazy fast then you dont have acceleration16:58
snarksterok16:58
sam_pretty cool though16:58
snarksterdamn cant remember the next command16:58
snarksteri think its glxinfo | grep direct16:58
winterhola16:58
sam_the thing is ive tried ubuntu on this laptop before and i managed to get the 3d effects to work but it took some work i think16:58
mizipzorhow do i check which video driver im using?16:59
winteranybody knows a place in spanish language ??16:59
buchOkay can anyone help me with upgrade from ext3 to ext4 w/o formating? Found http://maketecheasier.com/how-to-upgrade-from-ext3-to-ext4-without-formatting-the-hard-disk/2009/04/21 site but there is something im not sure of16:59
IndyGunFreak!es | winter16:59
ubottuwinter: En la mayoría de canales Ubuntu se comunica en inglés. Para ayuda en Español, por favor entre en los canales #ubuntu-es o #kubuntu-es.16:59
mazda01anyone help with pulseaudio?  in order to get the volume louder i have to go to pulseaudio applet and go into the manager and then devices, then click on an mplayer audio stream, and change to like 200%17:00
snarksterok i gotta take off.. sorry sam_ i couldnt help you more17:00
vavarwhich packages do i need for sound playback ? alsa-something? pulseaudio-something?17:00
sam_ok17:01
sipiorbuch: go ahead and ask the channel17:01
kekekeis ubuntu 9.04 server unstable? alot of packages i try to install say that they are broken17:01
outydoes anybody know how to get pipe ip filters to work in ktorrent ?17:01
winterok. I'll speak in english. it's my first time I'm using ubuntu17:01
sipiorkekeke: for example?17:01
outyhttp://users.spin.net.au/~boostlinux/pipefilter/ipfilter.dat.nswqldvic.txt           i need to get this to work in ktorrent as it would in utorrent/windows17:01
vavarkekeke: which packages?17:01
vavarubottu: !sound17:01
ubottuIf you're having problems with sound, first ensure ALSA is selected, by double clicking on the volume control, then File -> Change Device (ALSA Mixer). 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 !MP317:01
kekekee.g. ia32-lubs17:02
kekekee.g. ia32-libs*17:02
sipiorkekeke: also, have you done an apt-get update recently?17:02
winterand now i'm configuring the system. but I have problems with the scanner configuration17:02
=== Cueball_ is now known as Cueball
kekekeyes17:02
sipiorkekeke: and the update occurred without incident?17:02
sipiorkekeke: also, what error did you get when attempting to install ia32-libs?17:03
kekekesipior 1 second, how can i check what version of ubuntu im running? i may be running a different version to that which i think im running17:04
sipiorkekeke: "lsb_release -a"17:04
kekekeDescription: Ubuntu 9.0417:04
kekekeRelease: 9.0417:04
kekekeCodename: jaunty17:04
sipiorkekeke: sounds right.17:04
Cluberwhy can't i change my screen resolution to a higher one? I have looked at some articles with no sucess17:04
kekekehmm...17:04
kekekei'll paste you my error17:05
kekeke1 sec17:05
buchsnipior why does the guide i posted first says replace the XXXX with your filesystem ID then next step dont (http://paste.ubuntu.com/251451/)17:05
kekekesipior: http://paste.ubuntu.com/251452/17:05
sipiorbuch: sorry, i don't see what you're referring to. you're replacing the device name in both locations, right?17:07
piken.17:08
pikenIf you upgrade pacakges to newer ones from launchpad, is there a way to go back to the original. I upgraded to mono 2.4.35 from launchpad and need to go back to the base 2.0.1-4 that comes as part of Juanty as the 2.4.35 is not compiled with the correct tls settings.17:08
sipiorkekeke: if you try to install lib32ncurses5, what error is given?17:08
Cyber_AkumaGuess ill check later if nobody here ever tried it on a ps317:08
buchhah sipior, its been a long day, i didnt noticed that is says "Dont forget" :)17:08
buchSorry17:09
sipiorbuch: no worries.17:09
sam_hey anyone know how to get 3d effects to work for me?17:09
kekekesipior: http://paste.ubuntu.com/251454/17:09
Cluberwhy can't i change my screen resolution to a higher one? I have looked at some articles with no succcss17:09
mazda01i have a process called voronoi, what the heck is that?17:10
sipiorkekeke: and libc6-i386?17:10
kekekelibc6-i386: Depends: libc6 (= 2.9-0ubuntu5) but 2.9-4ubuntu6 is to be installed17:10
kushal_kumaranmazda01: probably a screensaver17:10
kushal_kumaransee the output of apt-cache show xscreensaver-gl17:10
ryanakcaWhat's the /bin/sh (dash) equivalent of bash's and zsh's {14...00} expansion?17:11
mazda01kushal_kumaran, never thought of that as I am ssh;d into the box. thanks17:11
mazda01kushal_kumaran, thanks17:11
yaaarhowdy17:11
kekekesipior any ideas :(?17:12
sipiorkekeke: thinking.17:12
=== root is now known as Guest55423
yaaarare the only two ubuntu server versions really i386 and x86-64? i've got some nice xeons here that seem wasted on i386 but won't do x86-6417:12
duckwarsIs there anyway to |grep your whole computer?17:12
yaaarseems like at the very least there would be an i58617:13
grawityryanakca: I think it's `seq 14 00`17:13
duckwarsI guess recursively grep your /17:13
yaaarduckwars: you probably shouldn't, but yes, you can use grep -R17:13
grawityryanakca: (using the seq command)17:13
grawityduckwars: grep -R "something" /17:13
duckwarswhy should I probably not?  I can't find where I put a specific file17:13
MrElendigyaaar: most crud is built with -march=i386 -mtune=i68617:13
sipiorduckwars: and then go get coffee or something....17:13
duckwarswill -a show hidden files?17:13
grawityduckwars: ls -a, yes.17:14
yaaarMrElendig: oh, ok. that'll be sufficient. thanks17:14
grawityduckwars: for grep it's not needed.17:14
duckwarswhere do people generally put .htpasswd files? I followed a tutorial longtime ago and it's not in /etc/apache17:14
grawityduckwars: Also, if you remember the file name, find will probably be faster.17:14
sipiorduckwars: try "locate filename", also17:14
grawity(As in find / -name ".htpasswd")17:14
duckwarshow do i use find?17:14
MrElendigduckwars: do you remember the filename?17:14
grawityduckwars: find / -name ".htpasswd"17:14
MrElendigduckwars: updatedb && locate .htpasswd17:15
duckwarsI tried grawity's command, it is thinking17:15
duckwarsI might add this is a 400 mhz 64mb ram computer...17:15
SirFunkhmm.. so.. i uninstalled pulseaudio to try oss4 and now i want to go back...alsa is running and detects my soundcard, pulse is running but ... pulse doesn't see the alsa devices is there some config i'm missing?17:15
=== DaZ- is now known as DaZ
grawityduckwars: These specs make no difference for find/locate/grep, it's just a matter of how fast it can read your disk.17:16
duckwarsoh, well thank you everyone17:16
MrElendigasuming that ubuntu uses mlocate now, locate will be fastest17:16
kekekesipior: you think i should just reinstall the OS?17:16
duckwarsI think this is just going to take forever, can anyone think of another way to find my .htpasswd file? maybe somewehre in the .htaccess files?17:17
sipiorkekeke: that's a bit extreme. does an apt-get update complete without error?17:17
sam_how do i get 3d effects to work with my nvidia 8400 graphics driver?17:17
kekekeyes17:17
=== unforgiven512-aw is now known as unforgiven512
Halitechsam_, you need to enable the driver17:17
ChrisWhey all, got a box with Ubuntu 8.04 on it, are there any python 2.6 pacakges available? If so, what are they?17:17
grawityduckwars: .htaccess should have the path of the .htpasswd it uses, yes.17:17
sam_i thought i did already17:18
grawityduckwars: Either .htaccess or apache's configs.17:18
sipiorkekeke: does "apt-get --fix-broken" help?17:18
Halitechsam_, check hard ware drivers and make sure17:18
outyhey um17:18
sam_Halitech, thanks for responding, I have version 180 enabled17:18
outyfacebook goes to google17:18
outywhat do i do to fix this?17:18
duckwarsgrawity: thank you, I found the file now17:19
Halitechsam_, ok, do you have ccsm installed? or have you tried enabling effects?17:19
sam_Halitech, I've tried enabling through system preference and then apperance17:19
kekekesipior: nope17:19
Halitechsam_, what happens when you try?17:19
=== unforgiven512 is now known as unforgiven512-aw
sam_Halitech, oh wait it worked this time....how do I test it?17:20
kekekesipior: i don't have anything i need installed, so reinstalling the OS isn't really a big deal17:20
Halitechsam_, try changing desktops or minimize a screen17:20
sam_Halitech, ok it works I feel pretty stupid, thanks for responding though17:20
kekekeanything i need on the hd*17:20
sam_Halitech, how do I do the cube thing?17:20
grawitysam_: I think you need to enable "Desktop Cube"17:21
grawity!ccsm17:21
ubottuTo enable advanced customization of desktop effects in Ubuntu: install 'compizconfig-settings-manager' or 'simple-ccsm'. If you install the latter, a new option will appear in your appearance properties - See also !compiz - Help in #compiz17:21
Halitechsam_, np, glad it worked cause I was guessing on what to do cause I don't use it17:21
sipiorkekeke: well, worth a try, then, but without understanding the problem, you're likely to see it again.17:21
sam_Halitech, oh hahah ok thanks17:21
sam_grawity, how do I enable the cube?17:21
kekekeok i'll try.17:21
sam_grawity, I'm pretty new if that isnt obvious yet17:21
grawitysam_: Do you have CCSM installed? If not, see ubottu's message above17:21
sam_grawity, well the 3d effects like the wobbly thing works17:22
sam_grawity, what is CCSM anyway?17:22
grawitysam_: CompizConfig Settings Manager.17:22
ZeddeHello , when i login I get a msg that I have 1 pkg and 2 security updates , how do I check what it is17:22
grawitysam_: A big window where you can enable, disable and configure plugins for Compiz.17:22
Zeddethis is on a server consol17:22
gwildorZedde, sudo apt-get update && sudo apt-get upgrade17:22
HalitechZedde, sudo apt-get update && sudo apt-get upgrade17:22
gwildor+117:22
Zeddedid that I still get them17:22
sam_grawity, do I get it from the Add/remove programs thing?17:23
HalitechZedde, with doing the upgrade?17:23
linoobxoook.. i got a simple question for a little script17:23
xiongare there corruption issues with gftp?17:23
sam_grawity, nvm I found it there, thanks17:23
=== pruegeL^afk is now known as pLk
mazda01Zedde, you can see what aptitude will do by using the -s option17:23
ZeddeI have done update and upgrade even dist-upgrade I still get msg that I have updates to install17:23
mazda01Zedde, sudo aptitude update && aptitude upgrade -s17:23
bastidrazorZedde, system>administration>update manager . that should let you install packages even if they are held back17:24
coz_xiong,  did you google that  ...let me look17:24
xiongcoz_, i don't see anything17:24
Halitechbastid_razor, they said console17:24
Zeddebastidrazor: consol17:24
coz_xiong,  no  I dont either17:24
mazda01Zedde, it will show you what it will upgrade and then if you want to upgrade you'll issue sudo aptitude upgrade17:24
grawitybastidrazor: The Server version doesn't have a GUI.17:24
bastidrazoryeah, i missed that. late arrival17:24
linoobxi'm calling 2 times wget from a script, passing a url with a `<code>` part attached on the end17:24
Zeddemazda01: okay thanks will try that and come back17:24
xiongcoz_, will you try this? http://eaglehouse.us/resume/ -- download the PDF17:25
linoobxonly one of the two was called17:25
akscii've freshly installed thunderbird! but it downloads all the past mails which i dont want! i'd be deleting them anyway! so how cut this? i just want emails a few days from now! or say, a week or so!17:25
mazda01Zedde, sounds good17:25
linoobxand i don't understand why17:25
xiongcoz_, i uploaded that PDF to the site myself using gftp, is why17:25
ShapeshifterHi. I'm using a tool called parashell to access the parallel port. Everything's working now except that I can only use it as root. If I use it as user, I get an error "Can't gain access to port 378". What do I have to do so that users can access the parallel port?17:25
icerootlinoobx: we also17:25
icerootlinoobx: because we dont see the script17:25
coz_xiong,  there is a format error here  but it did download17:25
iceroot!paste | linoobx17:25
ubottulinoobx: pastebin is a service to post multiple-lined texts so you don't flood the channel. Ubuntu pastebin is at  http://paste.ubuntu.com | To post !screenshots use http://tinyurl.com/imagebin | !pastebinit to paste directly from  command line | Make sure you give us the URL for your paste - see also the channel topic17:25
grawityaksci: Are you using POP3 or IMAP for mail?17:26
Malekoguys is it possible to limit the download speed when fetching packages from repo?17:26
fosser_josh1aksci: what happend with thunderbird17:26
xiongcoz_, the PDF was okay before i uploaded it -- i'm trying to figure out what's going wrong17:26
akscigrawity: in the server settings, server type says POP mail server!17:26
coz_xiong,  oh I understand now... I was thinking you had compile errors with the gftp source17:27
Halitechaksci, did you previously have thunderbird set to leave mail on server?17:27
grawityaksci: Ah. POP is very simple, and Thunderbird just cannot know the email's date without downloading it.17:27
Halitechaksci, and is it a gmail account17:27
grawityaksci: Is it Gmail?17:27
aksciHalitech: once! but discontinued as it used up shitload of bandwidth! grawity: sorry for not specifying,... its a gmail account!17:28
coz_xiong,  did you create that pdf on linux or windows?17:28
akscigrawity: should i change server type to imap?17:28
Zeddemazda01: the msg are gon now. strange only update pkg I saw was ai32-libs something17:28
xiongcoz_, i just want to know why the download is corrupt -- besides you and i, there is one other user reported the issue -- as i compare the local and remote file, the byte count is correct -- i created the pdf on a mac os 9 machine17:28
Halitechaksci, if the server is gmail it will redownload everythign still on the server17:29
grawityaksci: Using Gmail with IMAP would probably be better.17:29
coz_xiong,  you can upload the pdf  to speedyshare.com  let me test the original file17:29
grawityaksci: POP3 only allows downloading the full message (and optionally deleting it).17:29
strrevcan i downgrade from 9.04 to 8.04 ?17:29
mazda01Zedde, well, that's all it had to upgrade then. the update command will go to the servers and see if there is anything to upgrade, then the upgrade command will upgrade packages17:29
icerootstrrev: no17:29
coz_strrev,  I would  recomment just  clean install 8.0417:29
xiongcoz_, the local file is readable on my linux box -- and previous to today, i had uploaded the pdf to a site and had good downloads of it -- i'm thinking some sort of corruption involving linefeed translation???17:30
Zeddemazda01: okay17:30
grawityaksci: With IMAP, Thunderbird only needs to download the headers (subject, date, sender). And it would be automatically syncronized with Gmail's web interface, too.17:30
Zeddemazda01: thanks again17:30
xiongcoz_, will do17:30
akscigrawity: i've set the disk space option to msges less than 1mb!17:30
mazda01Zedde, no problem17:30
coz_xiong,   I would go to #linux  channel and  see if someone there has more info about this17:30
Megra_strrev, however, if you have problems with a particular program, you can downgrade it (not recommended)17:30
linoobx!iceroot here's the script: !pastebinit http://paste.ubuntu.com/251464/17:31
ubottuError: I am only a bot, please don't think I'm intelligent :)17:31
strreviceroot, that`s bad. i use 9.04 on 2 GB RAM, proc Dual core 1,73 GHZ ... and it`s very slowlyyyyy .. but i think the problem comes from my video card : Intel X3100 . // I don`t use Compiz :|17:31
akscigrawity: oh! but there's an option with pop3 to download headers only! should i change the server type or just check the 'download headers only' box!17:31
xiongcoz_, http://www.speedyshare.com/639570432.html17:31
mazda01anyone help with pulseaudio?  in order to get the volume louder i have to go to pulseaudio applet and go into the manager and then devices, then click on an mplayer audio stream, and change to like 200%17:31
icerootstrrev: yes, there is a problem with intel. wait a minute17:31
akshayCAN ANY BODY SOLVE GRUB PROBLEM17:31
akshayheeeeeeeeeeeeeelooooooo17:31
linoobx!iceroot humm.. here's the link http://paste.ubuntu.com/251464/17:31
ubottuError: I am only a bot, please don't think I'm intelligent :)17:31
grawityaksci: Some POP3 servers do support that, but overall it's a little unreliable. For Gmail, I think IMAP would be a better choice.... but you choose.17:31
coz_xiong,  this file is fine17:31
Megra_akshay, what is your problem ?17:31
akshay CAN ANY BODY SOLVE GRUB PROBLEM17:31
akshayhe17:31
icerootstrrev: http://ubuntuforums.org/showthread.php?t=1130582  i am using the safe one17:31
akshaywill help me17:32
Knirghakshay: private17:32
icerootlinoobx: i will have a look17:32
akshay<megra>17:32
strrevhehe, thanks iceroot :P17:32
Myrttiakshay: how about you just ask your problem?17:32
Megra_akshay, and stop shouting (capital letters), you risk ban for that17:32
xiongcoz_, you downloaded okay from speedyshare? -- if so, then i wonder if it is time to complain to my server hosting company17:32
Megra_!ask | akshay17:32
ubottuakshay: Please don't ask to ask a question, simply ask the question (all on ONE line, so others can read and follow it easily). If anyone knows the answer they will most likely reply. :-)17:32
strreviceroot, can you see the difference ?17:32
strrevis it big ?17:32
differentrealityhey!  I have installed sims 3 on my laptop, which runs ubuntu 9.04, through playonlinux.  Installation was successful and game seems to start normally but I can only hear the sounds of the game, I am not seeing any video/image.  Plus at that point I am unable to swich to another app so I have to restart my lap.  Any ideas why I don't have video?  thanks in advance!17:32
linoobx-__-17:32
linoobxbetter if find the solution by myself17:32
akshay<megra> can we have a private chat17:33
akshayif u don mind17:33
coz_xiong,  yes I downloaded the one from speedyshare and it was fine      I think a complaint is in order17:33
grawitylinoobx: If nobody answers - nobody knows.17:33
akscigrawity: i'd go with imap! i hope changing it after setting up the account wont be of any problem! but does imap synchronising with the server mean it tells the gmail server what mails it has already downloaded n which new ones it should download hence?17:33
akshayi face prob writing and understanding17:33
xiongcoz_, thank you for your help17:33
=== The_Toxic_Mite_ is now known as The_Toxic_Mite
carrie_555Hi ! When I go to the command line (Control+Alt+F1) I find the characters quite big. I have a 22'' screen and I'd like to make use of it. How do I make the letters smaller ?17:33
linoobx!grawity it's a simple question i think.. i'm just noob.. maybe it's TOO easy :P17:33
ubottuError: I am only a bot, please don't think I'm intelligent :)17:33
coz_xiong,  no problem   let me know if you get this sorted out and what the issue was :)17:33
_UsUrPeR_hey all17:33
Megra_differentreality, for the "i can't change of app", i don't think there is any workaround, but to go to TTY1 (ctrl+alt+F1) and kill the process17:33
Forza4Lifegrrrrr   why cant i get sound to play when i am trying to watch a dvd17:34
differentrealityMegra_,  I'll try that tnx.. even though main prob is that I have no video.17:34
sipiorForza4Life: silent film?17:34
Forza4Lifenooo   the video is playing fine17:34
grawityaksci: With IMAP, Thunderbird only downloads message headers (which include subject, sender, date, and an unique ID). When you open a message, Thunderbird marks it as read -- and with IMAP, it also sends a "mark as read" command to server.17:34
Megra_akshay, ask your question here ... i won't answer to any question in private17:34
_UsUrPeR_my server is freezing on "Deconfiguring Network Interfaces". It has been like this ever since I started working with brctl. Where can I check to see what's making this take so long to boot/ shut down?17:34
linoobx!Forza4Life try using vlc.. it downloads missing codecs17:35
ubottuError: I am only a bot, please don't think I'm intelligent :)17:35
Forza4Lifei just get no audio   i got audio from the dvd menu  but when i hit play movie on the screen  i get no audio from the movie17:35
Forza4Lifeok17:35
YosWhat's the proper way to back up and restore if I want to go from wubi to a complete install ?17:35
ryanakcagrawity: great, thanks17:35
kitplyhi all, i just got an invite for register for the ubuntuone. but when i went to the site it recommends a minimum version of 9.04, but i have 8.10 currently.17:35
histolo2Hi17:35
kitplycan i install the ubuntu one on 8.1017:36
Megra_!codec | Forza4Life17:36
ubottuForza4Life: For multimedia issues, this page has useful information: https://help.ubuntu.com/community/RestrictedFormats - See also https://help.ubuntu.com/9.04/musicvideophotos/C/video.html - But please use free formats if you can: https://help.ubuntu.com/community/FreeFormats17:36
linoobx!Yos backup what?17:36
ubottuError: I am only a bot, please don't think I'm intelligent :)17:36
histolo2I recently baught a dialup modem to use it as a fax17:36
differentrealityis there perhaps another channel that people would know something about my problem with sims3 ?17:36
kitplycan it be tried on with ubuntu 8.1017:36
YosMy configurations and data...I don't want to lose all of my work17:36
Megra_linoobx, stop putting '!' in front of your messages, you are triggering bots :-)17:36
histolo2its connexant, i managed to install driver... but can't configure efax17:36
histolo2anyone?17:37
=== Azeotrope is now known as JackBauer
Halitechhistolo2, pci fax or external?17:37
linoobxMegra_ hemmm i'm just wondering if it's not the right way to talk to a specific person xD17:37
akscigrawity: oh, okay! thanks! well, thunderbird anyway downloaded 3k msges while i was here on irc! lol17:37
Megra_differentreality, yu can try to find some help on playonlinux.com17:37
grawitylinoobx: yeah, what Megra_ said. On IRC, the most commonly accepted prefix is "nick: ", not "!nick".17:37
histolo2pci17:37
kitplyhas anyone tried ubuntuone on 8.10 ?17:37
linoobxoooops :P17:37
YosHmmm ?17:37
Halitechhistolo2, what model? can you get it to dial out?17:37
XDCC|Chiyoirc://irc.euirc.net/Sudeki-FanSubs17:37
linoobxgrawity: ok sorry17:38
Megra_linoobx, just write je name of the person followed by a comma, or ":"17:38
histolo2halitech its connexant based chip hsf something (don't remember right now)17:38
linoobxMegra_: i got it :P17:38
JackBauerHello guys. I have some problems with with my display. When in google eath the screen flippers17:38
histolo2how can i check if it dials?17:38
grawitylinoobx: Many IRC clients, including Xchat, allow you type just the first few letters of a nick, then press Tab and it will be completed.17:38
grawitylinoobx:   anyway, about that script -- I'm not sure if this is at all related, but how about quoting the entire URL?17:38
grawitylinoobx: such as wget --spider "http://blah", instead of merely escaping the \& ...17:39
Megra_linoobx, or even escaping with single quotes '17:39
=== JackBauer is now known as Keiffer
linoobxgrawity:  cool the autocomplete.. i never used irc seriously.. yes i'm gonna try that for the url.. thx!17:39
Megra_Keiffer, :-)17:39
grawityMegra_: No, single quotes won't work because he's using `` for inclusion.17:39
KeifferMegra...17:39
linoobxbrb17:40
brorjonasHow do I change Amarok 2 backend from xine to gstreamers?17:40
grawitylinoobx: also, does wget show any error messages for the failing URL?17:40
Forza4Lifety for the VLC tip   that fixed everything17:40
Halitechhistolo2, is it new or used?17:40
=== thiebaude is now known as Jackbauer
Megra_grawity, i don't see the problem, why :      command `wget 'http://google.fr'`    won't work ?17:40
CarlFKif ubuntu is installed on win using wubi, will the ntfs fs that hosts the ext3 image file be available for mounting?17:41
HalitechMegra_, it needs to know the file you want to download17:41
histolo2halitech its new and i used it in windows xp (i dual boot)17:41
gwildoru trying to wget all of google?17:41
akshay<megra> i  installed ubuntu on my portable hard drive and my comp shows a grub error when i boot my comp without the hard drive plugged in17:41
akshay<megra> wat to do17:41
Halitechhistolo2, take it back and get a hardware based modem, hsf based modems are software and a pain in the backside17:41
linoobxgrawity: no errors! but my wife is flooding the connection with emule :P17:42
akshay<megra> wat to do now17:42
grawityMegra_: This one will work -- but he's using `` in the URL. And wget 'http://`echo google.com`' will NOT work.17:42
_UsUrPeR_my server is freezing on "Deconfiguring Network Interfaces". It has been like this ever since I started working with brctl. Where can I check to see what's making this take so long to boot/ shut down?17:42
akshay<megra> u dere17:42
histolo2haliteh used this tutorial to install drivers https://help.ubuntu.com/community/DialupModemHowto/Conexant17:42
grawitylinoobx: Yeah, I'm familiar with that one... (my sister uses eMule too.) Anyway, are you sure it isn't a server-side problem?17:43
histolo2halitech should efax work "out of the box" after drivers are installed?17:43
Halitechhistolo2, I used to do dialup support and the connexant chips were bad enough under windows and they use software (hence the name win-modems) so if it works its going to be crappy to use17:43
Halitechhistolo2, as far as I know if the modem is working properly then it should17:44
linoobxgrawity: don't think so.. but i try switching the 2 calls to see if it's again the second to fail17:44
rodolfohi everybody!!17:44
ascheelQuestion for you guys.  I'm compiling some open source drivers for a wireless USB dongle.  Once I 'make' it, do I need to 'make install'?  Once THAT is done, do I need to add it with modprobe or something?17:44
histolo2halitech well its not worth it, costed me only 5$ and it works under windows... i have DSL but use this as a fax17:44
Halitechascheel, what wireless dongle17:44
ninjaslimhi guys, i need a distro that' not too fast moving, that just works, and that i can use to do C/C++ development and java and matlab/R work, will Ubuntu fit the bill for this17:45
rodolfoi have a strange question..is it possible to use firefox as a file browser?17:45
grawitylinoobx: wget's --server-response may be useful.17:45
ascheelHalitech: Buffalo WLI-UC-GN, chip is RALINK 287017:45
histolo2halitech thanks anyway17:45
Halitechhistolo2, well, you can try it, I've never tried to use efax17:45
grawityrodolfo: Only in read-only mode; you won't be able to do anything with the files except to read them.17:45
sipiorninjaslim: yes, handily.17:46
sipiorninjaslim: it's easy enough to try out, see if it works for you.17:46
MK13does anyone here have advice on getting an easycap usb capture card to work on Ubuntu?17:46
rodolfograwity: of course, just browsing..and what extensions can i read?17:46
=== unforgiven512-aw is now known as unforgiven512
grawityrodolfo: All that Firefox supports.17:46
grawityrodolfo: Firefox supports HTML, XML, JPEG, PNG, GIF and some other formats. The extension doesn't really matter.17:47
linoobxgrawity: the problem must be here: `acpi -V | tr '\n' '-[#]-' | tr '\t' ' ' | perl -MURI::Escape -lne 'print uri_escape($_)'`17:47
ninjaslimsipior: i come from the BSD world, i used to use FreeBSD but needed Matlab which isn't natively available, but one thing i was used to on FreeBSD was that it just worked, i used to use Gentoo which left a sour taste for Linux17:47
Halitechascheel, according to posts on the forum that card should work without having to compile drivers17:47
paziekwhen I try to start gnome-terminal or xterm on my second display (its same monitor, just using F9 for games :) ), I get this: No protocol specified17:47
rodolfograwity: i'm intrested in open office extensions..i.e. a .doc or .ppt file17:47
ascheelHalitech, I didn't see anything like that, where did you find that?17:47
Polygon89Hello, my computer will not boot up for a filesystem check error. I have run fsck on all partitions and it says all of them are cleaned, and the UUIDs are correct in /etc/fstab....whats going on?17:48
=== unforgiven512 is now known as UNFORGiVEN512
Halitechascheel, http://ubuntuforums.org/showthread.php?t=1197302&highlight=RALINK+2870 ... makes note that the connection maxes out at 54mb17:48
grawityrodolfo: Firefox itself cannot open them -- you would need, for example, either OpenOffice.org Writer or the lighter AbiWord to read Microsoft Word documents.17:48
ascheelHalitech: thanks.  :)17:48
entropyHello, all devs - I have a bass problem, and please note I have two speakers and no subwoofer. The speakers are fully capable of pushing bass. Please see this paste for more info: http://pastebin.ca/152524717:48
aksci_grawity: how do i change from pop to imap? when i select gmail at new account's first option, it asks for the username n straightaway sets server to pop17:49
Halitechascheel, they say they grab the tar file, extracted it and then just did make sudo make install and then rebooted17:49
aksci_would just changing pop.gmail.com to imap.gmail.com work?17:49
oxhey how i can check a file if it's exist since 24 hours? i try find /home -atime +24 (didn't work it give me all files)17:49
Halitechaksci, you would need to change the connection type in gmail as well17:49
_UsUrPeR_!ask _UsUrPeR_17:50
ubottuSorry, I don't know anything about ask _UsUrPeR_17:50
rodolfograwity: ok..and is it possible to browse files like i do with the nautilus?17:50
Qu4R0whow to connect wireless using command line??i try "iwconfig wlan0 essid IMC Mikrotik TR A" but not work :(17:50
grawityrodolfo: file:///17:50
Polygon89Hello, my computer will not boot up for a filesystem check error. I have run fsck on all partitions and it says all of them are cleaned, and the UUIDs are correct in /etc/fstab....whats going on?17:50
ascheelHalitech, thanks.  :)  That's what I thought, but I figured there must've been a step to add it to the modules, but I guess 'make install' handles that17:50
rodolfograwity: ok..let's try17:51
Halitechascheel, yeah, the make install does and the reboot *should* get it loaded on next boot17:52
grawityrodolfo: there's also a firefox-gvfs package that adds support for sftp://, smb://, and other URLs to Firefox -- but I guess file:// is enough at the moment.17:52
ascheelHalitech, i have no problems with a reboot.  :)  Thanks!  Looks like I can't use 2.6.30 kernel.  :)17:52
MuPp3tHello, I've just downloaded a theme for emerald + gtk, I have emerald and beryl, i can get the emerald part installed but cant seem to work out how to do the gtk part17:52
akshayHELLO CAN ANY BODY HELP ME17:52
oxhey how i can check a file if it's exist since 24 hours? i try find /home -atime +24 (didn't work it give me all files)17:53
ascheel!ask | akshay17:53
ubottuakshay: Please don't ask to ask a question, simply ask the question (all on ONE line, so others can read and follow it easily). If anyone knows the answer they will most likely reply. :-)17:53
Qu4R0wakshay: can u just ask..17:53
akshayi have grub prob17:53
aksci_grawity: i'm just changing pop.gmail.com to imap.gmail.com keeping the port same! would it synchronize my already downloaded 3k+ mails?17:53
Polygon89Hello, my computer will not boot up for a filesystem check error. I have run fsck on all partitions and it says all of them are cleaned, and the UUIDs are correct in /etc/fstab....whats going on?17:53
kekekei'm running ubuntu server 9.04 and when trying to install many packages e.g. ia32-libs i get dependancy errors... any know why this is?17:53
firevaiwhats the easiest way to setup a network, so my buddies can dl stuffs from me?17:53
grawityaksci_: Nope. Also, you cannot just change it like that, as Thunderbird will still think it's a POP3 server. The "imap.*" part doesn't mean anything for Tb.17:53
ascheelkekeke: you installing them using dpkg or apt-get?17:53
kekekeapt-get17:53
ascheelkekeke: give the channel a pastebin, please.17:54
victor__hi17:54
grawityaksci_: Just add a new account, choose IMAP, use imap.gmail.com as server, enable SSL... _then_ see if it works for you, and if it does, remove the POP3 account.17:54
kekekeascheel: http://paste.ubuntu.com/251452/17:54
elson_alguém pode me ajudar17:54
jshriverWhat is the /dev name for lpt?17:54
rodolfograwity: mm..seems to work..i'l run through every kind of preference..thank you very much!!17:55
grawityjshriver: parportX17:55
Pici!br | elson_17:55
ubottuelson_: Por favor, use #ubuntu-br para ajuda em português. Obrigado.17:55
jshriverty17:55
oxfind /home/Backup/*.bz2 -ctime +24 ( mean it will print every file with extension .bz2 has been 24 hours stored) right ?17:55
Polygon89Hello, my computer will not boot up for a filesystem check error. I have run fsck on all partitions and it says all of them are cleaned, and the UUIDs are correct in /etc/fstab....whats going on?17:55
elson_#ubutun-br17:55
grawityox: Not really... find /home/Backup/ -name '*.bz2' -ctime +2417:55
ascheelkekeke, sounds like those packages are either experimental or perhaps (maybe?) you don't have some repos enabled?  Beyond that, I can't help you.  :(  Sorry.17:55
grawityox: That one might.17:55
MuPp3tCan anyone help me installing a theme? It's emerald + gtk, comes in two folders, the gtk part just has a lot of folders ie.. arrows, buttons, check-radio, combo etc17:56
MuPp3tno idea how to install it17:56
akshayi have got portable hard drive       ,,,,,,,,,installed ubuntu on it.........successfully it got installed................but only prob is dat my computer shows a grub error 21 when the portable hard drive is not plugged in17:56
oxgrawity thx i though in -name i can't find extension :)17:56
kekekeascheel how do i enable repos?17:56
akshayi have got portable hard drive       ,,,,,,,,,installed ubuntu on it.........successfully it got installed................but only prob is dat my computer shows a grub error 21 when the portable hard drive is not plugged in17:56
elson_alguém pode me ajudar17:56
grawityox: In Linux, the extension is just a part of the name.17:56
rodolfograwity: wow!! firefox is also a media player!!17:56
Halitechaksci, http://mail.google.com/support/bin/answer.py?hl=en&answer=7879917:56
grawityox: (The same in Windows, too.)17:56
akshayi have got portable hard drive       ,,,,,,,,,installed ubuntu on it.........successfully it got installed................but only prob is dat my computer shows a grub error 21 when the portable hard drive is not plugged in17:56
eliotnI am having a problem with eclipse on ubuntu17:56
elson_como faço para falar em português17:57
Halitech!patience17:57
ubottuDon't feel ignored and repeat your question quickly; if nobody knows your answer, nobody will answer you. You can search  https://help.ubuntu.com or http://ubuntuforums.org while you wait.17:57
grawityrodolfo: No, it isn't. It just embeds VLC or Totem or Windows Media Player or Quicktime or whatever the hell it needs to play the file.17:57
MrPiracymy numeric keys stopped working, how can i fix that?17:57
grawityMrPiracy: The ones above letters? Or the numpad?17:57
Halitech!grub | akshay17:57
ubottuakshay: GRUB is the default Ubuntu boot manager. Lost GRUB after installing Windows? See https://help.ubuntu.com/community/RestoreGrub - GRUB how-tos: https://help.ubuntu.com/community/GrubHowto17:57
eliotnI am having a problem with eclipse on ubuntu, the applet doesn't work17:58
strangehey guys i just upgraded from 8.04 to 9.04 but my raid5 seems to not function17:58
strangemdadm --assemble /dev/md0 /dev/sdc1 /dev/sdd1 /dev/sde1 /dev/sdf1 /dev/sdg117:58
strangemdadm: cannot open device /dev/sde1: Device or resource busy17:58
strangemdadm: /dev/sde1 has no superblock - assembly aborted17:58
MrPiracygrawity:  the numpad17:58
FloodBot1strange: Please don't flood, use http://paste.ubuntu.com to paste, don't use Enter as punctuation.17:58
rodolfograwity: ah ok..17:58
larrehIs the desktop version from Ubuntu's download page able to run on the fly off the cd, without installation?17:59
strangeany suggestions?17:59
Lasivianis there any way to save packages to a usb device? I have a computer with no internet access17:59
grawityMrPiracy: Dumb question, but is NumLock on?17:59
eliotn!netbeans17:59
ubottuSorry, I don't know anything about netbeans17:59
=== genii_ is now known as genii
grawityLasivian: http://packages.ubuntu.com/17:59
eliotn!eclipse17:59
ubottuSorry, I don't know anything about eclipse17:59
MrPiracygrawity: yes, tried with on and off17:59
akshayi have got portable hard drive       ,,,,,,,,,installed ubuntu on it.........successfully it got installed................but only prob is dat my computer shows a grub error 21 when the portable hard drive is not plugged in17:59
HalitechLasivian, you can also use aptoncd17:59
akshaypls help me out17:59
vavarmy mplayer is complaining that it cant open /dev/dsp oss stuff and i have no sound. what should i do?17:59
eliotnMy applet manager doesn't work, can someone help me?18:00
MrPiracygrawity: only key that works in that part is NUM LOCK18:00
Lasivianthanks18:00
Halitechakshay, did you look at the link about grub?18:00
buttyCan anyone help explain why my media player cuts out when opening a film but i can play mp3s perfectly18:00
grawityLasivian: Also take a look at /var/cache/apt/archives/ -- there are the ones you already downloaded.18:00
aksci_grawity: so how do i change from pop to imap? my thunderbird, on selecting gmail on the new account, takes pop as default incoming server! how do i change it to imap? and my currently downloaded mails i dont want them to be deleted!18:00
MrPiracyd18:00
Halitechakshay, https://help.ubuntu.com/community/GrubHowto18:00
Bolvadurakshay: you cannot start up a kernel that isnt on the computer -.-18:00
grawityaksci_: Add a normal email account.18:00
Lasiviangrawity: AHH! I had that exact need awhile back, thank you!18:00
vavarakshay: remove the drive from device.map18:00
MrPiracygrawity: oh, and the enter key works too18:00
YosWhat's the proper way to back up and restore if I want to go from wubi to a complete install ?18:01
grawityLasivian: also, apt-get install has a "download only" option, which just puts packages to the cache. (apt-get clean nukes the cache.)18:01
vavarBolvadur: true -.-18:02
Lasiviansweet18:02
mskmy bin directory is missing ? how is it possible ???18:02
Bolvadurvavar: -.- ofc ^-^18:02
MrPiracygrawity: i was messing up with synaptics yesterday. is there any way to list all the apps i installed from it? maybe i installed something i shouldn't have18:03
niadhI'm trying to use ffmpeg to convert a bunch of jpeg images into an avi file using this command ffmpeg -r 12 -i animation%05d.jpg -y -an animation.avi but I am told the avi format is not supported can someone help me find the right package that will support it?18:03
grawityMrPiracy: Synaptic? Click on "Status", then choose "Installed".18:04
grawityMrPiracy: Also, File -> History.18:04
mskmy bin directory is missing ? how is it possible ? how can i replace it ?18:04
Halitechmsk sudo mkdir /bin18:04
Picimsk: Which bin directory?18:04
MrPiracygrawity: ok, thx18:05
mskPici : /bin18:05
Picimsk: And you talking from the computer where it is missing?18:05
mskPici : i seem to get the solution to my "Kernel panic" problem i have : "missing bin directory"18:06
mskPici : i am on Win18:06
lochhello18:06
loch!list18:06
ubottuThis is not a file sharing channel (or network). If you're looking for information about me, type « /msg ubottu !bot »18:06
mskPici : i am getting "Kernel Panic" error whenever i boot...18:07
=== JanC_ is now known as JanC
KeifferHi, I can't change my root password. It sais successfuly change but.. it remembers the old one18:07
MuPp3tHey, I'm trying to install a theme.. The GTK part isn't in a tar.gz format though.. so I'm not sure what to do? Everything I look up seems to think it should be18:07
Picimsk: Its possible that fsck moved files into /lost+found , but if that happened and you're getting a kernel panic your best choice would be to backup /home or your own files and reinstall Ubuntu.18:07
grawityKeiffer: Did you even have a root password?18:07
niadhMuPp3t: What format is it in?18:08
MuPp3tIt's just a folder18:08
Keiffergrawity, i'm so dumb in your eyes?18:08
MuPp3twith more folders18:08
MuPp3tand pngs18:08
MuPp3tetc18:08
mskPici : can i copy bin directory of a Live CD ?18:08
MuPp3tas far as i can tell18:08
niadhMuPp3t: Whats the folder called?18:08
Picimsk: /bin doesn't contain your kernel, if you're getting that error that more than just /bin is messed up.18:08
grawityKeiffer: Ubuntu has root account locked by default, and believe, _many_ have tried to guess it or change it without knowing the old one.18:08
MuPp3tumm, Gaia 09 + Gtk+Emerald/gtk/Gaia 09/gtk-2.018:09
niadhMuPp3t: Coz themes are usually <theme_name>/gtk or metacity or something like that18:09
MuPp3ti've tried putting any of those in18:09
MuPp3tokay18:09
Squyntihey what are the terminals used for from ctrl+alt F1 to ctrl+alt F6 or 7?18:09
=== fusion44_ is now known as fusion44
grawitySquynti: tty1 to tty718:09
mirash I hav installed Windows into sda5 and ubuntu into sda7.But I cant boot Windows18:09
niadhMuPp3t: Ok looking at it18:09
MuPp3tso i've put Gaia 09/gtk-2.0 in18:09
mskPici : how about update my kernel through Live CD ?18:09
grawitySquynti: Technically, there are more - up to tty6318:09
mirashAny experts there?18:09
grawityMuPp3t: How about dragging the entire 'gtk' directory to the Appearance Settings wondow?18:10
Squyntigrawity: right but are they used differently?18:10
niadhMuPp3t: Yup, make that a tar.gz file and try again18:10
khadim.exe for ubuntu18:10
Keiffergrawity, ok, my pass then.. the thing is nor sudo passwd nor passwd can change my pass18:10
Squyntigrawity: how to do that?18:10
MuPp3tokay, i'll try that18:10
mirashI hav been trying this the whole day18:10
gmawhy doesn't sudo source /etc/bash.bashrc when it runs commands?18:10
grawitySquynti: The ones after tty7 are simply not used by default. (They are possible to use though)18:10
niadhMuPp3t: Let me know how it goes18:11
stefgmirash: this is no windows support channel... windows will only boot from a primary partition18:11
YosWhat's the proper way to back up and restore if I want to go from wubi to a complete install ?18:11
grawitygma: Because 1) it isn't sudo's job, it's bash job, and 2) sudo doesn't run bash, it directly execs the command.18:11
Squyntigrawity: when I reach past tty7 it goes back up to windows18:11
SquyntiEr, i mean X18:11
gmagrawity: cheers. (and damn) so where does sudo get it's PATH from?18:11
niadhYos: How do you mean, wanna just back up your documents or you wanna somehow restore the entire system?18:12
grawitySquynti: In the default configuration, tty1-6 are terminal logins, tty7 is X, and the rest are not allocated.18:12
Yakeson_Chihirogood day all18:12
YosSomehow do a complete restore if possible niadh18:12
grawitygma: I have no idea... It may be $PATH, /etc/environment, /etc/login.defs and so on.18:12
msk!hello18:12
ubottuHi! Welcome to #ubuntu!18:12
danny_any apps for the g1 under ubuntu?18:12
MuPp3tgreat, that's worked18:12
MuPp3tthanks very much :)18:12
FluffI think i have video codec problems could anyone help ????18:12
=== Fluff is now known as Guest14026
msk!hello | Yakeson_Chihiro18:13
Yakeson_Chihiroi upgraded a few weeks ago from hardy to jaunty but my ATI card is no longer supported. Everything works fine except that now i got ploygones with games :-/ Any idea please ?18:13
ubottuYakeson_Chihiro: please see above18:13
gmagrawity: okay, ta.18:13
stefg!codecs | fluff18:13
ubottufluff: For multimedia issues, this page has useful information: https://help.ubuntu.com/community/RestrictedFormats - See also https://help.ubuntu.com/9.04/musicvideophotos/C/video.html - But please use free formats if you can: https://help.ubuntu.com/community/FreeFormats18:13
Squyntigrawity: I see that F1 is different from the others... to me it seem like they meant for some its own reason?18:13
niadhYos: Not sure how to do config files, but I know if you open synaptic you can save a package configuration and load that onto another system18:13
rakgeniusi cant hibernate in ubuntu pls help18:13
eliotndoes anyone know a channel that you can talk about java in?18:13
Guest14026I think i have video codec problems could anybody help18:13
danny_any apps for the g1 under ubuntu?18:13
grawitySquynti: tty1 is the first one, which means it is selected on boot (until you or GDM change it).18:13
niadhYos: Best thing you could do is if you have any local config files back them up with your home folder, any global ones you will have to do manually18:13
mrguitarI've got an annoying sound problem on my laptop. Can someone help troubleshoot it?18:13
grawitySquynti: And kernel messages go to the currently selected tty.18:13
mskPici : does updating my Kernel does any help ?18:13
SquyntiGDM?18:13
grawitySquynti: GNOME Display Manager - the app that shows graphical login screen, runs GNOME or whatever, etc.18:14
Squyntigrawity: so tty1 is safe to use?18:14
SquyntiOh ok18:14
grawitySquynti: Yes, all of them are safe to use.18:14
Yosniadh, thanks :D18:14
fasfafasmrguitar: maybe it caused of wireless18:14
Yakeson_Chihirothanks :)18:14
rakgeniusi cant hibernate in ubuntu pls help18:14
eliotnCurious, what channels are there for java?18:14
stefgrakgenius: http://ubuntuforums.org/showthread.php?t=47185518:15
grawitySquynti: There are commands 'openvt' for running bash on an unused tty; 'chvt' for changing ttys; and so on.18:15
grawityeliotn: Probably ##java18:15
Squyntioh ok i see i thought someone said to be caution with tty1 which is other way for F1? Like its used for debugging and what not18:15
eliotngrawity: nope18:15
stefg!intelhda | mrguitar18:15
ubottumrguitar: For fixing your Intel HDA sound this page has useful information https://help.ubuntu.com/community/HdaIntelSoundHowto18:15
mrguitarUbottu: thanks I'll check it out.18:16
ubottuError: I am only a bot, please don't think I'm intelligent :)18:16
grawitySquynti: a little correction... F1 is just the key on your keyboard, which happens to switch to the first tty. The actual things are usually called either consoles, terminals, or ttys. (Sometimes "virtual" ones)18:16
MrPiracygrawity: no, didn't help .... the 5 key opens the popup menu. What could be wrong with it?18:16
ElronMcBongwhat is the correct cpu-type (for gcc as in gcc -march=...) of AMD phenom II processors. I read about athlon64, k8 and amdfam10.. I am not sure18:16
grawitySquynti: Anyway, tty1 is safe to use.18:16
mskstefg : what are the other keywords ubottu can describe at ?18:16
yaaarok, this is really frustrating. i'm in the installer trying to setup my partitions, on a pair of drives that were previously used with software raid1. i want to use raid0 instead now...but the installer won't let me delete the raid devices! says they may be in use...but i already deleted the partitions that were on them. anybody know what's going on here, or how to work around this?18:16
stefg!bot | msk18:16
ubottumsk: Hi! I'm #ubuntu's favorite infobot, you can search my brain yourself at http://ubottu.com/factoids.cgi - Usage info: http://wiki.ubuntu.com/UbuntuBots18:16
Squyntigrawity: Ok thanks. I was searching for the information for that but I seem cannot find it.18:17
yaaaroh sorry, i got those backwards. the drives had been raid0 and i want raid1. still, the problem is the same...18:17
mrguitarlink didn't list my symptoms. Audio works great on my laptop, but only w/ one application at a time. I can't listen to music while playing videos in flash. If I pause rhythmbox or whatever to watch a flash video - I have to close firefox to resume original audio.18:17
stefgmrguitar: you have the pulseaudio blues ...18:18
stefg!dmix | mrguitar18:18
ubottumrguitar: If you're having problems with sound, first ensure ALSA is selected, by double clicking on the volume control, then File -> Change Device (ALSA Mixer). 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 !MP318:18
mrguitar...on every distro. :)18:18
aboyzanyone know if this cron job will run every 4am every day? 0 4 * * * ?18:18
mskstefg : thanks18:19
stefgmrguitar: so your soundchip probably lacks hardware mixinf caps ... read on dmix18:19
mskPici : thanks for info...18:19
yaaaraboyz: looks like you need one more asterisk18:19
yaaaroh my bad18:20
aboyzwhere? yaar??18:20
Frank83Greetings. How do I find out what's my pc's "Domain Name" (For DHCP purposes)18:20
x3cionIs there some way to list some files like with ls and directly past each of em to cat?18:20
yaaaraboyz: no i'm sorry i was wrong, that line is correct18:20
aboyzthanks..18:20
linuxdudeyeah18:20
stefgFrank83: it'S probably 'local'18:21
grawityx3cion: How about just using cat? cat file otherfile dir/*.txt and so on.18:21
grawityFrank83: hostname --fqdn?18:21
ElronMcBongFrank83: I'd guess man hostname18:21
Frank83stefg: Any way to know for sure? Any command or something?18:21
x3cionoh... lol, thansk18:21
x3cionthanks*18:21
MrPiracymy numpad stopped working. the "5" key opens up the popup menu. tried switching numlock on and off, but nothing happens. does anyone have a clue of what it could be/18:21
stefgFrank83: cat /etc/hosts18:22
infinteloopHello I have a user that I want to only have access to there home directory. No view to any other location. How can I do this as most sections have other with read permission18:22
grawityinfinteloop: AppArmor can do this; but it's kind of an insane wish.18:22
peturHello, im looking for a secure way to delete my browser cache.18:22
grawityinfinteloop: The other directories are readable for a reason...18:22
peturMaking it "unrecoverable" with lowlevel tools18:23
petur?18:23
grawitypetur: The program 'shred' could do this... is it Firefox?18:23
peturFirefox, yes18:23
infinteloopWell the main reason I want this is they will only need access to scp a file into a folder18:23
infinteloopThey will not need to actually log into for any other reason18:23
yaaarso, does anybody know why the ubuntu installer won't let me delete my pre-existing raid devices?18:23
Frank83Stefg, Grawity: That gives me my hostname. I am looking for the "domain"18:23
stefgpetur: put it to a ramdisk (i.e. mount a tmpfs)18:23
infinteloopI thought about setting up SFTP but this fold will be on a ERP system I would like to keep the attack surface low.18:24
Frank83Stefg, Grawity: Maybe this will help, since this is what I am trying to do. http://ubuntuforums.org/showthread.php?t=143918:24
grawitypetur: find ~/.mozilla/firefox/*/Cache -exec shred -un 2 "{}" \;18:24
peturThank you18:24
=== FloridaGuy is now known as unclemike
grawityFrank83: Did you run hostname with --fqdn?18:25
grawitypetur: But be very careful with that command...18:25
stefgFrank83: you haven't set any domain i guess .. http://ubuntuforums.org/showthread.php?t=201138 could shed some light on it18:25
Frank83Grawity: I did. Output was "Anastasia" same as running "hostname" with no parameters18:25
peturgrawity: Will do18:25
grawityFrank83: Well then your box doesn't have any hostname.18:25
grawitypetur: ...actually, first try this, just to make sure: find ~/.mozilla/firefox/*/Cache -print18:26
kekekeascheel you're a life saver, i just change my repo list and it works now :)18:26
kekeke<318:26
grawitypetur: If it prints the cache files, add the -exec shred -uzn 2 "{}" \; part18:26
Frank83Grawity: So... If it does not have one, but yet it's connected, it means I don't even need to set one up?18:26
MrPiracyhow do i turn off keyboard acessibility features?18:26
sireno52slm herkeze18:27
peturwhy n218:27
peturn218:27
petur25 overwrites is ok18:27
grawitypetur: Anything more than 4 is pointless.18:27
grawitypetur: Well, maybe 6 or so.18:28
kushal_kumaranMrPiracy: Go to System -> Preferences -> Assistive Technologies.18:28
BersaHi, mates. My system has restarted some time ago. Which log stores info about reason of restarting?18:28
stefgpetur: the problem is that you'll have to know in advance that you want to delete the cache. by putting it on a tmpfs it will be empty on every reboot, and just pulling the plug will make it unrecoverable in case of emergency18:28
Frank83Bersa: I think dmesg18:29
MrPiracykushal_kumaran: thx, i got it working now18:29
grawitysireno52: Umm. Doesn't tmpfs defeat the point of using a file cache completely?18:29
grawityFrank83: dmesg gets reset after rebot18:29
sireno52slm  aranızda turk varmı18:30
Frank83Grawity: Eh. Didn't know that! (Still a learner) So what would work in his case?18:30
dianabolanyone know  how to get the built in web cam for my eeepc 1000h working?18:30
grawityFrank83: Either using shred or similar -- or disabling the file-based cache completely.18:30
Frank83Grawity: Where you learned all this? Is there a page or something to find out all those commands?18:31
dianabolalso i've recently reinstalled ubuntu and i have problems streaming anyone know how to fix that?18:31
JohnTeddyWhere can I stop udev from calling a certain rule in hardy. Where is the file in /etc18:31
grawityFrank83: Not really... more like experimenting, IRC, Google, manpages, experimenting, IRC, experimenting, Google, soft drinks, experimenting...18:32
stefg!udev | JohnTeddy18:32
ubottuSorry, I don't know anything about udev18:32
grawityJohnTeddy: I think they're in /lib/udev18:32
grawityJohnTeddy: But isn't Hardy very old?18:32
stefg!udevrules | JohnTeddy18:32
ubottuSorry, I don't know anything about udevrules18:32
JohnTeddygrawity: But if I modify that, when udev package is updated, it will overwrite my changes.18:33
Frank83Grawity: Will do. I'm kind of new with Linux, just fully migrated 1 month ago.18:33
ascheelkekeke, glad I could be of help.  :)18:33
stefg!udev rules | JohnTeddy18:33
ubottuJohnTeddy: Ever wanted to make your USB-stick /dev/usbstick? Go to http://reactivated.net/writing_udev_rules.html to learn more about this feature.18:33
yaaaris there a way in the ubuntu installer to just tell it to wipe a hard drive before going into the partitioner?18:33
stefg... finally ...18:33
oxhey lil problem regard this : http://pastebin.com/m718a8ff3 everything work fine but when i test number 3 which is internet it reply me the result with 41 times! why?18:33
ox!oups sorry wrong chan18:33
ubottuError: I am only a bot, please don't think I'm intelligent :)18:33
grawityJohnTeddy: Then copy the rule into /etc/udev, with the same name and all, I think that should work.18:33
ScottGI am trying to use some themes that I download. When I get done extracting the themes there are a lot of foldes like Buttons, ScrollBars, etc. Where do I put all these folders to be able to use them with a gnome theme manager?18:34
ElronMcBongwhy is it a cannot do man malloc and stuff? manpages-all package is installed18:35
stefg!themes | ScottG , don't extract them,18:35
ubottuScottG , don't extract them,: Find your themes at: http://www.gnome-look.org - http://art.gnome.org - http://www.kde-look.org - http://kubuntu-art.org - http://themes.freshmeat.net/browse/58/ - http://www.guistyles.com - https://wiki.ubuntu.com/Artwork/ - Also see !changethemes and https://help.ubuntu.com/community/UbuntuEyeCandy18:35
stefg!changethemes | ScottG18:36
ubottuScottG: To change gnome themes: https://help.ubuntu.com/community/UbuntuEyeCandy.  Kubuntu themes: https://help.ubuntu.com/community/CustomizeKubuntu. Xubuntu users should /msg ubottu xfce-themes18:36
albechdoes the ubuntu server package come with command line only?18:36
stefgalbech: yes18:36
Halitechalbech, yes18:36
=== KnowYourRights is now known as KnowYourRights|A
albechthanks18:36
swathanthranis there a channel for localisation18:36
swathanthran?18:36
swathanthran,localisation18:36
swathanthran,l10n18:36
FloodBot1swathanthran: Please don't flood, use http://paste.ubuntu.com to paste, don't use Enter as punctuation.18:36
nanotubeElronMcBong: sudo apt-get install manpages-dev18:36
stefg!orc | swathanthran18:36
ubottuSorry, I don't know anything about orc18:36
stefg!irc | swathanthran18:36
ubottuswathanthran: A list of official Ubuntu IRC channels, as well as IRC clients for Ubuntu, can be found at https://help.ubuntu.com/community/InternetRelayChat - For a general list of !freenode channels, see http://freenode.net/faq.shtml#channellist - See also !Guidelines18:36
outyaaarrgggh18:37
outyhey guys18:37
Jason92hello?18:37
Halitech!hi | Jason9218:37
ubottuJason92: Hi! Welcome to #ubuntu!18:37
lucas_outy,18:37
lucas_are you listening hardcore18:37
outyin ubuntu/kde  when i use firefox/opera to go to facebook its resolving to google or bbc18:37
peturgrawity: thanks for the help18:37
ElronMcBongnanotube: thank you very much18:37
outyit does it in gnome too18:38
nanotubeElronMcBong: np :)18:38
Jason92hi, i would like help with getting ubuntu on my computer18:38
grawityouty: Can you pastebin the output of the command 'dig facebook.com' ?18:38
mrguitarsound fixed!!! Thanks guys!18:38
grawity!pastebin | outy18:38
ubottuouty: pastebin is a service to post multiple-lined texts so you don't flood the channel. Ubuntu pastebin is at  http://paste.ubuntu.com | To post !screenshots use http://tinyurl.com/imagebin | !pastebinit to paste directly from  command line | Make sure you give us the URL for your paste - see also the channel topic18:38
mrguitaroptions snd-hda-intel model=dell-m2118:38
mrguitardid the trick18:38
mrguitardidn't need to add that on 7.04 - 8.1018:38
Jason92hi, i would like help with getting ubuntu on my computer18:38
mrguitaroh well, thanks again18:38
stefgmrguitar: so !intelhda was of some use it seems18:39
grawityJason92: Just ask the question.18:39
Kazammaanyone having problems suspending via lid close on the eee 1000H?18:39
psiborghello, i've got an interesting problem: my pc boots with ata1.01 error messages, it does that even if i boot from the 9.04 live cd instead of from my harddisk (8.10 i think). any ideas what could be wrong or what i should do?18:39
HalitechJason92, http://www.psychocats.net/ubuntu/index.php18:39
icaruswhat am i doing wrong? W: GPG error: http://archive.getdeb.net jaunty-getdeb Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY A8A515F046D7E7CF18:39
Jason92i just backed up my data, whats the next step?18:39
icarusW: GPG error: http://ppa.launchpad.net jaunty Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY A6DCF7707EBC211F18:39
mrguitarstefg: I'm a noob what does !intelhda refer to? Not intelhda? :)18:39
stefgpsiborg: obtain a working harddisk ? :-\18:39
psiborggreat, but i just want to boot a cd...18:40
psiborgwhy doesn't that work?18:40
albechanyone running ubuntu server as Dom0?18:40
outyok i also did a dig for google18:40
stefgmrguitar: it's the factoid the bot gave you18:40
Halitechicarus, you need to install their public key18:40
outyhttp://paste.ubuntu.com/251504/18:40
grawityicarus: Ubuntu checks if packages weren't corrupted or tampered with by checking their digital signatures; to do that, you need to import the public keys to apr.18:40
grawityicarus: sudo apt-key adv --recv-keys --keyserver pool.sks-keyservers.net A6DCF7707EBC211F18:41
rawfaelhow can i mount ntfs partition... i give an error18:41
stefgpsiborg: a broken harddisk often affects the whole bus. See if you can boot from CD if you physically disconnect the harddisk18:41
todorrawfael First sudo fdisk -l18:41
icarusgrawity, who's public key?18:41
mrguitarah very cool. yes it was :)18:41
yaaardoes anybody around here know why the ubuntu installer won't let me delete my pre-existing raid devices!?18:42
grawityicarus: Whoever made and signed those packages you are trying to install.18:42
psiborgokay, that's something i've been thinking of, thanks stefg :) the dvd drive is on a separate ide channel though... should that matter?18:42
Halitechicarus, according to your error message, you need to install the key from getdeb.net18:42
todorrawfael then mount /dev/xxx -t ntfs /mountpoint18:42
kekekeguys, is it ok if i install programs into /usr/local/ or is that a directory i shouldn't mess around with?18:42
stefgpsiborg: actually that should isolate the broken hd... but you never know. I'd try disconnecting18:42
ElementalistI have a quick question, if anyone would be kind enough to answer. I'm running the Ubuntu Netbook Remix 9.04 Live on an EeePC 900, using a 2 GB SD card in the SD slot. The interface is INCREDIBLY laggy, I'm wondering if actually installing it to the main drive will clear up the interface lag issues. Visual effects are already set to 'None'.18:43
grawitykekeke: /usr/local/bin/ is where you should install your programs, yes.18:43
kekekeoh kk thanks18:43
icarusgrawity, you command appears to of worked18:43
Frank83Jason92, What you want to do? Install Ubuntu for 1st time?18:43
icarusthank you18:43
kekekealso, if i wanted to make a publicly accessible ftp directory, where is a 'suitable' place to have that?18:43
NoMS_Elementalist, it should.  SD cards are fairly slow18:43
grawitykekeke: As in anonymous FTP?18:43
HalitechJason92, did you look at the link I provided for you?18:43
kekekegrawity sorry i actually meant one with user accounts18:44
ElementalistAlrighty, thanks. Hope so, I've only got this netbook, no external CD drive or other flashdisks, so if this goes wrong, I could be in trouble. xD Guess I'll find out in a bit. Thanks for the answer.18:44
Jason92yea, im looking at it now18:44
rawfaeltodor: i geting error18:44
rawfaeli use live cd18:44
HalitechJason92, in the upper left are different options on installing, select the 1 you want and follow the instructions18:45
grawitykekeke: If you want one shared directory for all accounts -- /var/ftp, maybe. (It isn't that much important.)18:45
kekekeok thanks dude18:45
NoMS_Elementalist:  I think you can reset that computer as long as you don't delete the partition that information is on....  I do not have one myself, so I can't be sure18:45
CapoochinoAre there many Negroes that use Ubuntu, despite its diverse name?18:45
Frank83Halitech, That page you gave Jason92 is awesome, I didn't know of it existence.18:45
user101 /msg nickserv identify mydear18:45
=== rudy_ is now known as Guest9770
outyCapoochino,  there is an ubuntu distro made by african americans18:46
outyi forget its name18:46
CapoochinoI love to use Ubuntu, but I am afraid that it is too hard to use for most nignogs18:46
HalitechFrank83, one of the first pages I found when I changed over and it has saved my hide a few times so I keep it bookmarked and close by at all times :)18:46
=== user101 is now known as user10
=== Guest9770 is now known as rudyy
grawityCapoochino: Define "nignogs".18:46
CapoochinoSince their bell curve is centered on an IQ of 8018:46
outylol dude thats harsh18:46
Capoochinoreferring to the typical black person18:46
fumblnoobwow you are ignorant18:47
HalitechCapoochino, what does the color of a persons skin, their sex or anything else have to do with if they can use ubuntu?18:47
rawfaeltodor: i cant mount the windows partition ntfs18:47
rawfaeli getting error18:47
CapoochinoHalitech there is much more to race than the color of skin18:47
rawfaelcan you help me?18:47
Capoochinofor example propensity for sickle cell18:47
Capoochinobrain size18:47
Capoochinohair texture18:48
Capoochinobody structure18:48
HalitechCapoochino, so you are saying people of African descent are stupid?18:48
Capoochinohence most negroes are too dense in mass to swim18:48
Capoochinonot all18:48
Capoochinosome are rather smart18:48
Capoochinobut on average they are18:48
Squyntirawfe: i do have that same problem and lookin for that answer as well...18:48
Frank83Halitech: Wish I could share your luck. 1st error I made with ubuntu was to "chroot /" Imagine what that did to me.18:48
Squyntiraw: is the windows set on dyamic?18:48
grawity!ot | Capoochino18:49
ubottuCapoochino: #ubuntu is the Ubuntu support channel, for all Ubuntu-related support questions. Please use #ubuntu-offtopic for other topics. Thanks!18:49
Capoochinook18:49
MarkGHi, I can't seem to find webmin package in Ubuntu..   Is there a reason?18:49
Capoochinobut is there any kind of demographic study for Ubuntu usage?18:49
HalitechCapoochino, not to dispute your 'findings' but pretty well all of the colored people I know are smarter then the average white person I know18:49
stefg!webmin | MarkG18:49
ubottuMarkG: webmin is no longer supported in Debian and Ubuntu. It is not compatible with the way that Ubuntu packages handle configuration files, and is likely to cause unexpected issues with your system. See !ebox instead.18:49
Halitech!webmin | MarkG18:49
javauser123how do i monitor cpu temps thru a live ubuntu session?18:49
stefg:-)18:49
jan__spricht  auch einer deutsch ?18:49
javauser123i tried 'lm-sensors' but i think it wants a reboot18:49
NoMS_Halitech, wow, you need to get to the hood!  :)18:49
Halitech!de | jan__18:49
ubottujan__: In den meisten ubuntu-Kanälen wird nur Englisch gesprochen. Für deutschsprachige Hilfe besuchen Sie bitte #ubuntu-de, #kubuntu-de, #edubuntu-de oder #ubuntu-at. Geben Sie einfach /join #ubuntu-de ein! Danke für Ihr Verständnis.18:49
Capoochino!ops | Halitech  Racist troll against white people.18:50
ubottuHalitech  Racist troll against white people.: Help! Channel emergency! (ONLY use this trigger in emergencies) - Mez, , elky,  imbrandon, DBO, gnomefreak, Hobbsee, rob, Madpilot, CarlK, crimsun, ajmitch, tritium, Nalioth, thoreauputic, apokryphos, tonyyarusso,  PriceChild, Amaranth, jrib, jenda, nixternal, Myrtti, mneptok, Pici, Jack_Sparrow, nickrud, jpds, bazhang, jussi01, Flannel or ikonia!18:50
HalitechNoMS_, I live in the hood18:50
rawfaelmount is denied because ntfs is marked to be in use18:50
Squyntirawfael: is the windows set on dyamic?18:50
MarkG!ebox18:50
ubottuebox is a web-based GUI interface for administering a server. It is designed to work with Ubuntu/Debian style configuration management. See https://help.ubuntu.com/community/eBox18:50
Capoochino!ops | Halitech Racist troll against Mexicans and Whites18:50
ubottuHalitech Racist troll against Mexicans and Whites: Help! Channel emergency! (ONLY use this trigger in emergencies) - Mez, , elky,  imbrandon, DBO, gnomefreak, Hobbsee, rob, Madpilot, CarlK, crimsun, ajmitch, tritium, Nalioth, thoreauputic, apokryphos, tonyyarusso,  PriceChild, Amaranth, jrib, jenda, nixternal, Myrtti, mneptok, Pici, Jack_Sparrow, nickrud, jpds, bazhang, jussi01, Flannel or ikonia!18:50
grawity!ops | Capoochino !ops abuser.18:50
ubottuCapoochino !ops abuser.: Help! Channel emergency! (ONLY use this trigger in emergencies) - Mez, , elky,  imbrandon, DBO, gnomefreak, Hobbsee, rob, Madpilot, CarlK, crimsun, ajmitch, tritium, Nalioth, thoreauputic, apokryphos, tonyyarusso,  PriceChild, Amaranth, jrib, jenda, nixternal, Myrtti, mneptok, Pici, Jack_Sparrow, nickrud, jpds, bazhang, jussi01, Flannel or ikonia!18:50
rawfaelsquidly: i get "mount is denied because ntfs is marked to be in use"18:50
Squyntirawfael: i do have that same problem and lookin for that answer as well...18:50
* grawity hides.18:50
NoMS_so back to ubuntu....18:50
HalitechFrank83, oopppps, big no no with doing that ~L~18:51
bullgard4What Ubuntu program allows to edit the 'Properties' (= 'tags'?) of a .jpg file which Nautilus can show?18:51
Squyntirawfael: oh i see, hm mine says that i do not have a privelige to mount this volume18:51
capslock286Why is any Ubuntu-dist slow on the Lenovo S10e? :-( This is the only user-friendly dist which easily can be installed via usb. Thankful for comments/response/help getting it to work smooth :-)18:52
stefgcapslock286: 512MB ... and the superslox SSD18:53
NoMS_bullgard4:  I have seen something called photobuntu or something like that.  It is supposed to write metadata, but I have never used it personally18:53
MarkGgrr, I hate opensource documentation, it's never upto date...  http://pastebin.com/m6d4500d618:53
MarkGHow they ever hope to attract new users...18:54
stefgMarkG: if you're going to set up a file-server you're better off with 8.04 (hardy). ebox' stable version is targeted at that18:54
HalitechMarkG, by promising them dual booting and then killing their windows install forcing them to stick with linux ;)18:55
FlannelMarkG: That line is a line for your sources.list, it isn't a command.18:55
maad10hi18:56
psiborgafter going wonky on ata errors the live cd has now booted btw18:56
Frank83Halitech Sometimes that has nasty consequences, some can not withstand the change.18:56
psiborgdidnt get to removing the hd yet :)18:56
stefg!pm > capslock28618:56
ubottucapslock286, please see my private message18:56
HalitechFrank83, I know, change is not for everyone but we have to start somewhere18:57
rawfaelsquidly: i use -o force and it works18:57
capslock286thank you stefg. I18:57
capslock286 will keep that in mind in the future :-)18:58
MarkGI don't have much choice, my Sheevaplug shipped with 9.04 jaunty minimal intstall.18:58
stefgcapslock286: you can try easypeasy ... a netbook optimized edition of ubuntu18:58
Frank83Halitech, I was forced by useless antivirus, mind squeezing defragmentation, psychotic formating every 6 months, not to mention blue screen of neurotic panic.18:59
Squyntirawfael: you might wanna check up on the nick spelling and how'd you do that?18:59
emiliohow I edit my grub options18:59
jdahmlibnotify has this annoying quack or so when I adjust volume, is there a way to get rid of this sound?  I tried everything under preferences->sound.  The forums don't list anything either18:59
kekekelol18:59
stefgcapslock286: http://www.geteasypeasy.com/18:59
HalitechFrank83, I did it for the same reasons, I was one of the few that went cold turkey with no backup system18:59
capslock286thnx stefg. The problem is that I have already tested that one and it is based on 8.4 and not 9.0418:59
ejvhow do they hope to attract new users? really? don't blame your lack of proficiency/understanding of linux on the community or our documentation.  FYI ubuntu has some of the most plentiful docs you will ever see. Don't troll.19:00
rawfaelsquidly: i am from brazil... i cant speak english very much19:00
Frank83Halitech, Same here.19:00
kekekeif i do apt-get install kubuntu-desktop will it automatically install the 64bit edition (as long as my processor is 64bit)?19:00
lb_!pt | rawfael19:00
ubotturawfael: Por favor, use #ubuntu-br para ajuda em português. Para a comunidade local portuguêsa, #ubuntu-pt. Obrigado.19:00
macokekeke: if your current ubuntu is 64bit, yes19:00
kekekeok thanks19:00
Halitechkekeke, if you currently have a 64bit version installed yes19:00
Squyntirawfael: ok what did you not understand me?19:00
kekekety19:00
NoMS_same here.  Not real crazy about windows, but I have adobe premiere and Encore DVD which unfortunately will not run on wine....  So, I have another drive w/ windows on it :(19:01
stefgcapslock286: the secret lies in disabling all unneeded services, putting /tmp to a tmpfs and (possibly) using a netbook specific kernel  www.array.org19:01
grawitystefg: isn't /tmp a tmpfs by default?19:01
Experantoexcuse me.. is there an italian channel?19:01
Frank83NoMS_, You tried Crossover with that?19:01
Halitech!it | Experanto19:02
ubottuExperanto: Vai su #ubuntu-it se vuoi parlare in italiano, in questo canale usiamo solo l'inglese. Grazie! (click col tasto destro sul nome del canale per entrare)19:02
stefggrawity: no.... discussions are still going on...19:02
ejvgrawity: no19:02
MarkGthis document is plagued with problems: https://help.ubuntu.com/community/eBox19:02
stefggrawity: that's the PITA in open source ... too many people with attitude :-)19:02
NoMS_no, I don't use it as frequently as I did when I bought it, so it's ok.  If I need to do some editing, I just swap out my drives and reboot...  But I'll look into it I guess.  It's only about $50 isnt it?19:02
MarkGW: Failed to fetch http://ppa.launchpad.net/ebox/ubuntu/dists/hardy/main/binary-armel/Packages  404 Not Found19:02
capslock286stefg. thank you for this. However, I am a casual user who migrated from Windows to use OSX because of all the hassle Windoze provided. now. Linux is not easier, however, far more stable and far more harmonized with OSX. Not even Netbook Remix runs smoothly on my Lenovo-netbook, though, so I19:03
capslock286am quite "desperate" for as user-friendly advice as possible.19:03
Frank83NoMS_, Yes, I think it if (I don't use it) but check it it will run it properly before you buy the license.19:03
NoMS_thanks frank19:03
Frank83If not, look at your Win drive as the "Necessary evil"19:04
cake-linuxis virtualbox non free in the ubuntu repo's19:04
cake-linux?19:04
stefgcapslock286: i have 5 S10e 's at the running ubuntu at my work ... the low-ram / 4 GB linux version. They run just fine19:04
alankila_I seem to have trouble with java sound since the latest karmic update, I think it broke this morning. All pulseaudio-based audio seems to work fine, but java apps are stubbornly silent. Any quick recipe for solution?19:04
emiliohow i can edit my grub boot list19:05
MaT-dg1cake-linux: no, but u can add the repo's from sun19:05
cake-linuxawesome thanks19:05
NoMS_yeah, no kidding....  It pretty much sits on a shelf.  Crossover will not run it either...19:05
Frank83Emilio, You will need to edit /boot/grub/menu.lst19:05
mbeierlemilio: in it's most raw format: gksu gedit /boot/grub/menu.lst19:05
capslock286Thnx Stefg. The thing is, I want it to run as smootlhy as Windows Xp ran on this machine (minus the crashes, of course ;-) )19:05
geirha!grub | emilio, I recommend reading the Grub Howto first19:06
ubottuemilio, I recommend reading the Grub Howto first: GRUB is the default Ubuntu boot manager. Lost GRUB after installing Windows? See https://help.ubuntu.com/community/RestoreGrub - GRUB how-tos: https://help.ubuntu.com/community/GrubHowto19:06
ericGcapslock286: it could be running slow because of the Intel GMA 950 graphics chipset it uses; I had that issue with my Eee. See http://ubuntuforums.org/showthread.php?t=113058219:06
Frank83Emilio, You can also check this link: http://www.psychocats.net/ubuntu/startupmanager . Thank Halitech for it. :-P19:06
kannan_02is there a turbo c compiler for linux19:06
stefgcapslock286: windows is an 8 yr old OS, designed for P III'S at 500 MHz. you can make ubuntu run that quick, but it takes a bit of tweaking19:06
Frank83NoMS_ That's a bummer.19:06
emiliook i already open d file19:06
emiliothanks all19:07
grawitykannan_02: There is a C compiler (gcc).19:07
kannan_02those header files conio.h are not in gcc ..19:07
Frank83emilio, Make a backup! It's not good to mess up too much with it. (Believe me, I know)19:07
sam_hey can someone help me get adobe flash player to work?19:07
capslock286eric6: I thought so too. The system doesn19:07
geirhakannan_02: conio.h is dos specific19:07
geirhakannan_02: In linux we use ncurses19:07
Frank83Sam_ You need help using flash on Firefox?19:08
kannan_02ncurses?19:08
Halitechcapslock286, have you thought about Debian with either xfce or lxde?19:08
grawitykannan_02: Is it a program you wrote?19:08
emiliook19:08
sam_Frank83, thanks for responding, yes19:08
emilioexit19:08
capslock286t feel slow as such, but browsing on the desktop and having it to do regular tasks, is a pain. meanwhile, the flashy game World OF Goo runs flawlessly!!!!!19:08
Frank83sam_, If you have ubuntu 64, there is a really easy way.19:08
haushaI can't decimals when using normal math in bash19:08
kannan_02which one?19:08
capslock286It looks as it takes better advantage of the graphic capabilities than XFCE, does :-(19:09
sam_Frank83, I have the newest version of Ubuntu whatever it is19:09
grawitysam_: Ubuntu Jaunty (9.04)?19:09
sam_Frank83, yep19:09
Frank83sam_ Okay, Is it x32 or AMD64?19:09
sam_grawity, yep19:09
capslock286I have never managed to install debian, though I have tried. I get something with bad kernel, or such when trying to boot after net-install19:09
sam_Its on a 32bit computer not 64 if thats what you mean19:09
Halitechcapslock286, try the instructions here http://forums.debian.net/viewtopic.php?t=2656619:10
geirhakannan_02: You want libncurses-<version>-dev. Search for "ncurses howto" on google for information on how to use it.19:10
Frank83Sam_ I know an easy way that works with X64 PCs, but I don't know and wouldn't dare to suggest it on a X32 one.19:10
Frank83Sam_ Hang on, I'll see if I can find something out.19:11
sam_Frank83, okay thanks alot19:11
Halitechcapslock286, there is also a full cd you can download http://cdimage.debian.org/debian-cd/5.0.2/i386/iso-cd/debian-502-i386-xfce+lxde-CD-1.iso19:11
kannan_02geirha:tnx19:11
sam_Frank83, ive been searching through the Ubuntu forums but no success on their solutions19:11
capslock286that looks gr8, man. the problem is, though: I don19:11
capslock286t have an optical drive19:12
MarkGok, so ebox seems impossible to install on ARM Ubuntu, what other options to I have?   How badly broken is webmin? Is it as broken as ebox documentation and packages are for ebox?19:12
grawitycapslock286: Boot from USB, then?19:12
capslock286Only by USB. I have always wanted to find a img-file of a DEBIAN, dist19:12
Halitechcapslock286, bummer .... what about unetbootin to do the install?19:12
capslock286grawity: I have tried. I have also managed to install through net-install the DEBIAN (not UBUNT)-system, but the kernel gets corrupt19:13
grawityHalitech: Does unetbootin just copy the iso and make the USB bootable - or does it create a complete LiveUSB system?19:13
grawityWait, that made no sense anyway.19:13
grawityNvm19:13
Halitechgrawity, I think it will make it bootable19:14
capslock286I have used Unetbootin to make a boot-disk of DEBIAN Lenny, and have started the install-process, but a up-and-running system installed on HDD is not possible. Tried twice19:14
Frank83Sam_ Okay, let's try this one.19:14
sam_Frank83, ok19:14
capslock286Unetbootin makes UBUNTU-derivatives bootable flawlessly, but with Debian, it is harder.19:14
grawitycapslock286: But Ubuntu is a Debian-derivative anyway.19:15
Frank83Sam_ Assuming you've installed flash, gnarl, or similars, you'll 1st need to remove them.19:15
sam_Frank83, ok19:15
bullgard4stefg: Following some remarks of you, I installed Chatzilla and begin to like it. How can I permutate the order in which the channels are displayed on the last but one line19:15
sauluswhen I write large files my whole system stalles. I have to pull the plug to restart. Any Idea why? I transfer them from a sata sw raid 0 to a local ide HDD running ext319:15
capslock286yes, I know. But I am talking about the "clean" Debian Lenny-system.19:15
Frank83Sam_ This command will help with that "sudo apt-get remove --purge swfdec-mozilla swfdec-gnome mozilla-plugin-gnash gnash"19:15
testiI have a HTC Hero mobilephone with android OS. I used to connect to the internet with ubuntu through a nokia e51, but with my new phone the network assistant for mobile devices doesn't pop up nor is the phone displayed in the network manager. How do I get this to work?19:16
capslock286I suppose it will work somewhat faster on my machine, though with greater hassle getting broadcom wlan to work, and so on.19:16
sam_Frank83, ok they were removed19:16
Elliot_hi everyone19:16
adrian__witam jest tu kanal czestochowa?19:17
capslock286testi: Android-phones by HTC have tethering disabled by default, from what I know, but there are work-arounds.19:17
Elliot_I need some help with my display19:17
Frank83Sam_ Then, we download the Flashplayer directly from the source page: http://download.macromedia.com/pub/labs/flashplayer10/libflashplayer-10.0.22.87.linux-x86_64.so.tar.gz19:17
viki27Hello, i would like to play this weekend lottery game and i got new idea to try to get my numbers from the net. if someone would like to help.. write me 6 numbers between 1-37 and more one number between 1-8 thanks for your help :)19:17
sam_Frank83, do I open with archive manager?19:17
capslock286Unfortunately, U.S-cell-operators are not that keen on having their customers surfing using their mobile as a modem. It is a different overall approach to this in Scandinavia, though.19:18
testiCaplain: tethering? Workarounds? What should I search the internet for?19:18
Frank83Sam_ Better save it. It's not a big file. Just 1 file inside.19:18
oldude67!ot | viki2719:18
ubottuviki27: #ubuntu is the Ubuntu support channel, for all Ubuntu-related support questions. Please use #ubuntu-offtopic for other topics. Thanks!19:18
mazda01does anyone know how to find out the commands within the context menu of nautilus? wanting to know what exactly gets run when I click on Extract Here?19:18
Frank83Sam_ You found the file "libflashplayer.so" inside?19:19
sam_Frank83 Okay saved it and extracted that file19:19
sam_Frank83 yea19:19
capslock286testi: So the problem doesn19:19
faryshta#gnewsense19:19
capslock286doesnt lie on computer-system. but on the phone.19:19
testioops s/Caplain/capslock28619:19
=== Sitowlan is now known as Sitowlan2
=== Sitowlan2 is now known as Sitowlan
mebaran151how do I change the default soundcard in Ubuntu19:20
Frank83Sam_ You then need to place that file in ~/.mozilla/plugins19:20
mebaran151I want to output all my sound out the hdmi, and then be able to switch on demand19:20
mebaran151aplay finds the card19:20
Lord-ReadmanHello, Im on 9.10 because I wanted to help test it but Im unsure what to try?19:20
sam_Frank83, oh yea I never really understood how to find folders like that19:21
stefg!karmic | Lord-Readman19:21
ubottuLord-Readman: Karmic Koala is the codename for Ubuntu 9.10, due October 2009 - Karmic WILL break - Discussion and support in #ubuntu+119:21
sam_Frank83, it seems a little different from windows I'm used to19:21
oldude67Lord-Readman, #ubuntu+1 please19:21
Frank83Sam_ Okay, here's the easy way. Go to "Places -> Home Folder"19:21
sam_Frank83 ok19:21
Frank83Sam_ In there, Press "Ctrl + H" This will show the Hidden files and folders19:22
Frank83Sam_, Did that work?19:22
sam_Frank83 o19:22
sam_Frank83 yep19:22
Frank83Sam_ Then locate ".mozilla" -> plugins19:23
Frank83Sam_ If the "plugins" folder does not exist, create it.19:23
sam_Frank83 ok made it19:23
Frank83Sam_ To finish, move the .so file to that folder.19:24
sam_Frank83 ok all done19:24
Frank83It should be like this at last *Yourusername*/.mozilla/plugins/libflashplayer.so19:24
mazda01does anyone know how to find out the commands within the context menu of nautilus? wanting to know what exactly gets run when I click on Extract Here?19:25
Frank83Sam_, fire up good old mozilla and see if it works.19:25
sam_Frank83, just tested it, it works!19:25
sam_Frank83, thanks alot19:25
Frank83Sam_ Welcome. Go and enjoy some Youtube.19:25
f0sterhi, I'm trying to install ATI drivers, when I run lsmod I do not see anything about "ati", just video, also, the xorg.conf looks rather useful, where does all of this configuration take place on ubuntu ?19:26
Frank83Woohoo <-- Finally able to solve someone's problem within ubuntu.19:26
Halitechf0ster, what is the output of lspci | grep video19:26
hdonHello all! How may I convince RhythmBox to open a music CD disc image that I made using Disc Copier? (The image produced includes a TOC file)19:27
Halitechf0ster, lspci | grep vga19:27
mazda01does anyone know how to find out the commands within the context menu of nautilus? wanting to know what exactly gets run when I click on Extract Here?19:27
ScottGCould someone explain to me how I install custom themes? I have just found guides saying "drag the theme into the Appearance Properties window" but I don't have any theme file to drag.19:28
Halitechf0ster, sorry, confused myself for a minute19:28
Frank83See you later guys. Take care19:28
yadu`hi all, my openoffice apps have their fonts messed up . I have a screenshot attached , someone please help -->  http://tinypic.com/m/5b8akz/419:28
f0sterHailtech: my video card shows up on lspci19:28
Jeruvyhdon: if its a true image, simply mount it, then point rythmbox at the new mount.19:28
PiciScottG: Well, what theme are you trying to install and where did you get it?19:28
PiciScottG: Or rather, what file do you have?19:28
f0sterthat doesnt mean that its drivers are properly loaded though Halitech19:28
f0sterHalitech: but yeah it shows up when i run lspci19:29
Halitechf0ster, I know that, I want to know what card we are dealing with19:29
f0steroh, x60019:29
f0sterradeon19:29
Halitechf0ster, 8.10 or 9.04?19:30
James192345Hi, I just installed the nvidia drivers for my PNY NVIDIA 7600 GS, and restarted only to be greeted by a black screen. Anyone know how I can fix this. Ctrl+Alt+F1 doesnt work.19:31
mazda01ScottG, you need to download a complete them from somewhere19:31
f0sterHalitech: 9.0419:31
Halitechf0ster, welcome to the world of no proprietary drivers, ati dropped support for that card as of Catalyst 9.3 which stopped working in 8.019:32
=== taunt is now known as Ky|e
MrPiracyhow can i install my webcam? it's a random Multilaser one19:32
Halitech*8.1019:32
mazda01James192345, your computer is totally booted up? why not boot again but enter the grub menu by hitting the escape button. then boot up a recvoery session or failsafe session19:32
f0sterHalitech: well the frustrating thing is i don't understand how to specify any driver for X with ubuntu19:33
f0sterits configuring it somewhere other than the xorg.conf, and it doesnt say where19:33
mazda01f0ster, you edit xorg.conf19:33
Halitechf0ster, basically what you have is what you got, there is no driver you can use19:33
hdonI do not believe an Audio CD contains a Filesystem Image. I do not believe Linux mounts any filesystem as a predicate to playing an Audio CD (attn Jeruvy)19:33
aaaa```i want to make a file sharing website on LAN.. what should I use?19:33
Halitechf0ster, if there is nothing in System - Admin - hardware drivers then you have nothing to install19:34
f0stermazda01: why does the xorg.conf not have any of the settings that X is already configured with19:34
ninjaslimwhich desktop effects in compiz are enabled by default in Ubuntu with the extra settings19:34
mazda01Halitech, what are you talking about? you can configure any driver you want it just have to be right for your hardware.19:34
Halitechf0ster, xorg 'automagically' configures most things now19:35
hdonJeruvy: What filesystem type (as in the -t argument to mount) do you think an Audio CD might require?19:35
f0sterHalitech: maybe the hacked up crappy version of x for ubuntu19:35
f0sterthis is why I don't run ubuntu, i just have it already installed on a computer at work19:35
f0sterpardon my frustration19:36
Halitechmazda01, and the right version for the software you have installed19:36
mazda01f0ster, paste your /etc/X11/xorg.conf file. are you even in a gui? you should be able to use hardware drivers if you're using nvidia19:36
Halitechf0ster, I understand, I have an ati x1200 which was dropped as well19:36
Halitechf0ster, and I use Debian so its not just Ubuntu that does it19:36
f0stermazda01: well I have a radeon x600 card19:36
f0sterI've found some catalyst drivers that are apparently compatible with 8.04, surely these must be better than the "automagicconfigured" x display drivers?19:37
hdonHello again everyone. How may I extract the full gstreamer pipeline used by RhythmBox when it "extracts" music from my Audio CD?19:37
f0sterI have ati selected in synpatic, but I'm curious where its actually telling xorg to use these drivers, since xorg.conf doesn't say anything19:37
f0sterit has no driver line under device, just a title19:37
mazda01f0ster, well, you'll haev to check out some guides for your card then. i am not familar with setting up ati cards.19:37
Halitechf0ster, no because the version of X is newer in 9.04 and they don't work (trust me, I've tried and hosed my system numerous times trying)19:37
_AleX_hi all! howto pbuild ubuntu packages from a debian lenny ? it's possible ?19:38
f0sterHalitech: well say since ati is selected in synaptic, how can I tell what display driver x is using?19:38
mazda01f0ster, http://ubuntuforums.org/showthread.php?t=116552219:38
Halitechf0ster, what package is it listing?19:38
yadu`hi all, my openoffice apps have their fonts messed up . I have a screenshot attached , someone please help -->  http://tinypic.com/m/5b8akz/4   anyone?? any clue at all ??19:39
victor__hi19:39
_AleX_ceboostrap fails with : "E: Unknown suite jaunty" ... I've copied /usr/share/deboostrap/scripts/jaunty from an ubuntu, nothing change ... any idea ?19:40
Paulo39hi people, i have a question: i have ubuntu with gnome, then i installed kde and now i can choose which environment to start. i have some apps to run automatically on start-up. the question is that i want some apps to run automatically just when i start gnome, and no when i start kde... can you tell me how can i configure it out?19:40
f0sterHalitech: xserver-xorg-video-ati, and radeon19:40
Halitechf0ster, thats the open source drivers19:41
zachguys, I Have Xubuntu 9.04 - where do I get java?19:41
shreymechi did : shreyansh@shreyansh-laptop:~$ sudo apt-get install libglib2.0-dev19:41
shreymechReading package lists... Done19:41
shreymechBuilding dependency tree19:41
shreymechReading state information... Done19:41
shreymechlibglib2.0-dev is already the newest version.19:41
FloodBot1shreymech: Please don't flood, use http://paste.ubuntu.com to paste, don't use Enter as punctuation.19:41
shreymechlibglib2.0-dev set to manually installed.19:41
shreymechplzzz19:42
mistermattif I were to install ubuntu while running it in a virtual machine - it would install to the virtual disk that I assigned to it, no?19:42
grawityIt would19:43
mistermattnice19:43
mizipzorim having some troubles with my graphics driver... are alternatives in the package repository? or is my best bet to compile the free ones from source?19:43
grawitymizipzor: When running in a VM, Ubuntu, just like any other OS, can only access those resources that you assign.19:43
grawityer, mistermatt: ^19:43
jerndoehi, is it possible to run the setup to re-configure (user, computername, keyboard etc.) without installing the whole system again19:43
cmwalkerhow do i force an 'app' into the usr/bin folder?19:43
mizipzorcmwalker: copy it there?19:44
shreymechhttp://paste.ubuntu.com/251538/   please look in this and plzz tell me that is it okkkk to remove the packages which r shown to be removed19:44
=== supreme is now known as coordinador
alessandro_hi19:44
Stanleyz000Hi19:44
cmwalkermizipzor: i cant just drag and drop.19:44
Stanleyz000Can someone19:44
Stanleyz000help me with installing19:44
Stanleyz000ubuntu to a memory stick19:44
burkmat!ask | Stanleyz00019:44
ubottuStanleyz000: Please don't ask to ask a question, simply ask the question (all on ONE line, so others can read and follow it easily). If anyone knows the answer they will most likely reply. :-)19:44
jrtaylorivIs there any way for me to choose to install packages that are compiled w/ the gcc flags -march=core2, rather than i686?19:44
mizipzorStanleyz000: if you stop spamming your enter key ;)19:45
Stanleyz000Can someone help me with installing ubuntu to a memory stick?19:45
Linux^Warriorhello all, anyone ever use old ubuntu 2.x :P19:45
shreymechhttp://paste.ubuntu.com/251538/   please look in this and plzz tell me that is it okkkk to remove the packages which r shown to be removed19:45
mizipzorcmwalker: yea, you probably need sudo to place things there19:45
doubledamacan someone help me with my CIS homework19:45
cmwalkermizipzor: how do i do that?19:45
trismshreymech: it is fine to remove those if you aren't using them anymore19:45
neglesaksI'm happy to say that i've reached ratio 40 on seeding karmic alpha 3 and will seed the next karmic in 2 days when it's out :)19:45
Linux^Warriorwhat version of ubuntu you using stanley19:45
shreymechplease can anyone tell me that is it safe to remove the packages shown here     http://paste.ubuntu.com/251538/19:45
Halitechcmwalker, gksudo nautilus19:45
burkmatStanleyz000: What operating system are you running?19:46
Stanleyz000Vista atm19:46
mizipzorcmwalker: sudo cp app_to_be_copied /usr/bin19:46
shreymechhey but actually my terminal is saying that... i don know i will use them in future or not...????19:46
mizipzorshreymech: if you want them in the future, you can just reinstall them19:46
trismshreymech: it means they were automatically installed by other packages, but you uninstalled those packages, so they aren't needed anymore19:46
Stanleyz000(Windows Vista lol)19:47
Stanleyz000Theres not any other.19:47
jerndoeHow do I make my keyboard layout permanent (when changed) after reboot I still have the old layout19:47
shreymechthey already exist in my new package installed ,, is this the reason it says me that "these packages r no longer required" ...??19:47
Linux^Warriorstanly your on wrong chanel19:47
Linux^Warrioryou wanna join #windows-l8mrs19:47
Stanleyz000ok19:47
Stanleyz000Doesnt exist.19:47
Linux^Warrioror #vista^losers19:48
FlannelLinux^Warrior: That's not necessary.19:48
Linux^Warriorlol19:48
Stanleyz000;p19:48
=== doubledama is now known as doubled`fml
FlannelStanleyz000: Just ##windows19:48
f0sterHalitech: so how can I assume that since the driver is selected in synaptic, that its being loaded by X? since xorg.config is bare19:48
=== doubled`fml is now known as doubled`fml`away
burkmat!unetbootin | Stanleyz00019:48
ubottuStanleyz000: For information about installing Ubuntu from USB flash drives, see https://help.ubuntu.com/community/Installation/FromUSBStick - For a persistent live USB install, see: https://wiki.ubuntu.com/LiveUsbPendrivePersistent19:48
Halitechf0ster, yes19:48
Stanleyz000lol its (to) a flash drive19:48
Stanleyz000not from19:48
Stanleyz000lol19:48
shreymechand why these some of the packages are automatically installed in my system.... and should always autoremove the programs whenever suggested by terminal...19:48
Halitech!dvd | halitech19:48
ubottuHalitech, please see my private message19:48
burkmatStanleyz000: Well, I suggest you look at unetbootin. That does what you ask for.19:48
Linux^Warrioryou cannot load vista via flash only a boot disk to load a previous os19:48
shreymechand why these some of the packages are automatically installed in my system.... and should i always autoremove the programs whenever suggested by terminal...19:48
jrtaylorivIs there any way for me to choose to install packages that are compiled w/ the gcc flags -march=core2, rather than i686?19:48
burkmatStanleyz000: Easy to use as well, and should work in Vista. Otherwise you'll need an Ubuntu LiveCD to create the USB stick.19:49
doubled`fml`awayhow do i learn linux19:49
Stanleyz000ok19:49
Linux^Warriorstanley are you trying to load linux on your system via usb?19:49
FlannelLinux^Warrior: He's trying to install Ubuntu to the flash drive. Please pay attention and stop being annoying.19:49
Stanleyz000Yes19:49
mebaran151so I configured my sound preferences to output via the hdmi port on my laptop19:49
th0rdoubled`fml`away: tldp.org19:49
f0sterHalitech: where is that configured though19:49
burkmat!who | Stanleyz00019:49
ubottuStanleyz000: As you can see, this is a large channel. If you're speaking to someone in particular, please put their nickname in what you say (use !tab), or else messages get lost and it becomes confusing :)19:49
mebaran151totem respects these preferences, but mplayer and flash do not19:49
Stanleyz000!tab19:49
ubottuYou can use your <tab> key for autocompletion of nicknames in IRC, as well as for completion of filenames and programs on the command line.19:49
mebaran151how do I get mplayer and flash to respect these settings19:49
Linux^Warriorwell just run the cd & specify the flash drive as the install source & I am not being annoying, take a joke19:49
jrtaylorivdoubled`fml`away: If you want to know how to use ubuntu, just read the documentation at their site -- tldp.org will not help you at first.19:49
mebaran151pounding tab is always a good idea19:49
Halitechf0ster, I think hal is doing most of the work now so not sure where the config files are19:50
th0rjrtayloriv: he asked about linux, not ubuntu <smile>19:50
mebaran151jrtayloriv, you can always compile the deb-src packages yourself with custom cflags19:50
Linux^Warriorstanley you using a live cd to install linux or an iso?19:51
Stanleyz000I havent got any thing yet19:51
Stanleyz000What do I need.19:51
Linux^Warriordownlaod the os iso19:51
cmwalkermizipzor: holy crap, thank you so much. (i had to install the latest test duild of lux render and i guess it worked) thanks again.19:51
Linux^Warriorburn it to a cd as a live cd19:51
Stanleyz000ok19:51
mizipzorcmwalker: what worked? that about copying a file?19:52
Linux^WarriorI use ero myself to make a good bootable disk19:52
Stanleyz000I dont have a spare disk :/19:52
cmwalkeryeah, mizipzor19:52
Linux^Warriornero*19:52
mizipzorcmwalker: ah nice :)19:52
Linux^Warriorwell can you make a virtual cdrom stanley19:52
nomikehi19:52
FloridaGuyis there any map or atlas packages for linux...19:52
Linux^Warriorshould be in control panel19:52
Stanleyz000Ok19:53
burkmatLinux^Warrior, Stanleyz000: http://unetbootin.sourceforge.net/19:53
Stanleyz000after the iso is done19:53
Stanleyz000ok19:53
MABSanyone have any experience booting/installing linux and using a wireless keyboard?19:53
Stanleyz000thanks19:53
Linux^Warriorburkmat read what wesaying, He cannot burn a disk HOW can he use unetbootin19:53
Linux^Warriorunetbootin is a linux thing not vista19:53
burkmatLinux^Warrior: ...by downloading it and running it? Why do you need to burn a disk to use it?19:53
LuisitoAcm1pt19:53
Stanleyz000Its not19:53
Stanleyz000its a windows thing19:53
Stanleyz000lol19:53
Stanleyz000Its a win app19:54
Stanleyz000llol19:54
FloodBot1Stanleyz000: Please don't flood, use http://paste.ubuntu.com to paste, don't use Enter as punctuation.19:54
burkmatLinux^Warrior: It runs on Windows and Linux.19:54
Stanleyz000ok sorry19:54
boozler have a pdf form that I need to fill out electronically. Iv tried downloading acroread and using the Typewriter function but the documents security properties wont allow it. Is any one aware of any way to either disable pdf securities or an alternative to adobes typewriter function?19:54
HalitechLinux^Warrior, actually it runs on both and you don't need a cd, you can install it to a usb drive19:54
Luisitoespañol19:54
Linux^WarriorBurkmat U cannot run unetbootin in Vista Period visa is retarded19:54
shreymechi installed GERRIS from package manger.. and now i don knw where it gone... how to lunch it now...???19:54
Stanleyz000:/19:54
erUSUL!es | Luisito19:54
ubottuLuisito: En la mayoría de canales Ubuntu se comunica en inglés. Para ayuda en Español, por favor entre en los canales #ubuntu-es o #kubuntu-es.19:54
Stanleyz000So what (do) I do?19:54
shreymechi installed GERRIS from package manger.. and now i don knw where it gone... how to launch it now...???19:54
burkmatLinux^Warrior: Well the sourceforge site claims differently. Are the devs lying?19:54
Linux^Warriorwell you can download virtualbox stanley19:54
nomikeI'm looking for a dictionary, not a spellcheck one, but for translating. It has to work offline without internet access. Needed language: English <--> German; (English | German) <--> Persian19:54
Stanleyz000I'm downloading Ubuntu (ISO). Now what?19:54
Stanleyz000unetbootin looks ok for Windows....19:55
Linux^Warriorobviously they dunno the stupidity of Vista, there probly saying XP19:55
Stanleyz000its got a vista screenshot?19:55
=== people is now known as Guest77894
shreymechany answer techies... :-(19:55
shreymechi installed GERRIS from package manger.. and now i don knw where it gone... how to launch it now...???19:55
Linux^Warriorwell good luck getting it to function properly sanley19:55
erUSULshreymech: alt + f219:55
Stanleyz000:/19:55
burkmatLinux^Warrior: It says XP/Vista quite literally. I've run it successfully on several systems. Stop making stupid claims and trying to complicate it for Stanley if you don't know what you're talking about.19:55
Stanleyz000This is meant to be the support channel19:55
erUSULshreymech: or from a terminal19:56
erUSUL!cli19:56
ubottuThe linux terminal or command-line interface is very powerful. Open a terminal via Applications -> Accessories -> Terminal (Gnome) or K-menu -> System -> Konsole (KDE).  Guide: https://help.ubuntu.com/community/UsingTheTerminal19:56
Stanleyz000Thank you burkmat.19:56
DasEishreymech: without nowing the app, type correct name in trml19:56
shreymechit is giving an error that "location could not be found"19:56
Linux^WarriorBurkmat I been only fixing/working on pc's 18+ years & never seen ANYTHING function proper on vista on even new systems19:56
Linux^WarriorIt says it will run on it it does not say it will acually work19:56
=== doubled`fml`away is now known as sEx
trismshreymech: http://gfs.sourceforge.net/tutorial/tutorial/tutorial1.html19:57
=== sEx is now known as Guest67239
shreymechi have gone thru tutorial but they have not shown how to launch it19:57
=== Guest67239 is now known as doubled
DasEishreymech: type gerris in trml19:58
Stanleyz000Isn't it % gerris2D ?19:58
trismshreymech: first section: gerris2D19:58
jrtaylorivmebaran151: Sorry, I was afk -- will building from deb-src enable me to easily remove/update it later through aptitude though?19:58
Stanleyz000or gerris?19:58
Linux^Warriorstanley when that fails then downlaod virtualbox you can run a virtual linux box & use the installer on it to install to a usb19:58
Stanleyz000Ok.19:58
Linux^Warriorthats after you downlaod the linux iso :P19:58
Stanleyz000;p19:58
mebaran151jrtayloriv, deb-src will make you a normal deb19:58
shreymecherror - missing file when i wrote gerris2D19:58
mebaran151which you then dpkg -i19:58
seppiSomeone good with grub and the windows bootloader?19:59
mebaran151to your system, it looks like any normal package19:59
DasEi!details | seppi19:59
ubottuseppi: Please give us full details. For example: "I have a problem with ..., I'm running Ubuntu version .... When I try to do ..., I get the following output: ..., but I expected it to do ..."19:59
jrtaylorivmebaran151: Sorry if these questions are obvious, I use Gentoo as my primary OS, but I want to set up dual-boot w/ Ubuntu, so I can help friends install Linux ... anyway thanks for your help.19:59
mebaran151nah it's not19:59
doubledwhats int y = x > 4 ? x : throw std::out_of_range;  do19:59
Linux^Warriormy question is how can I update my ubuntu from 2.1x to least 4.x since I have minimal amount of ram on this laptop20:00
mebaran151I used gentoo for awhile but then I switched to archlinux (which is like a better gentoo)20:00
shreymechtrism:  error - missing file when i wrote gerris2D20:00
mebaran151but I use ubuntu on my main system20:00
mebaran151*main laptop20:00
Linux^Warrior Icannot download the iso I keep dcing too much at the wifi spot im at20:00
mebaran151because I never could get power management to work right in both20:00
seppiI was running windows XP on a 200GB hd, and I used wubi to install ubuntu 8.10 on my 80 GB hd. How can I move the grub bootloader to my 80GB disk?20:00
=== stefu is now known as snh0
trismshreymech: did you type a capital D at the end, it is case sensitive20:01
TrevorSo I just did something really stupid, anyone have a second to try and help me out?  I think I'm going to have to reinstall.20:01
DasEiseppi: uh, wubi... consider a fresh install20:01
Linux^Warriorseppi reinstall the boot on your 80gb or use gparted to make the 80gb bootable in the tags section20:01
jrtaylorivmebaran151: I very much prefer Gentoo, but just want a 'learning' installation of Ubuntu ... but I just wanted to play around to see if I could easily optimize Ubuntu for performance -- every time I've tried the base install, it has been significantly slower than my Gentoo installation.20:01
shreymechtrism: yaa i typed capital only20:01
seppiLinux^Warrior: so the grub editor is in gparted?20:01
mebaran151ubuntu is not a performance distro20:02
Linux^Warriornot exactly20:02
trismshreymech: does which gerris2D list /usr/bin/gerris2D?20:02
HalitechLinux^Warrior, what do you mean, update ubuntu from 2.1 to 4?20:02
mebaran151though actually if you added in the time spent compiling, I wonder if gentoo would actually hve used more clock cycles for the same setup :)20:02
Linux^WarriorI mean I am running 256mb ram 1ghz proccessor laptop 32mb video & I am using ubuntu 2.1x20:02
jrtaylorivmebaran151: Nope -- but it is great as far as usability, and is all I would recommend for most people as far as Linux (unless they were knowledgeable about computers, in which case I would recommend Gentoo over Ubuntu every time)20:02
shreymechtrism: yess20:02
Linux^WarriorI cannot seem to get updater on this version ...20:03
HalitechLinux^Warrior, so you are years out of date?20:03
shreymechtrism: it is installed there..20:03
trismshreymech: then I don't know what's wrong20:03
Linux^Warriorno I have ubuntu 9.04 this laptop cannot run it20:03
mebaran151jrtayloriv, I never could get power management to work in gentoo20:03
mebaran151but this was a year ago20:03
DasEiseppi: you will run in trouble, as grub is inside wubi, you could just use an alternate bootloader that points to wubi, but cause of defrags I won't suggest wubi any more then a first try, reinstall native with just 80 attached, then add a line for xp later in grub20:03
seppiDasEi: yeah, i figured that that's what I was going to have to do20:04
HalitechLinux^Warrior, ok, you have the 9.04 install cd in your hand but what version is actually running on the laptop?20:04
TrevorIs there any way to recover /usr/share/doc?20:04
Linux^Warriorlaptop is 2.13x20:04
Linux^Warriorso it says20:04
HalitechLinux^Warrior, maybe try Xubuntu 8.04 with the Alt install cd20:05
DasEiseppi: simply unplug the 250 to be sure not to overwrite winloader, easy to add a line to menu.lst later20:05
Linux^WarriorI tried 6.x won't run worth a damn either20:05
shreymechtrism : when i wrote gerris2D -V   it is showing the verison and everything20:05
Linux^Warriornah I tried 8 then 6 I think 4.x would do ok20:05
HalitechLinux^Warrior, Ubuntu or Xubuntu?20:05
Linux^Warriorboth20:05
seppiDasEi: Where can I get a winloader editor for linux? Whenever I boot, it goes to Boot: XP or Ubuntu, and then it loads grub20:05
Linux^WarriorI have a large archive of linux distro's :P20:06
=== rubatharisan is now known as Qubexy_
HalitechLinux^Warrior, Xubuntu should run20:06
HalitechLinux^Warrior, if the laptop is that useless to you, ship it to me c.o.d and I'll take it ;)20:06
ecce_egois opensolaris merely a carbon copy of ubuntu20:06
seppiLinux^Warrior (crunchbang?)20:06
DasEiseppi: when grub installed on the 80, you can add an entry for the 250, so win boots20:06
Linux^Warriornot the 8.x my laptop is too old it is slower then a wet terd on a slanted roof20:06
Halitechecce_ego, not even close20:06
trismshreymech: perhaps you didn't create the simulation file?20:06
indy__hello everybody. Can I ask you about a problem on audio on Karmic Koala?20:07
seppiDasEi: ok, i'll give that a shot when i get home20:07
ecce_egoi dl'd it and it looks exactly the same20:07
Linux^Warriorit runs fine xp on 256mb ram20:07
Linux^Warriorjsut linux does not wanan run well on it20:07
DasEiseppi: it's am easy one, there is also #grub20:07
HalitechLinux^Warrior, I just finished installing Ubuntu on a Celly 638 with 384 meg of ram and it runs nicely20:07
Linux^Warriorthat 100+ more ram then I got :P20:07
ks3indy__, You'll likely need to ask in #ubuntu+120:07
seppiDasEi: ok, cool. I can hop in there if i have more problems :D20:07
indy__ok thank you.20:07
shreymechtrism: may be20:07
Linux^Warriorand a cell phone is specialized software for a cell20:08
HalitechLinux^Warrior, but you have more power then I do20:08
DasEiseppi : for an overview :20:08
DasEi!grub20:08
ubottuGRUB is the default Ubuntu boot manager. Lost GRUB after installing Windows? See https://help.ubuntu.com/community/RestoreGrub - GRUB how-tos: https://help.ubuntu.com/community/GrubHowto20:08
seppiDasEi: thanks!20:08
DasEiseepii: welcome20:08
Linux^Warriornuh uuhh grub is a fat looking insect that matures into a fly or other flying bug LOL20:08
shreymechtrism: but i don know hoe to create it.. after reading tutorial... i don'tknow how to create a vorticity.gfs file... although i have created vorticity directory..20:09
Linux^Warriorwell I have to try downlaod the ubuntu 4.x iso then20:09
psiborgyea.. grub is a really great name :)20:09
Stanleyz000Grub is so grubby.20:09
HalitechLinux^Warrior, only thing is I had a crappy video card so I had to disable the visual effects20:09
Linux^Warriormmmnnn.... grubs yum20:09
trismshreymech: use a text editor such as gedit or vim20:09
DasEiLinux^Warrior: I suggest you to download ubuntu 9.04 minimal20:10
Linux^Warriorslimy yet satisfying20:10
ecce_egobeen having trouble with flash on 64 bit amd- it stops working about every other day and i must reinstall20:10
Linux^WarriorDas I do 9.04 minimal using the live cd DOES not run20:10
HalitechLinux^Warrior, you could also try Debian with xfce http://forums.debian.net/viewtopic.php?t=2656620:10
ecce_egoopen source versions don't work at all20:10
Linux^Warrioreven with graphics on minimal20:10
Linux^Warrioryeah I am tryign to get xfce20:10
fixnumwhat is the most popular ticket/issue tracking system out there?20:10
TrevorWhat would be the proper place to ask about trying to recover parts of my system?20:11
HalitechLinux^Warrior, the live cd won't, it needs 384 meg of ram but the alt install cd will work (just used it)20:11
shreymechtrism: after that should i paste the given command in manual in that vorticity.gfs and save it...?????20:11
Linux^Warriorhaving trouble downlaoding large files my wifi im at sucks20:11
erUSULfixnum: trac ?20:11
erUSULTrevor: here20:11
erUSUL!ot20:11
ubottu#ubuntu is the Ubuntu support channel, for all Ubuntu-related support questions. Please use #ubuntu-offtopic for other topics. Thanks!20:11
trismshreymech: yes20:11
HalitechLinux^Warrior, get the debian net install cd, its only 150 med or so20:11
shreymech1 2 GfsSimulation GfsBox GfsGEdge {} {20:11
shreymech  GfsTime { end = 0 }20:11
shreymech}20:11
shreymechGfsBox {}20:11
shreymech1 1 right20:11
FloodBot1shreymech: Please don't flood, use http://paste.ubuntu.com to paste, don't use Enter as punctuation.20:11
shreymech1 1 top20:11
Linux^Warriorhal im on a ibm thinkbad with a little red button as a mouse for me it won't20:11
DasEiLinux^Warrior: minimal aint no live, its text-based;; on my (ha) 430Mhz Celeron I had to install 8.10 first (jaunty didn'T) , but then dist-upgrade worked20:11
fixnumI'll look into it, thanks erUSUL20:11
seppiLinux^Warrior: can't you install the xorg, xfce and it's extensions, with a simple gdm and then startx?20:11
TrevorSo...I deleted my /usr/share/doc folder.  How would I even begin to go about getting that back?20:12
Linux^WarriorI can run 2.1x with graphics perfectly why can I not use the 4.x?20:12
seppiTrevor: What filesystem is it?20:12
Linux^WarriorText mode sucks balls20:12
erUSUL!language20:12
ubottuPlease watch your language and topic to help keep this channel family friendly.20:12
DasEiTrevor: how did you delete ? cmd or graphicaal ?20:12
DasEi!trash | Trevor:20:13
ubottuTrevor:: The location of Trash has changed since 8.04, it is now located in ~/.local/share/Trash | Looking for the trash in previous versions: ~/.Trash20:13
TrevorSeppi, I'm not sure what you mean by filesystem.  It's just a vanilla install of Ubuntu20:13
Linux^Warriorlol must be a 10 year old20:13
TrevorSo the folder would be in that trash folder?20:13
KaiForcedepends on how you deleted it20:14
seppiTrevor: If you used GUI, yes20:14
HighLordObsihey, my ten year old nephew is writing java proggies already :o20:14
erUSUL!ot20:14
ubottu#ubuntu is the Ubuntu support channel, for all Ubuntu-related support questions. Please use #ubuntu-offtopic for other topics. Thanks!20:14
shreymechtrism :  error unable to open file20:14
Linux^Warriorstanley the vista attempt to install linux on usb fail yet :)20:14
TrevorSeppi, it was a cmd delete.  I was trying to remove a program, and deleted the wrong thing20:14
KaiForcebuhbye data20:15
seppiTrevor: Well, default filesystem is EXT3, and a rm -r on a folder is irreversable20:15
erUSUL!undelete20:15
ubottuSome tools to recover lost data are listed and explained at https://help.ubuntu.com/community/DataRecovery - Recovering deleted files on !ext3 filesystems can be virtually impossible, although methods that might work is some cases are described at at http://www.xs4all.nl/~carlo17/howto/undelete_ext3.html and http://projects.izzysoft.de/trac/ext3undel20:15
trismshreymech: need to get used to using ls and cd to find files on the commandline20:15
KaiForcerestore from your well documented, disciplined, and tested backup system.20:16
TrevorIs there some kind of generic backup?  Or some way to recover from the install CD?20:16
alankila_There is a method that boils down to "apt-get --reinstall install <put name of every package here>"20:16
alankila_hardly optimal, so feel free to ignore this avenue. I sometimes use --reinstall to restore packages I've mucked with somehow20:17
shreymechtrism: should i do the last one compiling and installing gfs..??  http://gfs.sourceforge.net/wiki/index.php/Installing_from_source20:17
joaopintobetter do a system reinstallar20:17
Linux^Warriorwell isn't there a way to save you linux state via image? I have a version of linux that looks for a saved state but no clue how to actually save it20:18
saltairhey how do I get .rar files to work?20:18
joaopinto!unrar | saltair20:18
ubottusaltair: rar is a non-free archive format created by Rarsoft. For instructions on accessing .rar files through the Archive Manager view https://help.ubuntu.com/community/FileCompression. There is a free (as in speech) unrar utility as well, see !info unrar-free20:18
Linux^Warriordownlaod winrar for linux20:19
ubuntuhi20:19
trismshreymech: no it is already installed, you just need to create simulation files to use it, it just seems like you aren't where you saved your file20:19
saltairoh20:19
TrevorSounds like it might be easiest to completely reinstall?20:19
testicapslock.. gone?: However - HTC Hero has Layer 3 connection sharing (routing) via USB, just has to be enabled - thanks! I love you!20:19
saltaircan I just type something into terminal to install it?20:19
HighLordObsihmm20:19
ubuntui removed my Linux partitions, Ext4 and Swap ... now i can`t use my windows20:19
=== petllama is now known as petllama`afk
ubuntuhow can i repair the boot ?20:19
ubuntui use windows 720:19
Linux^Warriorlol reinstall linux20:19
Linux^WarriorI done that before20:19
innomenhi all, anyone know why totem wont animate gifs? is there a way to allow this?20:19
masqueradeinnomen: i have never heard of a media player that plays animated gifs20:20
TrevorI mean...unless there is some kind of backup somewhere.  I don't see how else I can get it back.20:20
innomenmasquerade, sorry20:20
seppiinnomen: why not use firefox?20:20
innomeni'm tired lol20:20
masqueradeinnomen: oh, no prob20:20
Linux^Warriorsorry trev I think your sol20:20
innomeni meant Eye of GNOME :P20:20
shreymechtrism: hey but when i used the command sudo apt-get install libgtk2.0-dev libgtkglext1-dev libstartup-notification0-dev...terminal is showing that do u want to install the packages...???20:20
blognewbhi what is the difference between a gz and a bz?20:20
innomenseppi, because firefox isnt my image manager?20:21
HighLordObsianybody know why my sound sounds like my speakers are choking on rotten sardines?20:21
innomenmasquerade, (odnt know if you caught this) Eye of GNOME is what i meant20:21
Linux^Warriortrevor all you can do is apt-get reinstall install packages-deleted goes here20:21
seppiinnomen: and totem is?20:21
masqueradeinnomen: gifs are in general only played by browsers20:21
shreymechtrism: it means it is asking me to install those packages.. so obviously they r not instlled i think...!!!20:21
masqueradeeye of gnome.. hmm20:21
innomenseppi, a video player :P20:21
KaiForceblognewb:  program used to compact the file (gzip vs bzip2)20:21
Linux^Warrioror you can reinstall linux20:21
natewiebe13anyone use banshee?20:21
HighLordObsii've tried every slider setting i can think of20:21
seppiTrevor: What directory did you delete again?20:21
innomenmasquerade, microsofts standard image viewer and office picture manager both play gifs20:22
Linux^Warriornah she screams too much :P20:22
trismshreymech: you lost me20:22
DasEiubuntu: ask in ##windows20:22
masqueradeinnomen: cant help you with this, im sorry. google is your friend :)20:22
blognewbHighLordObsi: because they are choking on rotten sardines. clean your desk!!!!!!!20:22
natewiebe13anyone interested in banshee. here is some news about banshee 2.0 ------>  http://abock.org/2009/07/14/exciting-updates-on-the-road-to-banshee-2-020:22
Linux^WarriorDasei he in right spot20:22
shreymechtrism :  :-(  :'-(   i  m sorry20:22
innomenmasquerade, i googled first of course before coming here :)20:22
HyperDwhat IS the differences between tar, bz, and bz2?20:22
innomenmasquerade, SOP20:22
Linux^Warriorhe deleted his linux but did not diable his grub20:22
silidanhi i am actually trying ubuntu 9.04 live cd on a gericom masterpiece 2540XL (G732, with an sis 645 DX chipset think) i am having problems with sound: its crackling20:22
masqueradeinnomen: great lol. SOP?20:22
Linux^Warriorhe has to reinstall linux to get the old boot back20:22
innomenmasquerade, standard operating procedure20:22
Linux^Warriorthen use gparted to disable the grub in the tags section20:23
innomen:)20:23
DasEiLinux^Warrior: grub overwrites the win loader, so he has to reinstall the winloader >> windows20:23
masqueradeHyperD: tar does only make one file out of many, it does not compress them. gz, bz and bz2 do20:23
fumexhj guy20:23
Trevorseppi /usr/share/doc20:23
fumexguys20:23
Linux^Warriorno linux20:23
T`2does anyone know how to make mic work on ubuntu on a netbook? the voulme seems fine on sound recorder, but its way too low on ekiga and other phone apps.. anyone know how to fix this?20:23
testiHighLordObsi: Did you put sardines into your speakers?20:23
seppiinnomen: gif's are ancient. I dont even think eog (eye of gnome) animates them anymore. Your best bet is firefox.20:23
HighLordObsimy desk is clean except for my pipe, a bag of tobacco, an ash tray and a lighter20:23
masquerade T`2, had this problem also20:23
Trevorseppi, I'm guessing if someone tared theirs up and gave it to me, I could restore from that20:23
Linux^Warriorgrub takes ovewr winloader if not diabled when you remove linux even if the partition not there I done the 2 times before20:24
innomenseppi, i'm pretty sure jpg are failry old :)20:24
fumexim a newbie to the world of liunx20:24
trisminnomen: gthumb will play animated gifs20:24
seppiinnomen: yeah, but they aren't an outdate web tech20:24
Tr1nmasquerade, T2:  i cannot get my mic to work on a Thinkpad T6120:24
innomentrism, oh? i'll look into that20:24
seppiTrevor: one sec, let me see if i can fid the dir in an ftp20:24
trisminnomen: it is also pretty nice for browsing images (it's what I use)20:24
innomenseppi, with respect, you don't know what you are talking about.20:24
testiHighLordObsi: lowering master volume sometimes helps a bad quality sound card to have acceptable quality20:24
seppiTrevor: 9.04?20:25
DasEiT`2: install pavucontrol and check muting, sensivity, if ob-chip is found right20:25
innomentrism, i'll look into that this insatnt, thank you :)20:25
runpain2I am having problem with flash in firefox web browser it says i need flash to view the web page http://www.tikilive.com/show/foxnews what must i do i Already installed Adobe Flash Player plugin version 1020:25
TrevorSeppi: Yes20:25
masquerade!flash | runpain220:25
ubotturunpain2: To install Flash see https://help.ubuntu.com/community/RestrictedFormats/Flash - See also  !Restricted and !Gnash20:25
=== yacc_ is now known as yacc
T`2masquerade, did u fix it?20:25
fumex iwas a windows adict...but not any more  gotta tell ya20:25
T`2DasEi, i uninstalled pulseaudio20:25
masqueraderunpain2: did you install flash through apt packages?20:25
T`2i have alsa only now20:25
masquerade T`2 nope20:25
HighLordObsiahh20:25
runpain2yes20:25
panfistwhat's the preferred ftp server to use from ubuntu server?20:25
ecce_egoQuit20:25
runpain2masquerade, yes20:26
ecce_egomeh20:26
masqueradepanfist: the one nearest to you20:26
seppiTrevor: one sec. This might be easy to torrent the stuff you need20:26
Linux^Warrioranyway anyone know wher I can get a copy of ubuntu 4.x or even 5.x??20:26
TrevorOkay cool20:26
panfistmasquerade if i want to host an ftp server20:26
fumexwithdrawl  was a bitch!! it hard to quit "cold turkey"   but i did it20:26
Linux^Warriorim goolging no luck so far ...20:26
masqueradepanfist: oh, well.. i dont have a clue20:26
Linux^Warrior!language20:26
ubottuPlease watch your language and topic to help keep this channel family friendly.20:26
innomenis it advisable to remove the default system applications that i have replaced (eye of gnome for example, should gthumb work out)20:26
T`2masquerade, do you have any softphone which works with your mic?20:27
T`2DasEi, anything else i can do?20:27
Linux^Warriorbefore that 10 year odl idd it lol20:27
DasEipanfist: http://www.ubuntu.com/getubuntu/downloadmirrors#mirrors20:27
masquerade T`2 softphone?20:27
Linux^Warriordid*20:27
DasEiT`2: alsamixer is checked, I guess ?20:27
T`2masquerade, SIP phone.. thats what i am using the mic for.. for skype type of apps20:27
trisminnomen: I wouldn't remove eog personally, since it is nice for quick viewing of individual images20:27
T`2DasEi, yea.. alsamixer is fine20:27
panfistDasEi i want to host an ftp server. should i use vsftpd?20:27
panfistor proftpd?20:27
* Linux^Warrior calls amulance for petur_ (bad collison)20:28
innomentrism, what about notepad? *scite* i appreciate the recommendation, but my concearn is simply breaking the system, i'm still new to ubuntu and somewhat cowardly heehh20:29
Linux^Warriorambulance*20:29
DasEipanfist: ah, you want to set one up ? vsftp is a good daemin for it20:29
fumexisnt anybody gone congrats me???20:29
innomenfumex, grats20:29
seppiDoes someone know where the 9.04 are hosted not in iso?20:29
seppi*files20:29
fumexthank20:29
masqueradeseppi: what do you want then?20:29
Linux^Warriorinno u should install linux side by side with windws using the live cd's wubi intstaller20:30
masqueradefumex: huh, what?20:30
DasEi!iso | seppi20:30
ubottuseppi: To mount an ISO disc image, type « sudo mount -o loop <ISO-filename> <mountpoint> » - There is a list of useful cd image conversion tools at http://wiki.linuxquestions.org/wiki/CD_Image_Conversion - Always verify the ISO using !MD5 before !burning.20:30
Linux^Warrioryou mean source seppi?20:30
seppimasquerade: Trevor deleted his /usr/share/doc . Wouldn't those files be on the iso?20:30
innomenLinux^Warrior, my machine is jaunty base with xp as a guest os that i use less and less20:30
fumexinnomen u the man!!20:30
trisminnomen: I doubt it would really break anything, although it will uninstall the ubuntu-desktop metapackage20:30
seppii found a mirror20:30
trisminnomen: although I doubt that really matters20:30
Linux^Warriorinno you can also load it from livecd so no commitment :)20:31
innomentrism, can it easily be reinstalled?20:31
simonehello20:31
trisminnomen: yeah just reinstall the packages20:31
reborn3hi20:31
innomenLinux^Warrior, i have already committed :)20:31
Linux^Warrioranyway  anyone know where I can find ubuntu 4.x or 5.x I cannot run 6.x or later on this laptop "(20:31
seppinevermind, i lied, lol. Still looking Trevor20:31
innomentrism, excellent, thank you20:31
innomenLinux^Warrior, tab complete makes it much easier to see when you are speaking to me, FYI20:32
TrevorSeppi: I appreciate it.  I still have a backup from when I installed ubuntu, so if this doesn't work out I can always reinstall20:32
innomenLinux^Warrior, inno*tab* should change to innomen,20:32
Linux^Warrior!tab 4 letters too much to type lol20:32
ubottuError: I am only a bot, please don't think I'm intelligent :)20:32
innomenLinux^Warrior, like this was linu*tab*20:32
trismLinux^Warrior: I don't think earlier version of ubuntu would necessarily help, might want to look for something lighter weight that doesn't install gnome20:32
Linux^WarriorI need gnome20:33
Linux^Warriortext is fubar20:33
Linux^WarriorI DO NOT run text mode20:33
joaopintoLingerance, try xubuntu20:33
innomenLinux^Warrior, lol to each his own but understand that people might not see you, with full nick, clients typically hilight the message in question,20:33
seppiLinux^Warrior: http://releases.ubuntu.com/ you won't find anything older than 6 on ubuntu.com20:33
trismLinux^Warrior: something with fluxbox or xfce20:33
joaopintoops, was for Linux^Warrior20:33
Elliot_hey I think I have stale nfs locks, can anyone help?20:33
trismLinux^Warrior: you don't need to use a text console, there are tons of lightweight windows managers20:33
Linux^WarriorI have 2.1 someone gotta serv 4.x20:33
innomenjoaopinto, thats a down side of tab complete in a room full of people :)20:33
joaopinto;)20:34
trismLinux^Warrior: I use ubuntu with fluxbox on a laptop with 64 megs of ram20:34
trismLinux^Warrior: runs fine20:34
fumexi apologize to the group 4 using tha language please accept my aplogize i t jus tha im so excited 2 discover20:34
innomenwell i'm off to butcher my system, but i think i'll grsync first :P20:34
=== marko-_- is now known as GreenRanger
Linux^Warriorim running 1 gig proc 256 ram old ibm thinkpad with a little red ball on keyboard its slow20:35
fumexthe this whole new field of liunx20:35
=== GreenRanger is now known as marko-_-
fumexim a convert and i will never go bak20:35
Linux^Warriorit will not run 6.x I tried diffrent variations is slower the na wet terd on a wide hill20:35
trismLinux^Warrior: it is not the version of ubuntu, it is gnome, gnome is just slow20:36
innomenfumex, between wine and virtual machines, there's no need20:36
seppiTrevor: I'm checking the properties on the doc folder, and i'm getting almost 35k files totalling 530mb20:36
Linux^Warriorwell 2.1x runs good20:36
fumexu know  what  they once u  go liunx u never  never go bak!20:36
Linux^Warriortrying to find slightly better then that20:36
fumexLOL20:36
Linux^WarriorI also know many say the t 4.x is more stable the n6.x & up20:36
innomentrism, you wound me, i like gnome, but of course i've never tried anything else :P20:36
seppiTrevor: I think you might be happier just spending 10 min reinstalling, instead of two hours trying to figure out how to download the files20:36
TrevorSeppi:  Yeah, I was staring at the console window for a while going wtf did I just do.20:36
astroidhi. I connected a microphone to the front of my PC and I can hear what I say through my loudspeakers, however when I'm trying to record I only record background noise. Also, in volume control, whenever I want to enable capturing the mic, it gets disabled the next time I open volume control. what can I do?20:36
innomentrism, would trying kde or something else break my apps?20:37
Linux^Warriorim just saying nothing disapears someone has to serve it20:37
trisminnomen: I'm using gnome too, I'm just saying that on slower machines, a lightweight window manager is generally better (faster)20:37
seppiTrevor: I feel for you. me: "rm -r Sorted_music" one second later, "CTRL-C/D oh god oh god oh god"20:37
innomenLinux^Warrior, what are you after?20:37
Linux^Warrioraaahhhhh kde the evil bastard of broke n20:37
innomentrism, ahh i see20:37
DasEiastroid: how do you try to record ?20:37
Linux^Warriorim after ubuntu 4.x20:37
zamolxesI need to mount a raid1 partition (/dev/md0 over /dev/sda1 and /dev/sdb1) from the live cd. Any ideea how to do this? in https://help.ubuntu.com/community/LiveCdRecovery it sais /dev/evms/dm but can't find that. thanks20:37
astroidDasEi: Audacity20:37
innomenLinux^Warrior, i agree, that has to be outthere20:37
Linux^Warriorsince nayhtng gnome does not run worth a damn20:37
innomenone moment20:38
fumex now    i my im using ubuntu 904  igotta tell u i wonted to quit the  first i  tried it using using ubuntu it was sooooooooooooooooooooo frusrating my first weeki i uninstall it20:38
alankila_zamolxes: probably: mdadm --assemble /dev/md0 /dev/sda1 /dev/sdb120:38
ks3Linux^Warrior, Are you sure you're running 2.1x? I believe the first version of Ubuntu was 4.10?20:38
zamolxesthank you20:38
TrevorSeppi: Yeah, I'm just glad that an Ubuntu install is so easy, not hard to get going again.  Thanks for all your help though.20:38
biaoie20:38
Linux^Warriorit says gnome 2.13.xx20:38
zamolxesalankila_: mdadm not on the live cd .. meh :|20:38
alankila_linux raid has been reinvented about 10 times or something, so you never know how exactly it's supposed to be done, but today it's mdadm20:38
PiciLinux^Warrior: We do not support any release of ubuntu before 6.0620:38
biatem alguem ai?20:38
DasEiastroid: that should work, as it grabs directly from the s-card, sure right prfrences set ?20:38
alankila_zamolxes: hm. damn20:38
Pici!br | bia20:38
ubottubia: Por favor, use #ubuntu-br para ajuda em português. Obrigado.20:38
biafale algo20:38
alankila_I generally boot knoppix for rescue purposes, it at least has that20:38
biaanda caranba20:38
Linux^Warriorsorry 2.12.120:38
ks3Linux^Warrior, Ahh, that's different. Gnome versions are different than Ubuntu versions20:39
biafalas20:39
biaçdlkfer20:39
biarlfŕ, b20:39
zamolxesalankila_: right, will probably do that20:39
zamolxesthanks20:39
Linux^Warriorit does not tell me version of ubuntu20:39
fumexbut thier was  "voice" teeling me to stay the coruse and  u  will be rewared fro  u suffering, well idid i reinstall ubuntu and  worked it out20:39
seppiTrevor: np mate20:39
nothingHappens_hi folks20:39
seppionnomen: I see someone saying eog got replaced with gthumb. Give that a shot, eh?20:40
DasEi!version | Linux^Warrior20:40
ubottuLinux^Warrior: To find out what version of Ubuntu you have, type « lsb_release -a » in a !shell - To know the available version of a package, « apt-cache policy <package> »20:40
zamolxesalankila_: apt-get works on the livecd :)20:40
seppionnomenL otherway around20:40
astroidDasEi: hmm, not quite. what should I set for the recording device? there are a number of devices in there.20:40
nothingHappens_say, i've got an annoyance and i'm not sure if it's something i can fix by configuring something, or if it's just because my computer sucks20:40
Linux^Warriorah thx forgot that command20:40
DasEiLinux^Warrior : or open /etc/lsb-release20:40
fumexand  im a better man 4 it  all ican now is "##$##$ U BILL GATE LINUX UBUNTU 4 LIFE!!"20:40
joaopinto!caps | fumex20:41
ubottufumex: PLEASE DON'T SHOUT! We can read lowercase too.20:41
nothingHappens_trying to listen to music on rhythmbox while I'm doing other things, and it seems like activity from other applications interferes pretty badly with the music playback20:41
fumexlol20:41
nothingHappens_and if i pause the music for a while, when i un-pause it it seems to have a difficult time getting started at first20:41
nothingHappens_very choppy20:41
fumexsorry ubottu.. it jus i mso excited to be free!!!aint u??20:41
fumexfrom tha demond in redmond wa20:42
Linux^WarriorLLLllllllloooooooooooooollllllllllllllllllllllllllll lsb version n/a20:42
zamolxesalankila_: worked, thanks :) apt-get install mdmadm and then mdadm --assemble --scan20:42
Linux^WarriorI belive I downloaded a pre-release of ubuntu :P20:42
seppiinnomen: yeah, there we go: sudo apt-get install gthumb20:42
seppiinnomen: that renders gif animations properly20:43
innomenLinux^Warrior, http://ubuntu.hugi.is/releases/warty/ I believe that is what you are after20:43
junior_hello20:43
El-HrairahHi. How do I set the FQDN in Ubuntu? It didn't give me the option like most Linuxes do on install.20:43
innomenseppi, yup, installed and working, trism recommended it as well20:43
Linux^Warriork I try that but my lsb is n/a :P20:43
seppiinnomen: awesome20:43
innomenLinux^Warrior, did you get my link?20:43
Linux^Warrioryeah I looking now thx20:44
innomenLinux^Warrior, good20:44
Linux^Warriorim lost on wat version im running :P20:44
ks3Linux^Warrior, how about 'head -1 /etc/apt/sources.list'?20:44
=== El-Hrairah is now known as FQDN
mlavaertdoes someone have a dual-monitor setup?20:44
=== FQDN is now known as El-Hrairah
IndyGunFreakmlavaert: i do20:44
benYo, is this the 'right' place to ask about karmic?20:45
fumex hey guys m y cd burner isnt burning an iso image i t goes thur the  moition but when i t done thier nuting  please   help20:45
=== ben is now known as Guest40022
Linux^Warriordunno lemme try it :P20:45
ks3ben, nope, #ubuntu+120:45
=== Guest40022 is now known as _ben
_benthanks ks320:45
DasEi!karmic | ben20:45
ubottuben: Karmic Koala is the codename for Ubuntu 9.10, due October 2009 - Karmic WILL break - Discussion and support in #ubuntu+120:45
mlavaertwas it hard to set it up... Because I am considering to buy a second monitor20:45
=== stefu is now known as snh0
NthDegreehas anyone here used a Microsoft Lifecam VX-5000?  I'm just curious since I need a new webcam and i'm getting conflicting information about it20:45
fumexi under install brasero.. an d got a nother  cd burner  it does the same thing nutting20:45
El-HrairahHow do I set the FQDN in Ubuntu? It didn't give me the option like most Linuxes do on install? Anyone know?20:45
DasEifumex : verified the iso ?20:46
IndyGunFreakmlavaert: it depends on your video device.. for me.. w/ ATI, it was near impossible, w/ Nvidia, i could have been brain dead20:46
astroidDasEi: hmm, not quite. what should I set for the recording device? there are a number of devices in there.20:46
innomenLinux^Warrior, so whats the verdict?20:46
icarus!ubuntu20:46
ubottuUbuntu is a complete Linux-based operating system, freely available with both community and professional support. It is developed by a large community and we invite you to participate too! - Also see http://www.ubuntu.com20:46
IndyGunFreakmlavaert: are you planning to use two different devices, or like a dual head video card?20:46
Linux^Warriorlet u know whne I type it right lol20:46
erUSUL!hostname | El-Hrairah20:46
ubottuEl-Hrairah: Use hostname <somehostname> to set the hostname, or to do it permanently: edit /etc/hostname  and /etc/hosts . WARNING! Make sure that your current hostname and /etc/hosts match, otherwise sudo may not work properly. Alternatively, use the gui at System > Administration > Networking on the "General" tab20:46
fumexi was buring crunchbang iso and  when brasero sayz it was finsher i reboot and the grub loader did it thing and  t20:46
Linux^Warriorsays im running 5.1020:46
DasEiastroid: which options ? just put mike on radio or something, check untill you see equi moving in audacity20:47
panfistwhat octal code umask corresponds to everyone being able to read/write, but not execute, a file?20:47
fumexhappen except ubuntu loading up20:47
El-HrairaherUSUL: the hostname command does the fqdn too? Shoot, I thought it just did the name itself.20:47
NthDegreeLinux^Warrior: that is Breezy Badger20:47
panfistisn't it 666?20:47
Linux^Warriordamn it that measn I lost my first ubuntu version iso :620:47
seppipanfist: chmod a-x20:47
innomenLinux^Warrior, http://en.wikipedia.org/wiki/List_of_Ubuntu_releases20:47
innomenhmmm20:47
DasEifumex : if you're sure is is right (Md5sum), then try k3b, brasero once tricked me, too20:47
innomen!releases20:47
ubottuUbuntu releases a new version every 6 months. Each version is supported for 18 months to 5 years. More info at http://www.ubuntu.com/ubuntu/releases & http://wiki.ubuntu.com/TimeBasedReleases20:47
NthDegreeLinux^Warrior:  That's the third release IIRC20:47
DasEi!md5sum | fumex20:47
ubottufumex: To verify the integrity of a download, use the md5sum - see https://help.ubuntu.com/community/HowToMD5SUM for more20:47
fumexso i went to the  public libray and  use the windos based burner and  it worked wehn igot bak to m ycrib  and booted of the cd  i had crunchbang20:48
panfistseppi that's nice but it's not what i asked20:48
innomenl8r guys thanks for the help20:48
erUSULEl-Hrairah: man hostname has the details20:48
fumexon my  computer wha give ?20:48
seppipanfist: oh, you want it in octal?20:48
Linux^Warriorguess I am maxed out at 5.10 ...20:48
DasEifumex: try k3b then, see also :20:48
DasEi!burn20:48
ubottuCD/DVD Burning software: K3b (KDE), gnomebaker, brasero, serpentine, graveman, Nautilus-CD-Burner, GToaster, xcdroast (GNOME), wodim (terminal-based). Burning .iso files: see https://help.ubuntu.com/community/BurningIsoHowto20:48
ks3panfist, Yes, 666 is read/write, no execute20:49
fumexok checksum20:49
JohnTeddyIn Ubuntu Hardy, how can I stop this udev script from being run: /lib/udev/write_net_rules , anyone know which file to edit to have that stop running?20:49
=== marko-_- is now known as GreenRanger
Linux^Warriordoes it make it faster if I run ubuntu 6.x in lvm?? I did this & its running beter then first try in regular ext320:49
seppipanfist: ks3 has it for ya. further reading here: http://www.dartmouth.edu/~rc/help/faq/permissions.html20:49
JohnTeddyAnyone know about udev?20:50
panfistthat's awesome thanks20:50
Linux^Warriorya know I am tryign to run 6.10 wonder if th edapper/drake would run better ?? anyone got connebts on that?20:51
=== El-Hrairah is now known as Hordeking
ks3Linux^Warrior, LVM allows more flexibility in your partitions, but shouldn't increase performance.20:51
fumexDasEi  it did trick me20:51
edbianLinux^Warrior: Why do you want to run such an old version of ubuntu in the first place?20:51
DasEifumex: does k3b work ?20:51
Linux^Warriorwell if you read the conversation youwould know20:51
erUSULJohnTeddy: probably what you want is to adjust /etc/udev/rules.d/70-persistent-net.rules20:51
dajhornJohnTeddy: Look at this file: /lib/udev/rules.d/75-persistent-net-generator.rules20:51
innomenforgot something, anyone know where a wrking semi recent deb of projectm could be located?20:51
erUSULJohnTeddy: that file on lib is better left unchanged20:51
fumexmany times trying to burn ios llkie i said iwent 2 the library and  thier was nutting on the cd20:51
DasEiinnomen: your looking for a package ?20:52
Linux^Warriorthere cd burner is probly junk20:52
=== Twigathy is now known as Twigaathy
innomenDasEi, yea, i want milkdrop on mah puter :)20:52
android6011if i get the alternate install can i choose not to install an x window environment20:52
innomenDasEi, the source install instructions fail for me20:52
DasEiinnomen: apt-cache search milkdrop20:52
=== GreenRanger is now known as marko-_-
HordekingQuestion: The ubuntu fstab uses some kind of UID to identify drives, rather than the standard /dev/[hs]da type stuff. How do I determine what UID to use for a partition that wasn't initially done with the install (I'm replacing the home directory with my original one, which I didn't want to risk damaging in the install)20:53
seppiandroid6011: of course20:53
edbianandroid6011: Are you running ubuntu server?20:53
fumexok20:53
alankila_Hordeking: vol_id /dev/hdxy20:53
=== Twigaathy is now known as Twigathy
=== Twigathy is now known as Twigaathy
Linux^Warrioraahhh the sun it burns IT BURNS......20:53
innomenDasEi, the libs are there and installed but i cant find a way to execute them20:53
fumexbrasero has be undinstalled as we speak id   lkie it noway20:53
seppiandroid6011: for fun, try ubuntu minimal install, and for servers, ubuntu-server20:53
android6011edbian: i wanted to do a server install for file server, but I want a mythtv backend also and there is no tv tuner drivers in the server kernel20:53
DasEiinnomen: you got a tarball of it ? see:20:53
DasEi!compile20:53
ubottuCompiling software from source? Read the tips at https://help.ubuntu.com/community/CompilingSoftware (But remember to search for pre-built !packages first)20:53
alankila_hmm, hang on, vol_id seems to be gone these days20:54
seppiandroid6011L neighter of which come with xorg20:54
Linux^Warriorok all thx 4 help I try download 6.06 & run it.... wish me luch sigh20:54
innomenDasEi, yes but as i said the whole make process fails misrably20:54
Hordekingalankila_: It had an error opening the volume...20:54
innomenDasEi, are you 32bit i386?20:54
edbianandroid6011: Just install the typical ubuntu and then install the packages you want for you file server (sshfs, cifs, nfs, samba)20:54
android6011seppi: i just tried a min install, but im on a certain network right now, and i cant authenticate doing min install20:54
JohnTeddyerUSUL: I commented out the line in /etc/udev/rules.d/70-persistent-net.rules, but when I reboot, it just makes a new line removing my comment.20:54
alankila_Hordeking: probably needs root access as it reads the filesystem header stuff, or something20:54
DasEiinnomen: no, but could fire up a vm, few minutes ..20:54
Hordekingalankila_: Does the volume need to be unmounted?20:54
android6011edbian: thats what i planned on doing20:54
seppiandroid6011: are you on a dynamic IP, or static?20:55
JohnTeddyerUSUL: I did this '#20:55
innomenDasEi, if you were to make a deb for me i would be a very happy camper but it'll be a massive hassel so i understand if you'd rather not :)20:55
Hordekingalankila_: Nevermind. You were right, needed to use it as root20:55
heatmzzrWill Alpine automate a email, resend every hour or so?20:55
JohnTeddySUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:14:a4:b8:a1:20", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"'  ; but after reboot it just makes the same line but eth1, etc20:55
James192345After I activate the NVIDIA Driver v180, is there anything else I have to run in order to make it safe?20:55
dajhornHordeking: sudo blkid /dev/sda120:55
The-PhoenixDoes any one know of a good program I can use to create an image of my HDD?20:55
android6011seppi: dynamic, but they have a "safe connect" network management and I have to do login, i tried to install links and login that way but it has to be safari firefox or i.e,20:55
edbianThe-Phoenix: dd20:56
android6011so using the min install its too complicated20:56
heatmzzrlooking for an email client that will automate sending email to address every hour????????????20:56
DasEiinnomen: I'm getting it up now, a download for the tarball ?20:56
JohnTeddydajhorn: No, I do want to stop this script. I have many computers, and I want to be able to swap hard disks from one computer to another. Everything works fine, except eth0 can't go up, because the MAC is tied to this udev rule in some way. If it wasn't for this udev rule, what I want is possible and would work fine.20:56
innomenJames192345, give is floaties and a helmet (they grow up so fast dont they) :P20:56
The-Phoenixwill that work for windows and linux?20:56
innomenDasEi, one moment20:56
seppiandroid6011: well, if the network looking at the mac address? Can'y you run a live CD, register it on the network, and then go back to the minimal CLI, or is it session based?20:56
The-Phoenixwill dd work for windows and linux?20:57
android6011seppi: its session based20:57
edbianThe-Phoenix: dd only runs inside linux.  But it will copy any fs yes.20:57
trismThe-Phoenix: you can get dd with cygwin on windows20:57
android6011its a real pita20:57
The-PhoenixI dont really want to run cygwin20:57
dajhornJohnTeddy: Add a stanza for the eth0 device to the /etc/network/interfaces file, reboot, and see it behaves like you want.20:57
seppiandroid6011: if lynx, or links don't work, you may have to go with firefox. xubuntu is the lowest end with an xorg.20:57
innomenDasEi, http://sourceforge.net/projects/projectm/files/20:58
seppiandroid6011: but if you're really worried about any xorg, just run it to run firefox when you need it, and then drop back down to shell20:58
Mr_BagIn ubuntu 9.04 is it possible to change the default browser? 'm useing shiretoko for firefox 3.5, but even time i click a link in another app it opens up the normal firefox installtion "/20:58
android6011seppi: ya, i figured id check into spoofing user agent in links after i got done with the install20:58
HordekingAnyone know what the relatime option is on fstab?20:58
android6011if not then go with xfce or something20:58
edbianMr_Bag: System -> Preferences -> Preferred Apps20:58
alankila_Hordeking: an optimization that reduces accuracy of the "access time" timestamp maintained on every file.20:59
Mr_Bagedbian:Thanks :D20:59
ShoeHow do I put more videos on my iPod? Do I need another application, or can I do it with gtkpod or Rhythm Box?20:59
seppiandroid6011: yeah, go with xubuntu, or install your xorg and xfce with the correct extensions, and then when you connect, just kill gdm, and xorg will only take up space on your compy20:59
edbianHordeking: You want relatime option for all of your local (on a HDD directly connected to the computer).  It has to do with file timestamps.  Check out "man mount"  It's buried somewhere in there.20:59
Hordekingalankila_: So, nothing critical, unless I'm really concerned about knowing when last the file was accessed.20:59
android6011ok. thank for the info20:59
The-PhoenixAre there any programs that run on windows and linux and just create a basic iso image? I dont really need a full back-up utiliy. I just want the ability to create and then reburn HDD images.21:00
seppiandroid6011: np21:00
alankila_Hordeking: unix is very special among platforms that it transforms every read into a write via these atime timestamps. It's a historical snafu.21:00
ShoeHow do I put more videos on my iPod? Do I need another application, or can I do it with gtkpod or Rhythm Box?21:00
alankila_I typically turn these off entirely.21:00
The-PhoenixI guess it doesnt have to run on linux cause I can always just copy all my linux files21:00
JohnTeddydajhorn: What do I add?21:00
Hordekingalankila_: Logically, that makes sense, but I bet that slowed down things a lot.21:00
seppiThe-Phoenix: https://help.ubuntu.com/community/iPodVideoTransferring21:01
innomenHordeking, you cant think logically! these are computers :P21:01
dajhornJohnTeddy: Run `man interfaces` at a prompt, copy-and-paste the example, and set it for your computer.21:01
innomenbeagle, thanks for finding all those file for me :P21:01
dajhornJohnTeddy: You probably want "auto eth0" and "iface eth0 inet dhcp".21:02
DasEiinnomen: apt-cache search  projectm ??!21:02
innomenDasEi, yea displays 4 libs21:02
NiVerTesEvning gents21:02
Hordekinginnomen: Computers not logical? Does not compute!21:02
seppiShoe: https://help.ubuntu.com/community/iPodVideoTransferring21:03
HighLordObsilordy lordy21:03
alankila_but damn, I just can't make java and pulseaudio to cooperate. Or wherever the problem is. I guess next up are radical changes like installing openjdk instead of sun's, but I already have bad experience about that. Shit.21:03
seppiThe-Phoenix: one sec, i think i know what you need21:03
innomenDasEi, wait21:03
innomenDasEi, there is more now21:03
DasEiinnomen: so this is what you want then, install it21:03
innomenDasEi, did you do that?21:03
HighLordObsii can't make my net or my sound work properly, so ahh well21:03
seppiThe-Phoenix: try remastersys, if you want to back up your distro with the way the settings are21:04
DasEiinnomen: he21:05
JohnTeddydajhorn: I already have auto eth0, and iface eth0 inet dhcp. dajhorn This has to do with MAC addresses being tied to a udev rule on the hard disk. So if I swap hard disk to a new machine, eth0 interface can't go up. I need to stop this /lib/udev/write_net_rules script from executing. I can just rm /lib/udev/write_net_rules, and that fixes the problem. But that is a hack. If udev is updated, it will just break it again when i updates the package. I wan21:05
p1oooophello21:05
HordekingAlright, I have a few more silly questions...Is there an Ubuntu DVD that has all of the options on it for desktop and server? Also, with the 32b and 64b libraries and kernels? How do I make synaptic show more packages, for instances, the server daemons and such?21:05
HordekingAs a note, I was running Slackware before, so this was an interesting change for me.21:06
Guest87676xchat -p21:06
dajhornJohnTeddy: If the udev rule is not honoring the config file, and if you want to delete the script that updates the rule, then look at the dpkg-divert program.21:06
p1oooopHordeking: mostly, yes...21:06
DasEiHordeking: dvd always contains either 32 or 64, not both, though could bring it on a double layer, but then only one is bootable. to get more packages, can add sources to sources.list21:07
p1oooopHordeking: what about the libs and kernels21:07
shachafDNS addresses are being resolved to the wrong IPs and then cached. This happens all the time -- it's very annoying.21:07
HordekingDasEi: Is there a list of sources somewhere? I want to add more sources.21:07
shachafHow do I at least clear the cache?21:07
seppiHordeking: I found this thread: http://ubuntuforums.org/archive/index.php/t-850892.html . I don't think there's a conventonal way to do it.21:08
p1oooopshachaf: I remember there is a file21:08
innomenDasEi, and how do i run it? this is a much earlier version as well the page says there is a 2.021:08
ks3JohnTeddy, I've not tried this, but you may be able to add each of your machines MAC addresses to the file and assign them eth0? I would assume that would work as long as you didn't have more than one of them in the machine at a time.21:08
HordekingDasEi: As an interesting extra question, can I cache the installer files so I don't have to re-download them later?21:08
Cyber_AkumaCan anybody help me get Ubuntu installed on my PS3? I have the Ps3 version of the distro, but after I press enter at the bootup screen the installer just meeks mkaing my screen blink21:08
DasEi!latest | innomen21:08
ubottuinnomen: Packages in Ubuntu may not be the latest. Ubuntu aims for stability, "latest" may not be a good idea. Post-release updates are only considered if they are: fixes for security vulnerabilities, high impact bug fixes, or unintrusive bug fixes with substantial benefit. See also !backports.21:08
fumexok guys im kb rat now will let u know the result21:08
innomenDasEi, http://projectm.sourceforge.net/21:08
shamikei want to schedule a program to download at 2 in the morning which app should i use21:08
TheFunkbombI'm having trouble setting up PSAD.  I get this message: Starting Port Scan Attack Detector and associated daemons: [*] Could not find mail, edit /etc/psad/psad.conf at /usr/sbin/psad line 9555.21:08
=== marko-_- is now known as GreenRanger
innomenDasEi, i see21:08
DasEiHordeking: you can store them, see man dpkg, man apt21:09
p1oooopshamike: gnome-schedule21:09
edbianshamike: cron.  But don't ask me how to use it! :P21:09
fumexim doing simulating ju 2 be on the salf side21:09
HordekingDasEi: Sweet.21:09
shamikeok ty21:09
DasEi!!repositories | Hordeking21:09
ubottuHordeking: The packages in Ubuntu are divided into several sections. More information at https://help.ubuntu.com/community/Repositories and http://www.ubuntu.com/ubuntu/components - See https://wiki.ubuntu.com/RecommendedSources for the recommended way to set up your repositories21:09
TheFunkbombany help?21:09
p1oooopshamike: install by typing in the terminal: sudo apt-get install gnome-schedule21:09
innomenDasEi, i would still like version 2,21:09
seppichamikeL you can do some shell coding, loop until 2 am, and then wget21:09
innomenDasEi, can you tell me which tar i should focus on?21:10
Sp0ttercan you use CloneZilla live to clone to a target disk smaller than the source disk if the source disk is not full?21:10
p1oooopinnomen: ahh project M21:10
p1oooopinnomen: there's a post on the ubuntu forums21:10
dvz-what's a good (up-to-date) article and or program for creating flash on ubuntu?21:10
shamikei have gnome-schedule will it get software from the internet sorry if this sounds dumb21:10
p1oooopinnomen: imma look it up for you21:10
Bleupommehello I have a problem with the touchpad , when I type the mouse click randomly. Is there a solution for this?21:11
p1oooopshamike: so.... how do you want to get the software21:11
innomenp1oooop, thank you, i think i've seen it but by no means stop heheh21:11
p1oooopshamike: is there a SVN you can access21:11
Cyber_AkumaIs there anywhere I can ask about this then?21:11
seppidvz-: system -> administration -> USB start up disk creator21:11
nawarguys, I have a question, have any one of you tried finding a solution for integrating his evolution with MS exchange 2007 server21:11
shamikei want to download ubuntu at 2 i am on fap21:11
dvz-seppi: flash animation21:12
TheFunkbombI get this error when I try to set up PSAD: Starting Port Scan Attack Detector and associated daemons: [*] Could not find mail, edit /etc/psad/psad.conf at /usr/sbin/psad line 9555.21:12
erUSULJohnTeddy: what are you exactly trying to do ?21:12
TheFunkbombAny help?21:12
seppidvz-: lol, sorry. Can't you just go to the adobe website and download the *.deb21:12
p1oooopinnomen: http://ubuntuforums.org/showthread.php?t=74979321:12
p1oooopthat's the guide i used21:12
innomenp1oooop, you have it working??21:12
dvz-seppi: i didn't know they had one for linux ...last i checked i was being pointed to f4l which wasn't working well21:12
p1oooopinnomen: yes :D21:12
DasEi innomen: no, the link you gave says version 1.2.0 , too21:13
innomenp1oooop, can you give me the basic run down of how you use it?21:13
trismshamike: schedule wget http://url.to.file.here would probably work21:13
innomeninnomen, why does the main page say 2.0?21:13
seppidvz-: hmmm. Is the adobe editor stable in wine?21:13
erUSUL!appdb21:13
ubottuThe Wine Application DB is a database of applications and help for !Windows programs that run under !WINE: http://appdb.winehq.org - Join #winehq for application help21:13
p1oooopinnomen: ooh... that's a little hard because I have it working on a different machine21:13
innomenDasEi, pardon my overwhelming newbness21:13
p1oooopthis one is too slow21:13
shamikethats it ty trism21:13
dvz-seppi: I've no clue...I'm just looking for an open source flash animation/swf creator21:13
innomenp1oooop, well i mean is it part of something else or stand alone? how do you launch it?21:13
lowlycoderiw there anyway to get xmms/midi to work nice? I have this gigangic midi library that I can't convert to ogg (space issues)21:13
DasEiinnomen: you're in the green area still XD:21:14
Spike1506i wanna beta test karmic, does anyone know if the latest ati drivers are working under karmic?21:14
erUSUL!midi21:14
ubottuTrouble playing MIDI files? Look at https://help.ubuntu.com/community/MidiSoftwareSynthesisHowTo21:14
seppidvz-: let me see what winehq has to say21:14
innomenDasEi, i'm not even green yet i'm still a lumpy seed21:14
p1oooopinnomen: it should be on the list of applications under music21:14
Bleupommetouchpad problems here. Ramdom clicks during typing what can I do?21:14
innomenp1oooop, that is helpful thank you21:14
p1oooopinnomen: *Sound & Video21:14
DasEiinnomen: is where all the trees come from, but let's stay topic21:14
innomenp1oooop, calle dprojectm?21:14
p1oooopyes21:15
shamiketrism: is there a frontend to wget21:15
fbianconiBleupomme: So have you gone into System/Preferances/Mouse ?21:15
p1oooopinnomen: it does need a few packages21:15
p1oooophttp://ubuntuforums.org/showthread.php?t=749793 the first box is full of sources21:15
trismshamike: the reason I suggested wget is cause there is no frontend21:15
p1oooop*packages21:15
DasEiSpike1506: I don't think so, Ati still doesn't like the actual xorg, sometimes depending on card, but generally not21:15
trismshamike: making it easier to schedule21:15
innomenp1oooop, i will follow this guide21:15
Bleupommefbianconi:wait trying21:15
innomenDasEi, i will be abck if i fail21:15
innomenp1oooop, thanks21:16
shamiketrism right21:16
p1oooopinnomen: NP21:16
Spike1506DasEi, ok ty. then im not gonna try it.21:16
* innomen rolls up his sleeves21:16
DasEiSpike1506: I hassled with that, too, you can downgrade xorg21:16
seppidvz-: flashdevelop (@ flashdevelop.org) can be virtualized in something like virtualbox21:16
dvz-seppi: thanks, i'll have a look into it21:16
Spike1506DasEi, what about the kernel?21:16
sn1perin c++, what would be the ideal data type for a variable storing a 10 digit phone number?21:16
Spike1506long?21:16
sn1persorry wrong window21:16
DasEiSpike1506: kernel works with older xorg, no prob21:16
=== stefu is now known as snh0
seppidvz-: you may also want to consider eclipse. Apparently there's a flash extension21:17
Spike1506DasEi, i mean the ati driver21:17
DasEiSpike1506: xorg is the problem , no kernel issue, also see :21:17
trismsn1per: probably string unless you wanted to do something special21:17
DasEi!karmic21:17
ubottuKarmic Koala is the codename for Ubuntu 9.10, due October 2009 - Karmic WILL break - Discussion and support in #ubuntu+121:17
robert__trying to install postfix using sudo aptitude install postfix  but the next window is a image, I cant select anything to continue the install21:17
sergio!list21:17
ubottuThis is not a file sharing channel (or network). If you're looking for information about me, type « /msg ubottu !bot »21:17
Cyber_AkumaKarmig WILL break?21:17
Cyber_Akumawhats that mean21:17
Spike1506ty DasEi21:17
Cyber_AkumaKarmic*21:17
DasEirobert_: try tab21:17
=== GreenRanger is now known as marko-_-
robert__ok21:18
robert__thanks will try21:18
Cyber_Akuma10.04 should be Leaping Lizard XD21:18
DasEiCyber_Akuma: means it's still in progress and can fail21:18
heatmzzr_How do I auto send an email every hour to one recipient?21:19
sn1pertrism:  nope, just reading/writing it to a database for a class assignment21:19
sn1perlol21:19
sn1perthank you though21:19
th0rheatmzzr_: put it in a cron job21:19
dajhornheatmzzr_: Write a script that uses the `mail` command line program, and then put that script in a cron job.21:19
p1oooopheatmzzr_: well... you can use gnome-do and write your own program :D21:19
p1oooopthen run it every hour21:19
seppisn1per: well, its for a 10 digit integer, right?21:20
robert__im an idiot,  tab worked thanks21:20
sn1peryea21:20
heatmzzr_I wish it to send every hour while i am away21:20
DasEirobert_: nah, your upgraded now21:20
seppisn1per: can't you set the maxint internally to something like 9999999999 ?21:21
DasEiheatmzzr_: as said above, read an mail and21:22
DasEi!cron21:22
ubottucron is a way to schedule execution of software/scripts. See https://help.ubuntu.com/community/CronHowto  -  There is also a decent Howto at http://www.tech-geeks.org/contrib/mdrone/cron&crontab-howto.htm21:22
DasEi*man mail21:22
trismstoring phone numbers as one integer is probably a bad idea21:22
trismyou could use an array of integers, but a string would be less storage space21:22
seppitrism: that's true.21:22
trismbecause if you wanted to extrac the area code or whatever, it is alot of masks and shifts21:23
matreya6 I'm trying to get PulseAudio to do 5.1 sound on Ubuntu 9.04 Right now I only get the front speakers to work, everything else stays silent. alsamixer acknowledges the fact that I have 6 chennels available and all the relevant audio controls for the separate channels are turned up. All sound output is set to PulseAudio in configuration21:23
nanotubetrism: how's a 10-digit string less space than an array of 3 2-byte ints?21:24
seppitrism: wait. Wouldn't a defined integer be smaller than the equivilant log of that in characters?21:24
matreya6speaker-test -c 6 gives only sound on the front channels, no rear, no lfe, no center...I'ḿ running Pulseaudio as local user and have added myself to the audio groups pulse-rt and pulse-access21:24
zamolxesquestion, where does grub install by default with ubuntu? i'm trying to repair something and don't know where to point grub-install21:24
mzuverinkI am looking for a voice synth app which will read a file or keyboard input?21:24
nanotubemzuverink: package "festival"21:24
trismnanotube: again, alot of masks and shifts to get the digits21:24
seppinanotube: my thoughts exactly. I may not know the assembly as well. Maybe a defined integer max just masks off the rest?21:24
mzuverinkthankyou21:25
trismnanotube: I was comparing an array of 10 ints verses an array of 10 chars21:25
nanotubemzuverink: np :)21:25
seppitrism: what about an integer with a max of 9?21:25
trismnot saying you can't do it that way, just seems simpler as a string21:25
nanotubetrism: ah, well... yea, but a phone number can be logically broken down into 3 short ints... which is better i think. that said, unless storage space is /really/ at a premium, it may be easier to just work with a string.21:26
=== root is now known as Guest88944
trismyeah I'm not arguing that you can't do it, just not how I would do it21:26
seppinanotube. I was only offerering integers, as he said it was for a database class21:26
seppitrism: yeah, strings would be much easier21:27
Guest88944hello, can anyone help me, i need a package called "glibc-2.0" but don't know how to get it via apt-get install21:27
seppiGuest88944: in 9,04, i see: sudo apt-get install glibc-2.9-121:27
MachaI'm not even sure if ubuntu is to blame here, but I'm not sure where to start: At times, I can't access web sites, but my connection is fine. I can use other things such as IRC or IM fine. Changing browser doesn't help.21:28
nanotubeGuest88944: i think the package name is "libglib2.0-0"21:28
firecrotchMacha: Sounds like a DNS problem to me21:28
Guest88944thanks seppi21:28
nanotubeGuest88944: if it's for compiling stuff, then it's libglib2.0-0-dev"21:28
Machafirecrotch: Would a DNS problem not affect IRC and IM aswell?21:29
seppiGuest88944: np21:29
fbianconi!glibc21:29
ubottuSorry, I don't know anything about glibc21:29
nanotubeGuest88944: yea, listen to seppi if you have jaunty - i'm on intrepid :)21:29
bkoi have a question about upgrading/reinstalling. i need to resurrect some older servers running 6.10 and want to go to 8.04 LTS or 9.04.21:29
DasEi!info glibc21:29
ubottuPackage glibc does not exist in jaunty21:29
Guest88944thanks all21:30
firecrotchMacha: Typically, your gateway (most likely a router) will cache DNS information, and since you probably use IRC and IM often, its stored there21:30
blastimirhello, I have a problem with my (built-in) microphone on acer 7730G, I'm using Jaunty.. It appears that the mic is working (when I tap near it I can clearly hear that sound reproduced on the speakers), but I can't record anything..I simply get a blank file no matter what I try21:30
bkoCan I install a fresh copy from cd without wiping the hard drive?21:30
Guest88944ill try now21:30
ShoeHow can I get videos onto my iPod?21:30
Machafirecrotch: Ok.21:30
firecrotchMacha: The problem is probably your ISP's DNS server21:30
seppiShow, one sec, ill get you the link again21:30
fumexok guys21:30
chris_lenz123Shoe: thats hard in a way21:30
nanotubeGuest88944: generally, just open up synaptic and search for package name "glib", it will show you all matches.21:30
fumexthe simulating done and  im looking at the rport21:30
DasEibko: you could, but not a good idea21:30
JohnTeddy"127.0.1.1 hostname" if this line is removed from /etc/hosts, and when I do 'sudo anything' it tells me 'sudo: unable to resolve host hostname', how can I fix this? and get that line back into that file?21:30
seppiShoe: one sec, i'll get you the link21:30
fumexon the kmb burner21:30
seppiShoe: https://help.ubuntu.com/community/PortableDevices/iPod21:31
bkoDasEi: better idea?21:31
chris_lenz123Shoe: you need to convert your video into a mp4, are you using ubuntu21:31
fumexit qite lenghty21:31
fumexwhat do look 4 ??21:31
DasEiMacha: try an alternate dns server, and put it in /etc/resolv.conf21:31
Shoeyes21:31
fumexi21:31
ShoeThey are .avi's now21:31
MachaDasEi: How do I do that?21:31
DasEibko: do you want to safe your old files ?21:31
JohnTeddyerUSUL: I have hundreds of boxes, all the software is the same, and hardware. I want to be able to swap hard disks easily. It works. but eth0 won't go up because of this udev script/rule.21:31
seppichris_lenz123: you know how to get ffmpeg working in jaunty? the help.ubuntu.com doesn't work21:32
chris_lenz123i just got a program shoe, ill tell you how to get it21:32
Guest88944yeah, the problem is im not using x11, i need it to install RTCW:ET (server)21:32
bkoDasEi: Yes.21:32
Shoego right ahead21:32
DasEiMacha: google free DNS server, fetch one, ping it, put it in resolv.conf, restart network21:32
nanotubeGuest88944: then use "apt-cache search libc"21:32
blastimirsomeone, anyone? :(21:32
chris_lenz123seppi:ffmpeg you can get in resp21:32
seppichris_lenz123: sure, but how do i compile it with the h264 support?21:33
syntaxIs there a way to login your email address threw terminal Example username password21:33
xsadusxquit21:33
Guest88944 < seppi> Guest88944: in 9,04, i see: sudo apt-get install glibc-2.9-121:33
arlesliesyntax: just use the email address as a username21:33
shamiketrism: can i use wget and crontab together21:33
seppiGuest88944: I don't understand your previous question21:33
mzuverinkI do not understand the syntax for festival, just to get a standard out put line read, any voice, help needed.21:33
innomenDasEi, so far so good, its downloading all the source21:34
bkoDasEi: So I guess my question is how do I install a new version while preserving the other files on my HD?21:34
chris_lenz123seppi: that, i dont know. but if he wants to convert an video i use winff,21:34
b3rz3rk3rhey guys, my wireless card has just stopped working completely.. reboot hasnt helped. what should i try next?21:34
seppichris_lenz123: how do you get the h264 support to work in that?21:34
Shoechris_lenz123, were you going to tell me the program you use to convert video formats?21:34
DasEibko : you could use gparted to shrink existing partition , so you get space needed for saving, (/home), then copy it over, so it's an independent partition, then install over the old sys an then mount saved-parti for home21:34
chris_lenz123shoe: ya21:34
blastimir I have a problem with my (built-in) microphone on acer 7730G, I'm using Jaunty.. It appears that the mic is working (when I tap near it I can clearly hear that sound reproduced on the speakers), but I can't record anything..I simply get a blank file no matter what I try, does anyone have any tips?21:35
chris_lenz123seppi: whats h264? im new21:35
seppichris_lenz123: i get Unknown encoder 'libx264'21:35
Guest88944seppi: nanotube asked me to search for it in synoptice package manager, but i don't have a gui :P21:35
DasEi!home | bko21:35
ubottubko: Your home directory is where all of your personal files are usually kept. For moving your home directory to a separate partition, please see: http://psychocats.net/ubuntu/separatehome21:35
trismshamike: yeah, I would just make sure to use -O on wget to make sure you know where the file is going21:35
Guest88944synoptic*21:35
seppichris_lenz123: thats the mp4 ipod format21:35
bkoDasEi: Thanks, I will give that a try21:35
bkothanks for the link ubottu21:35
Guest88944thanks all for your help21:35
DasEi!brain | bko21:35
ubottubko: Hi! I'm #ubuntu's favorite infobot, you can search my brain yourself at http://ubottu.com/factoids.cgi - Usage info: http://wiki.ubuntu.com/UbuntuBots21:35
chris_lenz123hm21:36
seppiGuest88944: i think nano gave you a CLI command21:36
blastimirblast21:36
nanotubeGuest88944: if you don't have a gui, try "apt-cache search" from the cli, as i said.21:36
shamikecool ty21:36
macd!mta21:37
ubottuA Mail Transfer Agent (MTA) is the server software that sends and queues mail. The default MTA (and !MDA) on Ubuntu is !postfix ("exim" is also officially supported). See also !MailServer and !MUA21:37
chris_lenz123seppi: try again  i guess in package manager, download ffmpeg21:37
b3rz3rk3rhey guys, my wireless card has just stopped working completely.. reboot hasnt helped. what should i try next? Output from "lspci" gives: AR5008 Wireless Network Adapter, but it doesn't show up in the network manager at all anymore? Help?21:37
Shoechris_lenz123, come on dude!21:37
chris_lenz123shoe: i sent you a chat room21:37
Shoeoh21:37
seppichris_lenz123: problem is i need to compile it with the h264 support enabled. It just doesnt like compiling :(21:37
kmoore\q21:38
chris_lenz123seppi: i dont know then, sorry21:39
seppiseppi: it's ok. I need to figure out building from source anyway :P21:39
chris_lenz123lol21:39
seppichris_lenz123: and now I'm talking to myself21:39
chris_lenz123seppi: i see21:40
seppi:P21:40
blastimirI have a problem with my (built-in) microphone on acer 7730G, I'm using Jaunty.. It appears that the mic is working (when I tap near it I can clearly hear that sound reproduced on the speakers), but I can't record anything..I simply get a blank file no matter what I try.... no takers?:'(21:40
panfisthow do i remove a user from my system?21:40
SykloneGood afternoon21:40
firecrotchseppi: Whats the error that you guy building it from source?21:40
Sykloneanyone here versed in USB gps devices?21:41
DasEipanfist : deluser21:41
gwildorblastimir, did you check some of the other input setting in the mixer?21:41
seppifirecrotch: oh, i dont even rememeber at this point. I tried this nonsense yesterday.21:41
panfistthanks21:41
seppifirecrotch: when i try again, i'll seek guidance21:41
blastimirgwildor: I pretty much clicked everywhere.. I get a massive feedback when I crank up the mic boost21:42
arleslie panfist: use Administration > Users and Groups21:42
someHmm anyone know what's wrong, my speakers play audio just fine but when I plug in my headphones there's no sound at all21:42
Ky|eFor some reason my evolution email client's send recieve button is greyed out21:42
Ky|ebut I'm on the net21:42
Ky|eand my account's there21:42
PriceyKy|e: are you 'offline'? check the file menu.21:43
blastimirgwildor: that's also how I know that it's working.. but when I use the sound recorder, or using a flash recorder on a web site, nothing.. very weird21:43
Ky|eThanks pricey21:43
Ky|ethat was the issue21:43
gwildorblastimir, im not certain then, normally when‎ i cant record, i have one of the inputs muted....21:43
* Pricey highfives Ky|e 21:44
seppisome: check alsamixer, and make sure nothing's muted21:44
someI did that21:44
someAlthough when I go to "Volume Control", there's no headphone bar21:45
innomenDasEi, its actually installing *hope hope hope*21:45
someand when I typed alsamixer in terminal, there's just "00" on headphone21:45
seppisome; are there any devices that you can select in the volume control?21:46
someIn "Switches" headphone is checked21:46
blastimirgwildor:  maybe you can tell me what's the deal with all the devices? I have: HDA Intel (ALSA mixer), Realtek ALC88 (OSS mixer), Playback: HDA Intel - AL888 Analog (Pulse Audio mixer), and two capture devices21:46
someYes21:46
someOSS mixer etc.21:46
gwildorblastimir, that im not certain of.... its rather new to me....cuz, well, its rather new.21:46
b3rz3rk3rhey guys, my wireless card has just stopped working completely.. reboot hasnt helped. what should i try next? Output from "lspci" gives: AR5008 Wireless Network Adapter, but it doesn't show up in the network manager at all anymore? Help?21:47
gwildorblastimir, as a quick check, load up skype, do the test calll....see what happens21:47
blastimirgwildor: :D well, I can't beat that argument :)21:47
Spike1506how can I check if my graphics card (ati) has 3d support with the open source drivers? I have a Radeon HD 3400 Series21:47
blastimirI don't have a skype account..don't know if it matters21:47
chrism2671i've tried editing ~/.profile to insert an alias but it seems the term in gnome ignores it. what could be the problem?21:47
gwildorblastimir, just get one, they are free21:48
someIn vista it would always display: Your audio jack is now plugged in or something when I plugged in my headphones21:48
gwildorskype is good21:48
DasEiSpike1506: try to enable desktop effects21:48
someSo maybe the soundcard is a bit different?21:48
=== andrea is now known as Guest26691
CopyWriterguys i need help big time21:49
prodigelhi all. anyone into a grub problem?21:49
Spike1506DasEi, good idea, have to uninstall the current ati drivers first then. :)21:49
DasEiSpike1506: on your own risk :21:49
DasEi!envyng21:49
ubottuEnvyNG is a program to install newer version of nVidia or ATi drivers, it can be found in !Universe as "envyng-gtk" (for Gtk/Gnome) or "envyng-qt" (for Qt/KDE). It is NOT a supported method to install video drivers; please only use it if standard methods fail and at your own risk - See also !BinaryDriver21:49
vlad_for some reason whenever i enable effects in gnome the size of my display shrinks-it uses only a quarter of the monitor21:49
daishadari have an .iso file that is a recovery cd for some windows backup software i'm using (shadowprotect).  how can i burn this iso to a usb stick so i can boot from it?21:49
DasEi!details | CopyWriter21:49
ubottuCopyWriter: Please give us full details. For example: "I have a problem with ..., I'm running Ubuntu version .... When I try to do ..., I get the following output: ..., but I expected it to do ..."21:49
vlad_how do i reconfigure it21:50
CopyWriteranytime i copy a file from my network (i'm backing up my windows network to a fileserver) i'm noticing just when it's almost completed literally a few megabytes to go, the filecopy just stops, and apparently just stays there21:50
Spike1506DasEi, ill jtry it ty21:50
CopyWriteri've noticed it with almost all the windows shares that i've tried copying today21:50
CopyWriteralmost 20 pc's21:50
innomenYES!21:51
coordinadorsomebody from diskless workstations?21:51
DasEi CopyWriter : try rsync21:51
CopyWriterhow do i do that21:51
CopyWriteri'm only a week old to ubuntu21:51
CopyWriterlinux as a matter of fact too21:51
innomenGah, SO awesome21:51
DasEi CopyWriter : reasons for this behaviour can vary;; see man rsync, use it in the same way as cp21:51
prodigelhi all. I've booted system rescue cd and I want to install boot on my hard drive. there I have only 2 ntfs partitions. if trying to run grub-install /dev/sda I get this error: Could not find device for /boot: Not found or not a block device. could you tell me what's wrong with my strategy?21:52
DasEi CopyWriter : much better algorithm, debug output, features21:52
gwildorprodigel, why would you want grub w/ only 2 ntfs partitions?21:53
Trijntjeprodigel: what are you trying to do?21:53
=== Guest93061 is now known as mah
prodigelguildor, well I have 3 hdd's two of them broken, did copy the ntfs(windows) partition from one that's ocasionally woking to the third one that works allright, and I want to install grub to avoid windows boot settings errors. It's for my mother in law, she plays games on it21:54
meekatronhello i`m trying to decode some files from flac to wav, my command is [ for i in *.flac; do flac -d "$i"; done] but.. how can i do this recursivly down through folders?21:55
CopyWritergot it21:55
CopyWriterlet's see if it works21:55
CopyWriterim' cheating tho using a gui21:55
CopyWriter:)21:55
innomenKeep on owning people, l8r21:55
prodigelTrijntje: read my message to guildor21:56
unopmeekatron,  while read -r -d '' i; do flac -d "$i"; done < <(find . -type f -iname "*.flac")21:57
ElementalistArgh. I was under the impression the Ubuntu Netbook Remix was, well, made for netbooks. D:21:57
Trijntjeprodigel: i'm not sure how to do that, sorry21:57
unopmeekatron, or perhaps.  find . -type f -iname "*.flac" -exec bash -c 'for i; do flac -d "$i"; done' _ {} +21:57
someAhhh got the headphones working :))21:58
proqwhat is the package that broadcasts a machine's name on the network (as myserver.local)?  this package is not in ubuntu server and I need to install it21:58
prodigelTrijntje: well, shortly said all I want is to install grub onto mbr, but it doesn't work like supossed21:58
meekatronunop: thanks i`ll give them a try..21:58
blastimirgwildor: this is....strange... I have discovered that there are two additional options "Capture" and "Capture 1" which were muted.. I've enabled them, and here comes the funny part: I can record silence! I get a lot of static but not my own voice??21:59
unopproq, nmbd is the daemon, it's part of the samba-common package21:59
ElementalistDoes anyone know if there've been any tests with the Ubuntu Netbook Remix on the Asus EeePC 900?21:59
gwildorElementalist, i use it on my 1000h, its fast21:59
gwildorElementalist, 9.10 atleast21:59
gwildorblastimir, sadly, i can offer no more... did you test skype?22:00
ElementalistAny non-Atom procs, though? The 901s and below don't use Atom.22:00
gwildorElementalist, oh, its a celly.... should still be good, what you using now?22:00
Trijntjeprodigel: I'm still not sure how to do that, sorry22:00
gwildordistro that is22:00
Elementalist9.04, I believe.22:01
jibadeehaElementalist: 901 uses atom22:01
gwildorimo, anything 9.10 is faster than 9.04.... imo22:01
gwildorbrb22:01
blastimirgwildor: SCORE! There is also an options tab you can switch on (why is it not visible by default??) where I simply choose the input source.. apparently I have to set it to "front mic" instead of just "mic"22:01
CopyWritergrsync: i can't browse the network tho i don't know, i know how dumb that would sound22:01
Elementalistjibadeeha: Does it really? Huh... Well, either way, the Netbook Remix is listed as working on the 701 if I remember correctly, and I'm preeeetty sure that doesn't.22:01
Max007Hi22:02
Brazzwhat is the Gnome System?22:02
Max007I'm using compiz + emerald. when I'm in a terminal there's no window border so it's hard to resize the window. Does anyone know a fix ?22:03
Trijntje!gnome|Brazz22:03
ubottuBrazz: GNOME is the default !desktop environment on Ubuntu. To install it from Kubuntu or Xubuntu, type « sudo apt-get install ubuntu-desktop » in a !terminal.22:03
teh_mastahMax007, is that the first time that happened or has that happened before?22:03
Max007teh_mastah: since I use emerald/compiz22:04
teh_mastahMax007, try restarting x22:04
ginohi22:04
Max007teh_mastah: same thing for pidgin window.. no border22:04
BrazzTrijntje: so its not a process I would like to terminate is it?22:04
erUSUL!emerald22:04
ubottuemerald is an obsolete window decorator for compiz. It's unsupported and unmaintained, making issues with it very hard to diagnose and fix. There are no known, supported alternatives.22:04
MyNameIsLucaBrazz: Software that builds a desktop of the name "GNOME" (GNU NETWORK OBJECT MODEL ENVIRONMENT)22:04
Max007teh_mastah: I tried it hundreds of time22:04
teh_mastahMax007, idk what you can do then22:04
TrijntjeBrazz: no, that would be a bad idea22:04
BrazzTrijntje: I see in the system monitor it takes a good deal of CPU usage22:05
Bummeralt+middle-click resize?22:05
CopyWriterwhere would a smb directory be stored22:05
MyNameIsLuca?22:05
BrazzTrijntje: anything I could do to configure it to use less of the cpu?22:05
TrijntjeBrazz: what is the exact process name?22:06
Brazzoh22:06
Adam_eMhi there22:06
BrazzTrijntje: hehe must be late at night and I haven't seen the obvious22:06
BrazzTrijntje: thank you for the information pal.22:06
TrijntjeBrazz: emm, your welcome, what was going one if i may ask?22:07
Elementalist... Well I'll be. D: Evidently I misread. Does the Netbook Remix really depend on the Atom processor that much?22:07
kiaas_Elementalist, I run the UNR on a 1.8ghz P422:07
kiaas_desktop22:08
Adam_eMI just installed ubuntu next to winxp but the root partition is too small so i shrinked the ntfs one with gparted but then the / partition can't use the unallocated space left22:08
BrazzTrijntje: nothing really, I just heard my CPU exauster sound a bit unusual like if I was running many things... maybe its "Audaciou" together with a pdf file I was reading22:08
Elementalistkiaas_, kinda outstrips my 900 Mhz Celeron though. :P Really, everything works fine, except the home interface. Lags absolutely awful.22:08
TrijntjeAdam_em: is your ubuntu system on an extended partition?22:08
coordinadorsomebody from diskless workstations?22:08
CopyWriteri can't find smbmount it's not listed in the repositories22:08
zefyxgrr22:09
yJan_smbfs22:09
NarethI've got a question about firefox, is it possible to upgrade to 3.5 from 3.0, so that it will still update through the update manager?22:09
zefyxthe newest beta of thunderbird isn't creating a junk folder22:09
kiaas_Elementalist, it lags on a 1.6ghz ATOM, and 1.8ghz P4, too22:09
zefyxanyone know wth the problem is.22:09
Trijntje!ff35|Nareth22:09
ubottuNareth: Firefox 3.5 Final is available for Jaunty by installing the package firefox-3.5 and firefox-3.5-gnome-support | FF3.5 is referred to as Shiretoko in your UI, see http://is.gd/1reB3 for an explanation | Hardy & Intrepid: http://is.gd/1jkNY22:09
BrazzTrijntje: and the gnome process I was intending to terminate was the gnome-system-monitor which is the system monitor I am using to check how the CPU usage is, so I just realised it myself after you told me what gnome was22:09
Adam_eMTrijntje: indeed. It is22:09
mixer_ecchime22:09
NarethThank you.22:09
TrijntjeBrazz: haha, i noticed that too, its very heavy for a monitor ;)22:09
Entelini'm installing the server edition, on the software selection page theres a  "virtual server host" option,  what virtulisation software does that install? virtualbox? xen? vmware?22:10
Elementalistkiaas_, ah. Well. Guess I'll have to find an alternative then. KDE 3.5 seems to work well enough on SLAX, maybe Kubuntu 8.04 could work. Or... Something.22:10
TrijntjeAdam_eM: that seems to be a know bug in Gparted. https://bugs.launchpad.net/ubuntu/+source/gparted/+bug/27100722:10
DasEiEntelin: none of them, it's a server-related term22:10
=== mirek is now known as Guest66198
Adam_eMTrijntje: no solution for me then?22:11
yJan_]/UPGRADE22:11
TrijntjeAdam_em: there is a fix in the bugreport, using command line22:11
odinsbaneI want to map a partition on my ubuntu computer as a network drive on my windows computer.  Any suggestions?22:12
Adam_eMTrijntje: i hope i could use that from within livecd22:12
DasEi!samba | odinsbane22:12
ubottuodinsbane: Samba is the way to cooperate with Windows environments. Links with more info: https://wiki.ubuntu.com/MountWindowsSharesPermanently and https://help.ubuntu.com/9.04/serverguide/C/windows-networking.html - Samba can be administered via the web with SWAT.22:12
Mrokiihello all. Is there a way to make the Apple-key (on an Apple-keyboard) take the role of the alt-key?22:12
EntelinDasEi, well what exactly does it install?22:13
TrijntjeAdam_em: you can use the terminal from the live cd applications-accesoires-terminal22:13
DasEiEntelin: I'm overasked22:13
kiaas_It's 91-110F inside my home. I'm not sure which. iMac has seen record highs(for me) today. 79C CPU temp. my other boxes are 48C(with a system temperature of 60C) 59C(with a system temperature of 52C)...and something had a System temp of 65c, with a much lower CPU temp.. I feel like not trusting that one's sensors, though.22:13
kiaas_Does ubuntu do any of its own high-temp shutdowns, or leave it to hardware entirely?22:14
TrijntjeAdam_em: If you are new to linux, i think the best way would be to ask someone you know with more experience to do it for you22:14
indy_hi all22:14
Adam_eMTrijntje: oh by the way. Are you from Holland? :)22:14
TrijntjeAdam_em: yes22:15
indy_can anyone recommend any tips on how to tweak my desktop?22:15
hamdihi22:15
radioman-ltnew wapler?22:15
kiaas_Turn off all the shinies.22:15
hamdiple help me22:15
radioman-lthamdi, take my hand ;]22:15
hamdiexit22:15
Adam_eMTrijntje: i knew it. Taking that from the nickname. You use shortenings that way :)22:15
indy_hamdi: whats up?22:16
MyNameIsLucahamdi: "/quit" ?22:16
hamdiindy help me ple22:16
radioman-ltwher is your hands?22:16
indy_i'll try22:16
indy_i'm no expert myself..but will listen and recommend22:17
kunjiHey everyone, I'm having some trouble playing particular wma files on Ubuntu 9.04.  The problem occurs with various players (Audacious, VLC, Mplayer).  My standard wmas will play, but I have some that were ripped using Windows Media Player at the quality of the cd instead of the default 192 kb/sec and these files will not play.22:17
robertwdfhello. I've somehow managed to remove part of the panel that held the network monitor and bluetooth icons. how can I get them back?22:17
kiaas_hamdi, we don't know how to help..until we know what to help with. EXPLAIN THE PROBLEM. it's the first thing to do, instead of repeating "please help""22:17
TrijntjeAdam_eM: we could talk easier in #ubuntu-nl i think22:17
CopyWriterthere we go, got it done, did the first 4 gb without a problem, thanks DasEi22:17
hamdisome troble22:17
radioman-lti still don't see you ;/22:18
kiaas_kunji, I wonder if they got DRM'd22:18
Dawgmatixkunji - maybe the files have some drm on them ?22:18
hamdikiass thank you so much22:18
indy_robertwdf: right click on task bar and add to bar22:18
kunjidrm'd?22:18
vigorobertwdf: Have you tried the restore at boot option?22:18
zenlunaticrobertwdf: add notification center22:18
zenlunaticor notification area22:19
Adam_eMTrijntje: well if i only knew your native language - sure :)22:19
hamdihelo22:19
gartralandone know how to repair a borked U3 flashdrive's partition table after the U3 software has been removed?22:19
PotetHello. I try to make bluetooth work on my Asus Eee 900, but I've got a problem. When i try to make bluetooth visible under settings, it doesn't work. If i click "Always visible" it will look like it's working, but the next time I staret the program it will go back to hidden. If I click "Temprary visible" it will go straight back to hidden. Anybody knows what Ican do? I'm sorry for my horrible english, I'm norwegian. :322:19
speedxxxcoreVad är det för kommando för att söka filer?22:19
PotetWoha, wall of text.22:19
=== marko-_-- is now known as marko-_-
robertwdfzenlunatic: how do I add notification center?22:19
Adam_eMTrijntje: i can't see a patch you mentioned though22:19
kunjikiaas_, Dawmatrix: I'm not familiar with that term.22:19
kiaas_Fffffffffffffffffffffff... I touched a piece of metal. that's only being heated by the air. It burned. (but not in the "leave a scar" way)22:19
libtechis it possible to connect to a windows 7 machine from ubuntu with remote desktop connection?22:20
robertwdfzenlunatic: found it. thanks!22:20
PotetSpeedxxxcore: Prøv locate filnavn22:20
VCooliorobertwdf: right click panel > add to panel > scroll to notification area > click ok22:20
TrijntjeAdam_em: hmm, its not realy there i see, i thought it was22:20
kiaas_kunji, Digital Rights(Restrictions, really) Management22:20
VCooliorobertwdf: ok, nvm22:20
wjbI've got a strange error with installing Ubuntu from USB...  Trying to install to hd gives 'ext2-fs error group descriptors corrupted'22:20
Dawgmatixwhen you copy a cd in windows media player, by default it puts a "protective cover" on the music which disallows the playing of the music by other computers / players22:21
kiaas_It's a way to lock down a bit of media, and remove Fair Use on any digital content they don't want that part of copyright to apply to.22:21
vigoPotet: Have you used the Preferences>Main Menu settings?22:21
wjbthe install fails and goes back to BusyBox (initramfs) shell22:21
MyNameIsLucawjb: bad hd, or bad hd formatting ?22:21
gartralwjb: did you format the hardrive as ext2 or ext3?22:21
wjbi haven't formatted at all yet... the install fails before that22:21
pcfreak30ok i would like to know. why is it that every linux fps game iplay has hoorble lag and is terribly slow22:21
kunjikiaas: I suppose it's possible, but wouldn't the stuff I ripped at 192 kb/sec be affected as well then?  I was thinking they ripped with some other settings that the normal codecs in vlc, etc.. don't handle.22:21
MyNameIsLucawjb: Your hd could be hosed22:22
wjbthe machine wouldn't boot from CD, so i created a USB from another Ubuntu (9.04) machine and the latest Ubuntu ISO22:22
Potetvigo: it gives the same result22:22
odinsbanepcfreak30: are you using wine?22:22
teh_mastahpcfreak30, what is your graphics card?22:22
pcfreak30no22:22
wjbno the hd is fine-- at least seems to be-- still boots into windows fine22:22
pcfreak30its linux native games22:22
Adam_eMTrijntje: PM.... would you mind?22:22
Trijntjeadam_em: you have to use the command line tool 'parted' to extend the partition22:22
pcfreak30big mmo fps 3d games22:23
teh_mastahpcfreak30, what is your graphics card, and do you have the most up-to-date drivers for it?22:23
MyNameIsLucawjb: Thats not equal to "HD is fine".22:23
vigoPotet: It was worth asking, I have used that route to fix similar errors and such...let me look some,,,,22:23
libtechim able to connect to windows xp with terminal server client, but not windows 722:23
pcfreak30even bzflag sucks22:23
gartralwjb: ok, reboot borked machine, drop into the BIOS and make sure that CDROM is the top boot device, and try to install from cd again22:23
Supersaiyan_IVpcfreak30, turn off compiz before playing try metacity --replace22:23
kiaas_kunji, I havn't used windows in quite a while. Maybe it only applies it to "CD Quality" allowing lesser qualities to go unaffected.22:23
wjbeven with cd as top, it won't recognize it22:23
wjbwe tried that first22:23
pcfreak30saidly i have a tardard dell intergated grphics22:23
gartralwjb: then your disk might be bad22:24
pcfreak30i have a hardware list on my hd22:24
eptalonheyas22:24
Jaesinis it true that sudo is not the same as logging in as root?22:24
kiaas_pcfreak30, that's probably Intel then, and Intel's graphics are quite slow. some get by ok at low settings, some don't.22:24
MyNameIsLucapcfreak30: have you to be tardard barnyard ?22:24
ecumenicalmy mouse is gone, how can I get to keyboard prefrences to enable arrow keys to move the cursor? Also, where is a good resource to learn keyboard shortcuts?22:24
wjbit could be, but i think the cd issue is different from this one-- the cd doesn't even spin (even though it's the top choice)...22:24
teh_mastahpcfreak30, that is why you are lagging, integrated cards suck for gaming22:24
eptalonIf I install the thing to a virtual disk, is it possible ot create a "live system" CD/DVD form that system later?22:24
wjbi.e., i don't get anything ubuntu22:24
pcfreak30http://rapidshare.com/files/266334562/hardware.html22:25
vigoPotet: Have you looked at /var/lib/bluetooth?22:25
wjbso im using usb version22:25
libtechyeah dont try to game with onboard video22:25
pcfreak30del dem 30022:25
pcfreak303000*22:25
teh_mastahyou could try lowering the graphics settings in-game, but thats about all you can do22:25
libtechpcfreak30: what game are you trying to run?22:25
wjbtrying to get into ubuntu (rather than installing) from usb also fails to initramfs22:25
MyNameIsLucapcfreak30: "del dem" ?22:25
teh_mastahor you could upgrade your gfx card22:25
pcfreak30why does dell gotta ruin games22:25
kiaas_I have had ONE integrated intel video chipset work Alright with videogames. I have had 3(newer ones..oddly enough) that don't do so hot.22:26
gartralwjb: what kind of system is it your trying to get to install ubuntu?22:26
wjbdell optiplex 75522:26
wjbi.e., new22:26
MyNameIsLucapcfreak30: "Dell Dimension 3000" ?22:26
libtechpcfreak30: dell doesn't "ruin" games, you simply need a decent graphics card22:26
Potetvigo: no, i thing i checked the bluetooth-folder in /etc/. I'll check it out now, but I'm not too good at changing text files. :P But thank you, I'll check it out.22:26
vigoPotet: I found this from 2006: http://ubuntuforums.org/showthread.php?t=162007 ,, still looking22:26
gartralwjb: 2 things, 1) please put my name in the post, and 2) your enter key is not puncuation22:27
kiaas_pcfreak30, it isn't dell, it's Intel, with that part. Dell chose the Intel video chipset because it is cheap, and reliable. Intel made that videochipset, because it is cheap, and allows more people to get computers.22:27
ecumenicalI can't get the System menu to open up without a mouse. What is the keyboard shortcut?22:27
kunjikiaas: Could be, though that seems really odd to me... would any of these programs know if it was drm'd?  VLC "plays" the files but I don't hear anything.  MPlayer gives this error: "Cannot find codec for audio format 0x163."22:27
wjbgartal: sorry about the punctuation :)22:27
wjbgartral: and that's how you spell you name...22:27
libtechis there anyway to get better performance with an intel chipset?22:28
gartralwjb: you can use tab after you type "gart" and get your client to autocomplete :P22:28
pcfreak30ecumenical, do a sudo apt-get gnome-control-panel22:28
pcfreak30then run22:28
pcfreak30u can access suuff using tab and arrow keys22:28
streblois there a way to watch what another logged in user is doing?22:28
pcfreak30still gui tho22:28
kiaas_libtech, yeah, install a discrete videocard from ATI or Nvidia22:28
wjbgartral: thanks.  So I can't get into Ubuntu from the USB disk, meaning I can't even "try out" ubuntu on the machine22:28
gartralwjb: do you want this machine to dualboot windows and linux, or just have ubuntu?22:28
roffeIs it possible to have two graphics drivers and "simply" switch between them? At login perhaps22:28
streblofor instance, i have another user logged in on my server right now, and they're trying to set up lucene. i want to watch their progress. is there a way of doing this?22:29
wjbgartral: which doesn't reformat anything, so i don't think it's a disk issue.  Just Linux.  Not a dualbooter22:29
ecumenicalpcfreak30, what does that do? it won't install it.22:29
libtechkiaas_: im on a netbook though22:29
kiaas_libtech, ah, Nothing you can do on netbooks/notebooks22:29
streblobesides constantly cat-ing their .bash_histry22:29
pcfreak30ecumenical, huh, i gotin in linux mint [ubuntu fork] its a control panel like win cp22:29
roffeIs it possible to have two graphics drivers and "simply" switch between them? At login perhaps22:30
strebloi just saw someone using mint this weekend, looks pretty slick22:30
ecumenicalpcfreak30, ok, I have gnome-control-center up22:30
ecumenicalthank you :-)22:30
kiaas_OK, environmental temperature is too high. I feel ill, etc.22:30
wjbgartral: We've just tried running wubi.exe from within Vista, which I thought was going to install the GRUB loader, but it failed after copying files... no change after trying that...22:30
libtechare there other distros that have better support for intel video, or are they all the same basically?22:31
pcfreak30ecumenical,  oh that the name. soz got mixed up22:31
MyNameIsLucaroffe: a good question. you certainly can select a primary chip at xserver startup22:31
gartralwjb: im seeing multiple device failure reports accross the mobo with a google search, Optiplex seem too use strange mobos, even if you could get it working, your faceing: your LAN may not work, your PCI bus doesn't work, and only one ram bus seems too be allocated... Dell optiplex 755 are also labeled "garbage" on the linuxhcl site22:31
eptalonlibtech: probably all about the same22:31
wjbgartral: if we can't even "try ubuntu", could it still be that my disk is a brick?22:32
MyNameIsLucagartral: The Optiplex had broken bioses. Update those22:32
gartralwjb: not necisarily, you can always reload windows...22:32
wjbgartral: ouch.  Well we have a optiplex 750 that worked just fine.  ubuntu 8.4 on that one22:32
gartralMyNameIsLuca: tell it too wjb not me22:32
MyNameIsLucawjb: update the bios22:32
skazi21101hello everybody. please tell me what is wrong. when i try to compile kernel it talking me this http://paste.ubuntu.com/251604/22:32
roffeMyNameIsLuca, I would certanily be in need of it, but I guess one can't switch between them. You can choose desktop environment, so I thought maybe it's the same22:33
wjbMyNameIsLuca: its a brand new machine... now googling for updated bios22:33
MyNameIsLucaroffe: No thats about using profiles/different commands to select a configured video profile from the xserver configuration.22:34
MyNameIsLucawjb. I have bought many new machines with broken bioses. Its nothing new22:34
Ky|elol ya22:35
Ky|eme 222:35
skazi21101please tell me what is wrong. when i try to compile kernel it talking me this http://paste.ubuntu.com/251604/22:35
prince_jammysIf I use a ppa repository to install a certain version of a package that exists in my other repositories, will there be a conflict with which one gets installed?22:35
MyNameIsLucaKy|e: :)22:35
firecrotchprince_jammys: The one with the higher version number will be installed22:36
=== desti_T2 is now known as desti
prince_jammysfirecrotch: thanks.22:36
wjbMyNameIsLuca: now updating from A11 to A14 BIOS...22:37
prince_jammysfirecrotch: and then it can be removed cleanly, correct?22:37
firecrotchprince_jammys: yes22:37
prince_jammyscool22:37
MyNameIsLucawjb. Awesome!!22:37
Potetvigo: When i try to send files to my phone i get the following message: "org.openbex.Error.ConnectionAttemptFailed". I don't know if it's a related problem. Bluetooth is on on my phone, and I have connected to it before.22:37
MyNameIsLucaPotet: Try, try again.22:38
PotetMyNameIsLuca: Ok, thank you22:38
MyNameIsLucanp22:38
MyNameIsLucaPotet: Using wammu ?22:39
vigoPotet: That looks like a Network Error, but that remove and replace should fix any Bluetooth issue, can you connect to any other devices,(printer,phone or whatever) with the Network settings that you have now?22:39
PotetMyNameIsLuca: I don't know... ._. I uses moustly the standard stuff22:40
SaoukaHey all, how does the shutdown script in the X server work compared to using shutdown on the terminal? I'm not sure how the X server has permission to shut it down as a user, but not in the terminal?22:40
gartralandone know how to repair a borked U3 flashdrive's partition table after the U3 software has been removed?22:40
DeathMetalDeanHi, does anyone know with amsn how to add phrases to amsnEliza, it's a plugin. It says  !learn "phrase" "response" - Phrase and response will be added to the dictionary of jake, but when i try it says, jake: Syntaxis error. The right syntaxis for adding phrases is: !learn "phrase" "response"22:40
erUSULgartral: testdisk or gpart ?22:40
MyNameIsLucaPotet: I like wammu a bit as it makes for a good phone/backup/sms-sending/thing... :)22:40
=== The_Toxic_Mite_ is now known as The_Toxic_Mite
MyNameIsLucaPotet: Its getting better22:41
gartralerUSUL: testdisk claims too have fixed the drive, but then i replug it and the partition table was restored too a borked state by the hardware U3 watchdog22:41
wjbgartral: MyNameIsLuca: so after BIOS update, still no success using CD.  USB has same error22:41
DeathMetalDeanHi, does anyone know with amsn how to add phrases to amsnEliza, it's a plugin. It says  !learn "phrase" "response" - Phrase and response will be added to the dictionary of jake, but when i try it says, jake: Syntaxis error. The right syntaxis for adding phrases is: !learn "phrase" "response" so what exactly do I type to add a phrase?22:42
MyNameIsLucawjb: usb-what ? ... stick ?22:42
PotetVigo: I'll check with another phone. MyNameIsLuca: I'll check it out. :D22:42
MyNameIsLucaCool.22:42
MyNameIsLuca:)22:42
vigo:-)22:42
SaoukaDeathMetalDean: What did you type as input?22:43
gartralwjb: again, the Dells are crap, you'ed be better off taking it back, getting a reund, and buying a board, proc, case ram and gfx card and building your own machine22:43
erUSULgartral: well i have a u3 flash pen and did not give any problems ever...22:43
DeathMetalDeanSaouka: I typed !learn "Dean" "what?"22:43
gartralerUSUL: the problem arose after a power failure when i rwas writing files to it22:43
SaoukaDeathMetalDean: Did you try !learn Dean What?22:44
DeathMetalDeanSaouka: yes i did :(22:44
wjbgartral: MyNameIsLuca: yes, usb stick... same error.  On either "Try Ubuntu" or "Install Ubuntu", I'm getting the same issues-- ext2fs- error Block bitmap for group .... and group descriptors corrupted.  Taking back isn't an option-- this is for my school and it's my PI's machine.22:44
MyNameIsLucagartral, wjb: thats not my experience with dells though. The servers have performed very well for me.22:44
MyNameIsLucawjb: Let ubuntu reformat it ??22:44
kiaas_I kinda like dell. they still give support on 10+ year old machines.22:44
umeshhi22:45
gartralMyNameIsLuca: he cant get into the system too allow ubuntu to reformat, it's failing on kernal entry22:45
MyNameIsLucakiaas_: The only brand i truely feel blows, is fujitsu.22:45
wjbMyNameIsLuca: gartral: and I've installed ubuntu on 2 dell machines, one of which was an optiplex.  I'd love to let ubuntu reformat, but how from the BusyBox shell?  I can't even do fdisk22:45
umeshhello i need a help';22:45
* kiaas_ is risking heat stroke to be on IRC...because there's nothing else to do.22:45
PotetVigo: I tryed with my sisters phone, but I didn't even find it. I'll try again tomorrow, she's a bit tired now. (it's midnight in norway)22:45
umeshAny unix experts here?22:45
MyNameIsLucagartral: "failing on kernal entry" ?22:46
erUSUL!ask | umesh22:46
ubottuumesh: Please don't ask to ask a question, simply ask the question (all on ONE line, so others can read and follow it easily). If anyone knows the answer they will most likely reply. :-)22:46
darth10hehe22:46
MyNameIsLucagartral: "failing on kernel entry" ?22:46
kiaas_umesh, which unix? (It's not me)22:46
gartralwjb: your other option, is to pull the drive from the 755 and put it into another machine, load the os, and swap it back into the 75522:46
gartralMyNameIsLuca: ok, sue me for not knowing proper terminology22:46
MyNameIsLucaNoo, not a problem22:46
vigoPotet: Ok, I am still thinking is a Network Error, something in the stream is dropping packets, or something, I do hope that it gets resolved soon for you.22:47
MyNameIsLucaThese are crap problems. Go to #hardwareflorks or something :P22:47
umeshok, i need to know, whether there's an application for terminal based chat?22:47
vigoumesh: irrsi22:47
kiaas_umesh, IRSSI is available on many platforms.22:47
erUSULumesh: an irc client ? other chat protocols ?22:48
signpostwas Xen support taken out of the server kernels?22:48
MyNameIsLucaumesh: irrsi is pretty good22:48
umeshok thatnks22:48
erUSUL!find xen22:48
ubottuFound: libjaxen-java, aide-xen, autopkgtest-xenlvm, convirt, dtc-xen (and 99 others)22:48
goatbarwhich irc channel is the best for packaging questions?22:48
umeshyes i use ubuntu 9.4 desktop22:48
erUSULgoatbar: probably #ubuntu-motu22:48
Ky|epeace22:48
kiaas_I use ubuntu 9.04 desktop. Havn't heard of this 9.422:48
wjbgartral: you mean take the hd from the machine i want to install to and put it into my current machine, then "install ubuntu from within ubuntu"?22:48
DeathMetalDeanHi, does anyone know with amsn how to add phrases to amsnEliza, it's a plugin. It says  !learn "phrase" "response" - Phrase and response will be added to the dictionary of jake, but when i try it says, jake: Syntaxis error. The right syntaxis for adding phrases is: !learn "phrase" "response" so what exactly do I type to add a phrase?22:48
goatbarerUSUL: thanks22:48
leoopa22:49
erUSULgoatbar: no problem22:49
leooks22:49
b3rz3rk3rhey guys, my wireless card has just stopped working completely.. reboot hasnt helped. what should i try next? Output from "lspci" gives: AR5008 Wireless Network Adapter, but it doesn't show up in the network manager at all anymore? Help?22:50
psiborgDeathMetalDean: i think you're better off asking that question to the amsnEliza author22:50
DeathMetalDeanpsiborg: how do i find that out22:50
psiborggoogle usually helps me22:50
wjbgartral: is the ubuntu install cd supposed to be readable from windows vista?  it is not recognized at all...22:50
Luisitoesañol22:50
darth10psiborg,  mostly me 2 :P22:50
vigoDeathMetalDean: MAN?22:50
darth10lol22:50
DeathMetalDean?22:51
Luisito#ubuntu.es22:51
wjbgartral: i ask because the USB stick is readable and has the wubi program that is supposed to help with the installation22:51
b3rz3rk3rDeathMetalDean, the man pages22:51
vigoDeathMetalDean: Use the MAN pages.22:51
signposterUSUL: that didn't help much.  there's no xen-specific kernel package, so I'm asking if the server kernel supports xen (as it doesn't appear to), or if it was pulled22:51
Luisitoespañol22:51
kiaas_wjb, the Ubuntu CD is supposed to use CDFS, and therefor be readable by Windows, Linux, Mac, and any other OS that can read typical CDs22:51
DeathMetalDeanb3rz3rk3r: vigo: What are the MAN pages?22:51
vigo!es22:52
ubottuEn la mayoría de canales Ubuntu se comunica en inglés. Para ayuda en Español, por favor entre en los canales #ubuntu-es o #kubuntu-es.22:52
kunjikiaas: I think that I would need a different codec to play pack these files despite that they have the same extension.  Wiki had this to say: http://en.wikipedia.org/wiki/WMA_Lossless22:52
b3rz3rk3rDeathMetalDean, manual pages22:52
b3rz3rk3rDeathMetalDean, as in:  man (cmd here)22:52
magical_walrusI went to #xampp, but everyone is idling on that channel, so can someone help me with a question on XAMPP for ubuntu?22:52
b3rz3rk3rDeathMetalDean, gives you the manual for that prog22:52
alankila_hmh. Finally discovered the cause of my java-pulseaudio problem. Turns out pulseaudio is able to output via the digital link because it probably opens the iec958 device but java opens hw:0,0 and needs some setting changes in ALSA before it will work.22:52
DeathMetalDeanb3rz3rk3r: ummm how do i get the manual pages O_o22:52
vigoDeathMetalDean: Manual pages, enter the name of the program, and look at the Manual.22:53
b3rz3rk3rDeathMetalDean, use the force22:53
b3rz3rk3rDeathMetalDean, (terminal)22:53
alankila_pulseaudio however changes the mixer setting that chooses between analog and digital routing every time it starts.22:53
psiborgDeathMetalDean: open a console: hit alt+f2 type xterm22:53
vigo!manual22:53
ubottuSorry, I don't know anything about manual22:53
vigowhoops22:53
b3rz3rk3r!man22:53
ubottuThe "man" command brings up the Linux manual pages for the command you're interested in. Try "man intro" at the  command line, or see https://help.ubuntu.com/community/UsingTheTerminal | Manpages online: http://manpages.ubuntu.com/22:53
vigoThank you22:53
b3rz3rk3r;)22:53
DeathMetalDeanpsiborg: vigo: b3rz3rk3r: I typed in amsnEliza into the terminal n' nothin happened22:54
psiborgtry man amsneliza22:54
psiborgnot sure otherwise22:54
b3rz3rk3rDeathMetalDean,  "man amsn"22:54
p1oooophello everyone22:54
=== chal`away is now known as chalcedony
wjbkiaas_: so should i be worried about the fact that Vista can't read the CD?  I've dl'ed  and burned the iso numerous times in an attempt to get a working cd...22:54
p1oooopwjb: does your disk drive work?22:54
p1oooopwjb: you can always try by burning a different CD22:55
b3rz3rk3rwjb, are you burning the .iso as an image or data cd?22:55
p1oooopwjb: ^^22:55
wjbkiaas_: meaning multiple discs.  Yeah, the drive works fine.  I can put in other cd's in just fine.  I'm using Disk Utility in Mac to burn the image22:55
kiaas_wjb, probably.22:55
b3rz3rk3rwjb, when you put the cd in, what happens?22:56
vigoDeathMetalDean: This page explains a bit about MAN. https://help.ubuntu.com/community/man22:56
libtechhow can you check the version of your video driver22:56
p1oooopShoe: bye22:56
=== Shinobi is now known as Guest80340
wjbkiaas_: vista tries to read it and says 'insert a disk into drive D:'  Mac can read the disk fine22:56
p1ooooplibtech: what driver?22:56
DeathMetalDeanvigo: I opened the man amsn but like nothing came up about amsneliza the plugin22:56
p1oooopmesa?22:56
kunjikiaas_: I think that I would need a different codec to play pack these files despite that they have the same extension.  Wiki had this to say: http://en.wikipedia.org/wiki/WMA_Lossless22:56
kiaas_kunji, I don'22:57
p1oooopwjb: okay then... probably formatted as a different filesystem type22:57
b3rz3rk3rDeathMetalDean, if its a third party plugin, you will need to go the authors site22:57
kiaas_kunji, I don't use windows. I don't rip with WMP, so I'm not familiar with the issue* (pesky enter button)22:57
ilyasi want install driver nvidia gf2 on ubuntu 9.1022:57
p1oooopwjb: so sad vista can't read ext422:57
ilyasno show on hardware driver22:58
kunjikiaas_: sorry about that, wasn't sure if you caught the first message.22:58
alankila_ilyas: you need the legacy driver for such an old thing, or just the open-source one, that might work.22:58
wjbp1oooop: so if the disk is in the wrong fs (which could have been a mac disk utility issue) that would prob prevent Vista from reading it, and might prevent it from reading at bootup22:58
vigoDeathMetalDean: This is official, kinda: https://help.ubuntu.com/search.html?cof=FORID%3A9&cx=003883529982892832976%3Ae2vwumte3fq&ie=UTF-8&q=amsn&sa=Search22:58
p1oooopwjb: possibly...22:59
kiaas_alankila_, I don't think the open source one has 3D support of any kind.22:59
wjbp1oooop: We burned a disc from Ubuntu as well and that didn't solve the issue22:59
b3rz3rk3rwjb, if the disk was burned correctly then it will be readable on an computer22:59
alankila_kiaas_: perhaps not22:59
alankila_there are some old drivers around like nvidia-glx-7122:59
b3rz3rk3rwjb, thats sort of the point22:59
vigoDeathMetalDean: Is it the Windows Messenger thing or something like it?23:00
DeathMetalDeanvigo: uhh im usin amsn which is a messenger but im just tryin to get the phrases on amsneliza the plugin :O23:00
wjbb3rz3rk3r: I've tried with two different iso's with two different operating systems (burned in mac and ubuntu) and neither disk can be read in Vista. Both can be read in Mac23:00
=== MadMax is now known as Guest40920
Guest40920hallo23:01
=== Guest40920 is now known as MadMax1
MadMax1ist jemand da? =)23:01
vigoDeathMetalDean: This one says use emsense: https://help.ubuntu.com/community/WindowsLiveMessenger23:02
DeathMetalDeanvigo: why..?23:02
psiborghow do you control it, DeathMetalDean?23:02
DeathMetalDeanpsiborg: control the bot?23:02
gartralwjb: no, if it isnt recognised, theres something wrong23:02
vigoDeathMetalDean: emsense is Debian/Ubuntu ready, looks like, alternative fix.23:02
DeathMetalDeanvigo: i can use amsn but i want to use amsn eliza23:03
b3rz3rk3rwjb, very odd problem you have there.. what can i say.. its Vista :p  Your best bet is to go to the Win/Vista support sites/chans, as this sounds like a vista prob if both linux and mac can read them?23:03
DeathMetalDeanvigo: it's a plugin O_o23:03
psiborgDeathMetalDean: yep, how do you control it23:03
DeathMetalDeanpsiborg:  !learn "phrase" "response" - Phrase and response will be added to the dictionary of jake23:03
vigoDeathMetalDean: Ahh,,ok, still looking....23:03
b3rz3rk3rDeathMetalDean, here is the amsn support forums: http://www.amsn-project.net/forums/viewforum.php?f=1423:03
wjbgartral: but from two different iso's burned from two different os'es?23:04
psiborgDeathMetalDean: what file does that go in.. or who do you say that to?23:04
MadMax1can someone help me?23:04
MadMax1i just installed ubuntu and when the computer loads ubuntu this 2 errors are on the display, after them the system is running normaly:23:04
MadMax1ata1: softreset failed (device not ready)23:04
MadMax1ata3: softreset failed (device not ready)23:04
b3rz3rk3rDeathMetalDean, as the problem you are having is related to aMNS and not ubuntu, they may be able to help you better23:04
FloodBot1MadMax1: Please don't flood, use http://paste.ubuntu.com to paste, don't use Enter as punctuation.23:04
server_sidehow do file perms work?23:04
b3rz3rk3r!pastebin | MadMax123:04
ubottuMadMax1: pastebin is a service to post multiple-lined texts so you don't flood the channel. Ubuntu pastebin is at  http://paste.ubuntu.com | To post !screenshots use http://tinyurl.com/imagebin | !pastebinit to paste directly from  command line | Make sure you give us the URL for your paste - see also the channel topic23:04
DeathMetalDeanpsiborg: i just say it in the chatbox along with talking to someone23:04
MadMax1im sorry23:04
wjbgartral: b3rz3rk3r: i don't really need to have it read in vista, i have a USB stick that would work fine.  The Bios loads from USB stick fine, I can get the Ubuntu splash screen23:05
psiborgDeathMetalDean: okay, let's try it together then, see my pm23:05
wjbgartral: b3rz3rk3r: the issue is that even 'trying' ubuntu from the USB stick doesn't work-- falls back to BusyBox ash23:05
MadMax1can someone help me with my problem?23:06
b3rz3rk3r!question | MadMax123:06
ubottuMadMax1: Please don't ask to ask a question, simply ask the question (all on ONE line, so others can read and follow it easily). If anyone knows the answer they will most likely reply. :-)23:06
mshadlei have onboard hardware raid (or at least fakeraid) but ubuntu sees all the disks manually. how can i make it see the one logical disk it should see?23:06
mtauroOlá23:07
erUSULmshadle: you have to use dmraid23:07
b3rz3rk3rwjb, so vista wants nothing to do with ubuntu is what you're saying?23:07
erUSUL!fakeraid | mshadle23:07
ubottumshadle: Tips and tricks for RAID and LVM can be found on https://help.ubuntu.com/community/Installation/SoftwareRAID and http://www.tldp.org/HOWTO/LVM-HOWTO - For software RAID, see https://help.ubuntu.com/community/FakeRaidHowto23:07
MadMax1so my problem is, when i boot the system this 2 errors are on the screen, and then the system works fine: http://paste.ubuntu.com/251623/23:07
erUSUL!br | mtauro23:07
ubottumtauro: Por favor, use #ubuntu-br para ajuda em português. Obrigado.23:07
wjbb3rz3rk3r: :) i guess.23:07
mshadlei dont want software raid :)23:07
alazyworkaholicMadMax1: I have the same problem, but aside from delaying my bootup for a few minutes I have no trouble.23:08
erUSULmshadle: https://help.ubuntu.com/community/FakeRaidHowto23:08
vigoDeathMetalDean: Webcam?23:08
mtauro#ubuntu-br23:08
nick125softraid is better than fakeraid.23:08
CarlFKhow does someone with XP burn an image?23:08
alazyworkaholicMadMax1: What motherboard are you using?23:08
erUSULmtauro: /j #ubuntu-br23:08
b3rz3rk3rMadMax1, that looks like you ahve multiple drives plugged in that are giving you issues?23:08
CarlFKer,,, how does someone with XP burn an iso to a cd23:08
erUSULCarlFK: use infrarecorder free and great23:08
mshadleim on that page23:08
MadMax1its an Asus M4A78T-E23:09
mshadleyeah i guess i will go and disable raid in the mobo23:09
CarlFKerUSUL: url?23:09
=== jaxdahl2 is now known as jaxdahl
b3rz3rk3rwjb, im afraid we cant really support problems with other OS's in here. maybe if you keep asking someone will have an answer for you.. but idk man.. sry23:09
mshadletell the guy to use md23:09
UnderfootHey could someone help me with a problem23:09
rekmy hd is 57°C23:09
mtaurogirls??????????23:09
MadMax1the problem makes no troubles but i would like to know where it comes from23:09
erUSULmshadle:  sudo dmraid -ay <<< this command should discover the raids in some fakeraid cards23:09
MadMax1i just installed ubuntu so i quite dont know anything =)23:10
wjbb3rz3rk3r: again, I'm just trying to install ubuntu... I have to do it from USB stick bc either my BIOS is lame and won't read the cd or the disk is lame and can't be read.  In either case, I have a USB stick version created from within ubuntu from the latest 9.04 iso. The issue now is that the USB stick installation is being lame.  FOrget Vista23:10
UdarECgood boy)23:10
UnderfootI've been running 8.04 for a while23:10
alazyworkaholicMadMax1: I didn't have this problem when I used 8.04. Upgrading to 9.04 made it appear, I just hope the next one due at the end of October will resolve the softreset error problem.23:10
erUSULmshadle: of course you have to « sudo aptitude install  dmraid » first23:11
MadMax1okay thank you very much23:11
b3rz3rk3rwjb, are you trying to overwrite vista with Ubuntu?23:11
MadMax1can someone give me a link, for new linux users like me?23:11
Underfootand I just upgraded 8.04 to 8.10 then 9.04 and after a few seconds of logging in my mouse stops working.  It's a ps/2 mouse btw.  It doesn't do the same thing with a usb mouse but this is a ridiculously old computer and it only has 2 usb ports so I can't use a USB mouse most of the time23:11
erUSUL!help23:11
ubottuPlease don't ask to ask a question, simply ask the question (all on ONE line, so others can read and follow it easily). If anyone knows the answer they will most likely reply. :-)23:11
erUSUL!doc23:11
ubottudocumentation is to be found at http://help.ubuntu.com and http://wiki.ubuntu.com - General linux documentation: http://www.tldp.org - http://rute.2038bug.com23:11
vigoMadMax1: The forums are always a good place to start23:12
wjbb3rz3rk3r: yes23:12
MadMax1thanks, ill show up again when i have another problem =)23:12
MadMax1gn823:12
Dyno3421Could someone link/tell me the fix to get Unity working for Ubuntu?23:12
erUSULMadMax1: also you can dl ubuntu pocket guide for free23:12
mdgMadMax1: I missed your question23:13
MadMax1where? do u have a link?23:13
b3rz3rk3rwjb, in that case id suggest using a tool like Gparted to wipe your drive, which may solve some of your booting issues23:13
vigoerUSUL: I think I have that bookmarked,,one sec23:13
MadMax1i only asked for stuff that would help me with my new OS23:13
b3rz3rk3rwjb, also, make sure that your bios supports booting from USB, as older machines tend not to23:13
UdarECHello 2 all from Russia)23:13
jpds!yay | keith-23:13
ubottukeith-: Glad you made it! :-)23:13
mdgMadMax1: something in particular you need help with?23:13
erUSULMadMax1: http://lmgtfy.com/?q=ubuntu+pocket+guide23:13
cremasteris there an easy way to search and replace a string in many files in one go?23:13
MOUDHey all23:13
MadMax1no, just in general, how things work here =)23:14
vigoMadMax1: Here and here: http://ubuntuforums.org/showthread.php?t=80140423:14
wjbb3rz3rk3r: like i said, i can boot from usb just fine.  I'd love to use gparted, but i can't install ubuntu and I can't run it either23:14
MOUDI just installed Clamav, how do I update the virus database via terminal?23:14
b3rz3rk3rwjb, you can get a livecd version of gparted (just google for it)23:14
MOUD!clamav23:14
ubottuSorry, I don't know anything about clamav23:14
MadMax1MOUD gave me another question: which anti virus program should i use?23:15
vigoClamAV and or FreshClam, same thing.23:15
wjbb3rz3rk3r: the issue before was that the BIOS wouldn't boot from cd.  Hence the need for using USB23:15
vigo!AV23:16
ubottuA/V software is available, however read this to understand why Linux does not have a virus problem: http://librenix.com/?inode=2123:16
b3rz3rk3rah, so you just need help setting up a bootable usb then?23:16
UnderfootHey, could someone help me with this?  I just upgraded 8.04 to 8.10 then 9.04 and after a few seconds of logging in my ps2 mouse stops working.  It doesn't do the same thing with a usb mouse but this is a ridiculously old computer and it only has 2 usb ports so I can't use a USB mouse most of the time.  This only happened after I installed a nonfree NVIDIA driver, so I think its a driver problem.23:16
kiaas_Viruses on linux don't exist.. if you use WINE, an anti-virus might be a good idea, though.23:16
UdarECUnderfoot: type lsusb first23:16
kiaas_(well, they exist "as demonstration" they don't seem to be out in the wild)23:16
MadMax1y arent there viruses for linu ôO23:17
gartralkiaas_: that's not quite true, there are viruses that attack enterprise level linux systems.. but there more cracking tools than automated viri23:17
b3rz3rk3rMadMax1, see here: http://linux.oneandoneis2.org/LNW.htm23:17
server_sideis there a gui for navigating the shell and setting file perms etc?23:17
Underfoot@udarec Okay, I did that, what do I do know?23:17
Underfootnow*23:17
HordekingMadMax1: Logic would dictate that most of the dumb users are using windows, ergo, almost all viruses are written for flaws in that platform.23:17
kunjiWell I suppose it's time I got around to this, does anyone have recommendations for a virtual machine, to be run on ubuntu 9.04, in order to run windows 7?23:17
MadMax1ALMOST, thats the thing i dont understand23:18
b3rz3rk3rwjb, so do you need help setting up a bootable usb then?23:18
aalevy@kunji VirtualBox23:18
MadMax1but i will read the 2 links posted here.....23:18
UdarECUnderfoot: show me the result23:18
HordekingMadMax1: Well, look at it this way...if you're going to get thrown in jail for a robbery, are you going to steal $5, or are you going to steal $50,000?23:18
wjbb3rz3rk3r: no, i have one already.  I'm getting ext2-fs errors when trying to using it23:18
MOUDthe clamav antivirus database is 20MB? Isn't it a bit big?23:18
UnderfootUdarEC: okay I'll PM it to you23:18
vigoMadMax1: There are viri , but they are mostly written in MS launchables, so use a scanner to keep the others clean.23:18
HordekingMadMax1: It's a risk vs reward thing, as well as a work input vs return thing23:19
MadMax1i would prefer 50.000 =)23:19
kiaas_kunji, VirtualBox. there's an OpenSource edition, and a closed source one. the OSE is available in the repos. the closed one, you have to get from Sun. Both are free. the closed on has 1-2 advantages, mostly direct USB connections to the VM, though.23:19
b3rz3rk3rwjb, did you try and remake the usb to make sure that it isnt corrupted?23:19
imme-emosolHi , is there a way to restore ubuntu's default rc*.d stuff ?23:19
wjbb3rz3rk3r: someone said previously that means my hd is hosed.  I don't think that's the case cause it happens when trying to run ubuntu (not install it) which doesn't reformat23:19
HordekingMadMax1: Most virus scanners on linux are meant to prevent infected windows executables from passing along...23:19
wjbb3rz3rk3r: no, i haven't tried that23:19
imme-emosolI think that I `screwed` up my system ... :S23:19
MadMax1but some crazy guys could code some virus and all linux computers all over the world will be killed isnt that possible?23:19
legend2440MOUD: sudo freshclam      clamav-freshclam has to be installed for it to work23:19
b3rz3rk3rwjb, give that a go first to ensure that isnt the cause of your issues..23:20
danbhfive!virus | MadMax123:20
ubottuMadMax1: A/V software is available, however read this to understand why Linux does not have a virus problem: http://librenix.com/?inode=2123:20
vigoHordeking: Thank you, that is what I was trying to say...you said it better.23:20
prince_jammysMadMax1: it's more difficult for a linux virus to spread.23:20
kunjiaalevy: should I also install the Gtk frontend?23:20
MOUD!anti-virus23:20
ubottuSorry, I don't know anything about anti-virus23:20
MadMax1okay, sry i will read the website =)23:20
imme-emosolNow I read something about redoing the install-scripts or something like that , would that work ?   ( And if zo , how could it be done the best ? )23:20
b3rz3rk3rwjb, if it happens again then we know thats its a hardware error rather than corrupt usb install23:20
aalevykunji, yes23:20
MOUDlegend2440: thanks23:21
kunjiThanks aalevy, and kiaas I'll try out the repositories and we'll see how far I get before I cry for help.23:22
binarydragonGood afternoon23:22
MOUDgood afternoon23:22
vigoimme-emosol: You mean like a dpkg script?23:22
vagothHow do you add a mount to fstab if it isnt a device?23:22
reya276Can i install KDE 4.3 on top of Ubuntu Jaunty running Gnome?23:22
vagothActually, nvm23:23
b3rz3rk3rreya276, yes23:23
imme-emosolvigo: I guess so ...   :S   Will that re-install the symlinks in /etc/rc[0-6].d/    ?23:23
MOUDWhat's a good web browser alternative for Firefox or Opera or Konqueror?23:23
MOUDThat supports flash and java too23:23
reya276b3rz3rk3r: so it wont break my system?23:23
b3rz3rk3rMOUD, there are LOTS! go to add/remove and type "browser"23:23
vigoimme-emosol: Yes, finding it now...23:23
=== kompulsa_dot_com is now known as Tetracomm
danbhfiveMOUD: heh, I think that is all of them.  I know there are a few that are based on firefox, like epiphany and kahekasi (?spelling)23:24
b3rz3rk3rreya276, you are best searching for a tutorial if you havent done it before. google is your friend ;)23:24
MOUDreya276: I installed KDE on my older ubuntu version (8.10) and it works fine. But when you load ubuntu it says Kubuntu since it's now KDE being loaded23:24
kiaas_danbhfive, they aren't based on firefox, they are based on Gecko. Firefox is based on gecko.23:25
imme-emosolSo I guess I'd better not run insserv again any time soon ...   :S23:25
MOUDdanbhfive: Kazehakase, yes23:25
reya276b3rz3rk3r: oh no I can do it myself, add the gpg key, add the backports repos and sudo apt-get install kde23:25
PvpeterHello, I have dual-boot ubuntu and XP.. I have some games on my XP drive (which works with wine), but I was wondering how i can load those games into the game list on playonlinux..23:25
danbhfivekiaas_: yeah, but I thougth Gecko was a ff tech23:25
=== diego is now known as Guest30177
vigoimme-emosol: Here, http://packages.ubuntu.com/search?keywords=deb&searchon=names&suite=jaunty&section=all and is more!23:25
kiaas_danbhfive, it's a Mozilla tech, which Mozilla used to make firefox. Gecko in and of itself is not firefox.23:26
reya276b3rz3rk3r: i'm more concern with "is it safe" to do so23:26
Guest30177sonido23:26
kunji....I'm kind of confused on how I would go about doing this...I already have a partition with windows 7, how would I go about using that for virtualbox?23:28
grkblood13is there a way in gimp to make a selection square of a fixed size liek a box and move it around on the image that i want to crop from until i find the right position?23:29
grkblood13im using whatever version is packed with 9.0423:29
imme-emosolvigo: Hmmm , yes , okay . I think I'll search a bit more myself ( I believe I saw something that started with `dpkg-`   AND besides that , I just had the brilliant idea to run this LiveCD , which ofcourse provides me with way more options then my now corrupted installed version ... :P )   Thanks for your time though .23:29
User9927kunji >  Your question pertains to using Virtualbox under Windows 7?23:30
infomomohey guys! long time no see :D23:31
vigoimme-emosol: My pleasure, dpkg fix is a sorta thing, but there are dh or Deb Helper scripts , still looking for that one.23:31
grkblood13did anyone see my question? im not sure if it went threw because i forgot to nickserv23:31
kunjiUser9927: No, using virtualbox on Ubuntu 9.04 to run windows 7, which is installed on another partition of the same hard drive23:31
erUSULgrkblood13: we see it; no gimp experts around i guess23:31
zefyxhrm..23:32
User9927kunji >  Aha!  Okay, well I've never tried running Windows 7 under Virtualbox in Ubuntu 9.04.  Do you have it downloaded and set up?  Where are you having trouble?23:32
zefyxwhat command would i use to link /home/rt/ & all subdirectorys to /media/storage23:32
prince_jammysgrkblood13: gimp just moves the selected rectangle shape around without showing you a preview, right?23:32
zefyxso, anytime something is written to /home/rt/ it uses the space in /media/storage23:32
infomomoMy ubuntu 9.04 keeps freezing RANDOMLY. I have posted my /var/log/messages here. You can notice today the 3 times it froze with the time 17:43, 50 and 18:17. 2123:32
matreya6I'm trying to setup 5.1 audio on Pulse, using Ubuntu 9.04 64 bits, Realtek ALC1200 onboard sound chip.23:32
zefyxor, would it be easier/better to simply mount my other drive as /home/rt23:32
infomomoMy ubuntu 9.04 keeps freezing RANDOMLY. I have posted my /var/log/messages here. You can notice today the 3 times it froze with the time 17:43, 50 and 18:17. 21 --> SORRY !! :D:D --> http://paste.ubuntu.com/251630/23:33
binarydragonkunji, you will have issues if you install it on the pc and now trying to run it with Virtualbox...Blue screen is what you will end up with23:33
erUSULzefyx: just make the mount point of the disk that mounts in /media/storage be /home/user/rt/ instead ?23:33
aalevyzefyx, mounting your drive there would probably work best23:33
=== The_Toxic_Mite_ is now known as The_Toxic_Mite
planet8What repos do I need to add to get the linux-image-k7 kernel to jaunty?23:33
vagothIs there a way to mount in the fstab where the usual mount command is "mount -t vboxsf GearOS /GearOS" ?23:34
erUSULzefyx: « ln -s /media/storage /home/rt/ » is the other option afaics23:34
imme-emosolvigo: ghehe; "insserv ruined my life" ( title of thread :P http://ubuntuforums.org/showthread.php?t=513866 )23:34
kunjiUser9927: I installed it from the repositories and after opening it I went to new, then next, picked the os and a name for it next, picked the amount of ram to allocate (only goes to 3584 MB though?) next, and I'm not sure what to do at the next prompt.23:34
erUSUL!generic | planet823:35
ubottuplanet8: Background to the decision to replace -686, k7 and -smp kernels with -generic can be found here https://lists.ubuntu.com/archives/ubuntu-devel/2006-August/019983.html (the -386 kernel is still available if needed)23:35
User9927kunji >  What does the next prompt say?23:35
grkblood13prince_jammys, correct23:35
kunjibinarydragon:  That's unfortunate...23:35
grkblood13i dont know how to make a fixed selection size23:35
binarydragonkunji, you also need to install the kernel heades for the Virtualbox to work23:35
grkblood13and move that fixed size around23:35
erUSULplanet8: it is amazing that 3 years from the removal people still ask for a k7 kernel... ;)23:35
planet8ubottu, do you know if they have replaced them on debian also?23:35
ubottuError: I am only a bot, please don't think I'm intelligent :)23:35
vigoimme-emosol: Good one!23:35
parklane79hi23:36
UdarECрш23:36
UdarEChi)23:36
erUSULplanet8: ubottu is a bot. about debian i dunno ask in #debian23:36
prince_jammysgrkblood13: i've experienced that, but don't know the answer.23:36
imme-emosolvigo: Yes , I now see that that thread is also where I read about that suggestion .23:36
vagothHow do I mount in fstab where the command would be "sudo mount -t vboxsf GearOS /GearOS" ?23:36
planet8erUSUL, well as far as I can see, I need that kernel to get full acpi support to my mobile athlon laptop23:36
kunjiUser9927: Select a hard disk image to be used as the boot hard disk....23:36
prince_jammysvagoth: what's the first GearOS in that command?23:36
kunjibinarydragon:  ?23:36
parklane79o great23:36
vagothprince_jammys: The share name23:36
binarydragonkun23:37
vagothas VirtualBox calls it23:37
erUSULplanet8: the k7 kernel only changed some compiler flags for the compiler to make it faster... it should not affect acpi suppot in any way23:37
boty                                                                                                                             ,--,23:37
boty    ,---,                                                  ,--,                              ,--,     ,--,                  ,--.'|23:37
boty  .'  .' `\                             ,---,            ,--.'|                              |'. \   / .`|     ,---.     ,--,  | :23:37
FloodBot1boty: Please don't flood, use http://paste.ubuntu.com to paste, don't use Enter as punctuation.23:37
binarydragonkunji, what was your question23:37
planet8erSUL, it does23:37
parklane79lol23:37
erUSULplanet8: well a kernel bug can happen... report it23:37
User9927kunji >  Ah, okay.  You may need to create a new virtual hard disk.  There should be a set of icons on a toolbar above a screen which normally lists the virtual hard disks.  Mouse over them to see which button does what, and when you find one that says "Create New Hard Disk" or something similar, click it.23:37
planet8erSUL, specific modules are missing23:37
prince_jammysvagoth: ah. i'm ignorant of that :) i bet google ubuntu fstab vboxsf  would give you some examples.23:37
erUSUL!tab | planet823:38
planet8erSUL, yeah I know23:38
ubottuplanet8: You can use your <tab> key for autocompletion of nicknames in IRC, as well as for completion of filenames and programs on the command line.23:38
kunjibinarydragon: What kernel heades are?23:38
prince_jammysvagoth: there's also a virtualbox irc channel.23:38
erUSULplanet8: which ones ?23:38
* vagoth is pained to open Firefox23:38
planet8erUSUL, powernow_k723:38
planet8erUSUL, for example23:38
binarydragonhttp://forums.virtualbox.org/viewtopic.php?f=11&t=834523:38
prince_jammysvagoth: try #vbox  channel also.23:38
binarydragonkunji, http://forums.virtualbox.org/viewtopic.php?f=11&t=834523:38
vagothheh, k23:38
binarydragonkunji, i thougth you had that errror23:39
unfoldinghello23:40
unfoldingtesting one two23:40
vagothStuff it, Ill just make a laucher23:41
vagothlauncher*23:41
User9927kunji >  Were you having trouble setting VirtualBox up generally, or were you getting a specific error?23:41
erUSULplanet8: found this http://www.ode2.com/?p=10 still it is odd that driver was removed... doing some research23:42
DO4NWI'd like to show the gnome-panel only on a specific workspace. any idea on how to do this?23:42
MOUDHow can I change the Grub menu if the folder is Read-only?23:43
planet8erUSUL, thank, thats the exact same problem I have23:43
Dr_WillisDO4NW:  not sure thats doable.. compiz MIGHT have some settings/trick for that.23:43
danbhfiveMOUD: gksu gedit /boot/grub/menu.lst23:44
Dr_WillisMOUD:  its a system type file. so you need 'root' rights to access it.  via sudo like danbhfive  suggests23:44
erUSULplanet8: no problem23:44
MOUDdanbhfive: thanks23:44
kunjibinarydragon:  Sorry, got distracted tinkering with it, no I haven't run into any error messages, just trouble setting it up in general.23:44
DO4NWDr_Willis, thanks. I am trying to solve it with devilspie but don't get good results so far23:44
MOUDDr_Willis: thanks for the info23:44
rfreibergerHello, what is the recommended backup method for a desktop?23:45
kunjiUser9927:  Just general setup trouble.  When I create the virtual disk how large should I make it?23:45
vagothhow do you open file Browser at a specifc location from terminal?23:45
infomomoHey guys! :D Can anyone have a look at my /var/log/messages file to see what might be causing my ubuntu 9.04 to reboot randomly. Time was : 17:43, 17:50 and 18:17,  18:21. can it be a video driver problem? It is a Acer Aspire M5630 . Intel video card. 82G33/G31 Express Integrated Graphics Controller.  Thanks guys! http://paste.ubuntu.com/251630/23:45
omeddragonhow can i fix this cannot unmount volume23:45
Dr_Williskunji:  for vurtualbox running a ubuntu install? 4gb is the min i would use..23:45
DO4NWomeddragon, close all programs that access the volume23:46
danbhfivevagoth: gnome-open23:46
Dr_Willisvagoth:  nautilus /path/to/location    works for me.23:46
DO4NWomeddragon, open a terminal and run lsof /dev/<device> to see which program blocks mount23:46
MOUDHow can I make Windows XP as the default boot in the menu?23:46
vagothBoth work for me23:47
Dr_WillisMOUD:  either edit the 'default'  entry changing the # to be the proper # of the windows entry. Or move the windows entry to the start of the listings.23:47
User9927kunji >  As much as you think it would be practical to have, given your system specs.  So for the *bare minimum*, (according to Microsoft's Website), 1GB RAM (32 Bit)/2GB Ram (64 Bit), 16 GB of Hard drive space, and a decent amount of graphics memory.23:47
kunji Dr_Willis: so I set it to 310 or so, does it matter if it is larger than the real disk?23:47
fccfinfomomo can we see /var/log/kernel and /var/log/syslog23:47
puffI'm using open office to do the final draft of a report.  I wrote the initial draft in HTML, then a coworker imported into doc format (probably using ms-word) and added some stuff, then sent it back to me. From what I can tell, the import seems to have just imported almost all of it as body text, without applying styles at all.23:47
puffWtf it doesn't just do something obvious, like make all <P> elements body text, all <H1> elements headerone, etc, I don't know.23:47
MOUDDr_Willis: ok, I'll do that. thanks23:47
puffAnway, are there any shortcuts to massinging these into using paraghraph styles?23:47
Dr_Williskunji:  310gb>? WHy do you need one that huge for virtualbox? You can always resize it.23:47
User9927kunji >  So add however much you think would be practical to the minimum.  Of course, I'd reccommend more than 1GB of RAM for Windows 7, since I usually use about that for Ubuntu to keep it running smoothly.23:47
danbhfivevagoth: oops, for some reason I thought you needed a web browser  : ), but I suppose gnome-open is flexible23:48
User9927kunji >  Dr_Willis has a good point, you can always resize it later.23:48
koolkatwhat does the error "No application is registered as handling this file" mean?23:48
vagothlol :P23:48
Dark_WolfIs there a reason that Ubuntu won't boot in MS Virtual PC?23:48
koolkatwhen trying to open a drive23:48
koolkata hard drive23:48
vagothIt stopped working with sudo :P23:49
kurumin_alguem ai ?23:49
User9927koolkat >  A physical hard drive, I assume?23:49
User9927koolkat >  IDE, SATA, etc?23:50
kurumin_a mãe d quem ?23:50
=== MidsummerDawn is now known as HighCharity
User9927koolkat >  I suppose what I mean is "is it a standard type of hard drive you'd see everyday".23:50
=== jose is now known as jose_bcn
infomomofccf: Syslog -> http://paste.ubuntu.com/251639/ and kern.log -> http://paste.ubuntu.com/251640/23:51
infomomofccf: thanks23:51
MOUDIs there a working Java edition that works fine with Ubuntu AMD64?23:51
kunji User9927 and Dr_Willis: Alright, deleted that one and made a 50 gig dynamic one.23:51
alankila_MOUD: sun-java6-jdk is the one I use23:51
User9927kunji >  Unless you're planning on storing massive amounts of audio, video, and other media on it, that should do you for the time being.  And it will expand as needed.23:52
Dr_Williskunji:  i rarely need more then 8gb  - unless you are going to do a lot of adding of extras.23:52
MOUDalankila_: do you have any problem with it?23:52
alankila_no.23:52
vagothI have always been curious, what is the vmlinuz file on / and initrd.img23:52
MOUDalankila_: ok thanks23:53
KB1JWQvagoth: Nothing imporant.23:53
KB1JWQvagoth: Just the kernel.23:53
Dark_Wolflol23:53
vagothI thought that was in /boot :P23:53
Dark_Wolfnothing important xD23:53
erUSULvagoth: vmlinuz is the kernel binary initrd.img is the init image23:53
Dr_Willisvagoth:  it could be a link to the one on /boot/23:53
kunjiWell I'm confused about the setup I suppose... since there is already a partition that windows 7 is on that has an amount of physical space isn't there a way of selecting that directly instead of creating a virtual space?23:53
=== JEEB__ is now known as JEEB
vagothSo if its not important, can I delete it *WINK WINK* :P23:54
Dr_Williskunji:  DONT use a 'real' drive/partition/install to run in virtualbox - bad things can happen.23:54
KB1JWQvagoth: Yes, you can.23:54
Dr_Williskunji:  yes its 'doable' but No its not adiviseable.23:54
KB1JWQvagoth: But you should not.23:54
kunjiDr_Willis: Does this mean I should be doing a fresh install then?23:54
Dr_Williskunji:  perhapas as a 'rescue a dead system and save some critical data'  task.. but otherwise no. :)23:54
Dark_Wolfvagoth, sure, and while you'23:54
vagothOh, last question, can the kernel be recompiled while the os is running?23:54
Dr_Williskunji:  Yes..  a fresh install...23:55
Dr_Willisvagoth:  there has to be a kernel going to have a sytem. :) so yes.23:55
Dark_Wolfvagoth, sure, and while you're at it, run sudo rm -rf / :P23:55
zenlunatic vagoth of course23:55
erUSUL!danger  | Dark_Wolf23:55
ubottuDark_Wolf: DO NOT RUN THAT COMMAND That particular command is DANGEROUS and shouldn't be uttered here. REST OF YOU: DANGER, WILL ROBINSON, DANGER! Do not use the command or utter it here thank you!23:55
vagothk, thnx, I must sleep now23:55
Dr_Williskunji:  its possible to take the actal hard drive partition and 'image' it to a virtual disk for virtualbox.23:55
Dark_Wolf:323:55
MOUDWhat's a good windows desktop environment that can be configurable?23:56
kunjiDr_Willis: how do you do that?23:56
vagoth!windows23:56
ubottuFor discussion on Microsoft software, or help with same, please visit ##windows. See http://launchpad.net/distros/ubuntu/+bug/1 http://linux.oneandoneis2.org/LNW.htm and /msg ubottu equivalents23:56
erUSULMOUD: gnome? kde? xfce?23:56
vagothwas wondering if you had that command23:56
vagothxfce is nice23:56
Dr_Williskunji:  i would have to say check the virtualbox docs. and checn out the various virtualbox guides that are online.23:56
vagothGNOME is nice23:56
vagothKDE is horrible23:56
kunjiDr_Willis: I'll look into it.23:57
User9927kunji >  http://ubuntuforums.org/showthread.php?t=76988323:57
pw-toxichi, when i go to suspend and wake my pc up again, i cant hear any sound!  i have to reboot ubuntu to be able to hear sound23:57
xjuniorHi all!23:57
vagothpw-toxic, sounds like a hardware error where the sound card is sleeping23:57
vagothtry your bios23:57
MOUDI want a real looking/feeling of windows. I want to install Ubuntu on the family pc but I want it to look as much as possible like windows.23:57
xjuniorI bought a new LCD Monitor, but Ubuntu is detecting it with a max resolution of 1024x768 (no, it's not wide). How do I change it?23:58
pw-toxicvagoth, i'Ve got an creative x-fi23:58
Dark_WolfMOUD, then install Windows :P23:58
pw-toxicvagoth, there is no bios23:58
vagothMOUD: Then perhaps you should simply use windows...23:58
vagothpw-toxic: Eh, worth a try23:58
Dark_WolfIs there a reason that Ubuntu won't boot in MS Virtual PC?23:58
alankila_There were some odd windows-lookalike window managers back in the day, like IceWM. I'm not sure if they are all dead by now: there are pretty much 3 contenders left for "the linux desktop" and none will look quite like windows.23:58
Dr_WillisMOUD:  actually my wife now wants her 'linux' featutres on windows. She likes the new features of compiz and gnome. :)23:59
Dr_Willisicewm is useable. but the problem with things looking 'like' windows - is that they wont ACT like windows.23:59
alankila_that being said, gnome is instantly recognizable to windows people and has many of the same gui elements in same places.23:59
xjunioranyone?23:59

Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!