-
Notifications
You must be signed in to change notification settings - Fork 0
/
data_dump.txt
4741 lines (4740 loc) · 411 KB
/
data_dump.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Hi there.Need i to be register?
hi is there any chanel linuxmint with many users?
Всё равно монитор неизвестный...
crontab would run everynight at 2am if my understanding is correct? right? ------> 0 2 * * *
If memory serves me well, there was this bootable CD, that could fix any form of bootloader, including of windows and linux .... yet i forgot its name ...
What is the recommended backup program for ubuntu 10.04?
anyone help mee?
im trying to run a backup python script but it bails out because there is a file called .gvfs in my home directory which appears to have user = ? group = ?
what is ubuntu's "chkconfig" equivelent? || how do change which services start and stop at boot?
someone help me?
where do i post a script?
não tenho conhecimento algum de IRC alguém pode me ajudar ?
Hi. How can I have wicd start at boot? I removed networkmanager and installed wicd and wicd-daemon (using apt-get). But at the moment, I need to start wicd manually: sudo service wicd start.
这是我第一次用irc
anyone using FF 3.6.18 give me some help?
What do I do with an RPM File?
does anyone know who's in charge of the Ubuntu website?
i need help in installing gnome 3 in ubuntu 11.04
help when i run "postgres createuser" says, command not found, why??
book should i read to understand Linux ?
whats the best linux mp3 player? (my pc sucks so i need a light one)
всем привет
can i find out, why seamonkey mail is going to close, when i want compose or reply to incoming mail?
I am an Ubuntu noob and have recently been getting blank screen crashes where the only way to get the computer to respond is to litterally kill the power at the power supply. Even the power button (on front) has no effect. I have been googling for this but I seem to be led to this: https://wiki.ubuntu.com/X/Troubleshooting/BlankScreen which is not what I am experiencing - its random interval not on startup.
am i safe using ubuntu and irc, the firewall seems a little slim
есть кто из Россиии
I'm in linux mint and since it's ubuntu based I thought here could help. Anyways, I'm trying to build a package and get "/home/pilojo/Downloads/bzip2/pkgbuild.ini: line 52: makeinfo: command not found
so, i have a cool screenshot of the new oneiric dash. Very beautiful BUT if the background is light its not possible to read anything there.... Why did no one noticed that?
all, have ubuntu one client for Mac OS X ?
So, I've been searching but can't find an answer. Is it possible to upgrade from 10.04 to 11.04 directly without upgrading to 10.10? And would upgrading affect anything on my computer, i.e. break something?
best toolkit for C++ QT or GTKmm?
ubuntu, karmic is missing from http://packages.ubuntu.com/search?keywords=oem, but i dont' see it on http://old-releases.ubuntu.com/releases/ . is there a 3rd place to look?
i'm thinking about installing ChromeOS and messing with it. Any input on ChromeOS? Good, bad?
anyone know the name of the sort that is applied with ls -v
there a direct line to developers where I can make a comment that might get read by someone who can make a real change in the 11.04 installer?
fuck you
alguem do brasil?
who are french here ?
this where I ask general Ubuntu questions?
Can anyone tell me how I can install 10.04 on EC2 in the Free Tier? It only lets me choose the Amazon AMI Linux distributions on the web console. Thanks! :)
i enabled the find mouse option but when i press the ctrl key it is white and i have a white background so can i change the color of that
how do I switch to sudo? su??
Can anyone running bt help with "iwconfig wlan0 essid "<name_of_router>" key "<encryption_key>" ----> Error for wireless request "Set Encode" (8b2a)?
I want to upgrade to natty but i wont be able to connect to internet without the proprietary broadcom wireless driver - can I download it before hand?
anyone available to assist me please?
Quelqun parle francais ici ?
Hi, how do I run java applications in command line? $ java application.jar returns me errors while graphically it doesn't.
is pastebin - yet another thing that has changed since I have done this
Getting this error in Transmission, installed transmission via Ubuntu. Default settings. Can't figure out whats wrong. Error: No such file or directory (/var/lib/transmission-daemon/downloads/*
sorry to bother you folks, but I'm having a little issue, after a recent upgrade of the kernel amongst other things, I am unable to get past the boot splash screen, I'm 90% sure this is video card related as I've seen it mentioned before but I can't seem to pull up the grub2 menu with escape, so my question to you folks is how do I go about removing nvidia drivers on the installation, when I'm booted to the live CD
we please perl, python and c channel, as in programming or scripting lang?
stupind question how do i register my nickname ?
svp j'aimerais k vs m'aidez pour cracker un reseau avec ubuntu
bout fingering u
Could someone please test for me what kernel ubuntu-10.04.3 has? only if you have the .3 version, please. uname -r
when u add a directory to ur PATH does it do recursion to find the program or is there a way to specify a folder and all folders contained within?
Has anyone got any experience with usbip ?
can i install a package but not one of the it's dependencies?
Are there any viruses in ubuntu ?
aguien me podria enseñar a hakear redes
m using Lubuntu 11.04 (lxde/openbox) with pulseaudio and pavucontrol, is there an easy way to lower the volume of just the Firefox application running? Firefox doesn't show up in the pavucontrol dialog.
helow, i have a problem with the wifi conection in puppy 525 , i am conected but i dont surf, thanks
somebody use BT5 ?
alguien que hable espa;ol
Is there a GEANT4 channel?
did they do away with netbook edition for 11.04?
hi, I'm having trouble setting my soundcard to "amplified" and getting no sound (I think that's the problem). What should I do?
how do i get a printer to work on ubuntu?
I've got a problem installing Ubuntu; but this time a different problem. I installed an alternate version of Ubuntu onto my flash drive, with some different drivers, etc. Picking "run Ubuntu from this USB" does nothing, and just restarts the launcher.
hey, im on ubunru 9.04, and when i try to update apt-get, i get many 404 Not found, how should I fix that?
Hey guys, is it suggested to NOT upgrade from the last version of Ubuntu to the latest?
I'm tring to join ##c++ but I can't write anything, is there something I need to do before being able to write?
What's DRM and why is it bad? (sorry if this is the wrong place to ask, but it seems that a lot of Linux users dislike it).
привет всем
am looking for a cheap ($20-$25) wireless PCI adapter that works out of the box (or with jockey) in ubuntu. Suggestions?
Hello all, I bought a domain name from goDaddy.com, already have my ubuntu 10.10 server up and running. Any help on linking my I think it has something to do with Nameservers. Any help?
hi need some help in installing wine 1.3
can someone tells me, how can i set a password for root
the launcher creator is a xubuntu feature of it can be applied in unbuntu 11.04 too?
anyone know about z68 mobo and ethernet problems?
un problema tengo una notebook con windows seven y ubuntu 11.04 y cuando inicia queda la pantalla en negro
Question: Upon booting my computer, it said that a new release of namby or whatever was out, and that i should do-something-something. It installed a GB load of stuff, or so it said,and now I'm unable to do few things. I cannot launch Software-update-center, I cannot apt-get install conkeror, I cannot use my terminal emulator properly urxvt
Hi. A While a go I asked about doing an ubuntu install on less than 3gb hdd, at the time someone suggested to download the alternate and install a minimal and then build form there, and offered a link to a step by step setup. I can't find that info now, googled the whole afternoon and came out empty... anyone can help me?
I've installed ubuntu server 11.04 and webmin. I am trying to set up a web server. Question: do I need anything else for security of the server? Or default install is secure enough?
Anyone have a few minutes to tell me the best way to configure my "abstract" networkign environment?
hey, does anybody know how to fix this error? /usr/lib/i386-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.15' not found
is it about webmin that makes it incompatible with Ubuntu? Why does Ubuntu say the package is of bad quality, yet the rest of the Linux world wanna touch your breasts
uses it without issue?
Anyone in the UK reccomend a good ISP?
guys how to control which program is allowed to access the internet?
latest LTS here. When I login remotely I see that 106 packages can be updated and 61 updates are security updates. However when I do apt-get update; apt-get dist-upgrade, all packages are reported to be the latest. What is wrong?
can anybody help me get adobe flash for uxbun? the site didnt work neither did the software area.
hi - why don't mounted drives show up in the left panel in nautilus in oneiric?
can I force cron jobs to run when there are no users logged on?
Bonjour !
can anyone point me to a good place for help on recovering trucated files on a VFAT filesystem? (think echo "" > file.mp3, not rm file.mp3). fsck.vfat is finding chains of dangling data, and files whose chain length is >0 bytes, but it keeps wanting to truncate the files, not chain them back
you folks like Chopin?
how tu intall ubuntu 10.10 for duel boting?
how do iinstall 3d accelaction?
you help me with ip routes in ubuntu?
i'm sorry i ask tihs again cause i had a phone call ...: in ubuntu 10.04 LTS , i can't modify /etc/network/interfaces... (E45: 'readonly' option is set (add ! to override) ) what can i do??
ciao ragazzi mi potete suggerire come posso installare i driver di un scanner lide 110? sono novello su ubuntu e mi sto cimentando da qualche giorno . grazie per la collaborazione.
movie player in ubuntu?
so is xorg x window manager is preinstalled in ubuntu 11.04
whats the support # for openSUSE?
there some type of #offtopic? - im writing an application via email and my friend copy pasted what got him the job, i just want it reworded so it doesn't look so similar.
Hi, I have the ubuntu server installed but I can't find the "lamp-server" packager in the repository
hey all... i have no sound, but i can turn volume wheel up and down though there is no hardware found in 'sound properties' How to find driver for sound card? please help!
do i remove a log in process or k out a startup process
Hi, I would like to have a mp3 player that have a module to display a giant speaker or subwoofer to put it in full screen
Has anyone tried Gnome 3 to replace unity yet?
guys, does anyone have any good tips on making ubuntu secure?
FFFFFFUUUUUUUUUU Facebook for your complete inability to write proper documentation!!!!!!!!!!
im on a laptop, when I close my lid the laptop goes into sleep...i dont want to it too....how can I set this up?
I'm selling a Ipad2 16 GB 3G (ATT) unopened for $600, am I being ripped off?
почему я нимагу на ubuntu-ru ничево написать в чат
any app for ext3 data recovery pls?
i need help need i install restricted and non free on lubuntu 10.10
whered the administrator tools menu get moved to on the new ui?
Hi, which is best: flash32 or flash64
one gona haelp me?
hwo can i update to new version of ubuntu??
how can i get GLIB or what is the apt-get install command for it
is better client for bt deluge or transmission
Is there any kind of anti-virus for ubuntu?
hi, does anyone know of an irc channel to discuss web hosting issues, specifically domain registration?
do you disable the launcher bar thingy in 11.04
anyone here runs unity?
is unity still the planned UI for all future ubuntu releases?
Where can I find keyboard shortcuts in 11.10?
is it possible to save firefox stored passwords and restore them after a fresh system install?
hello I got a problem with system monitor, everytime I start it it loads then just disappears - need help figuring out whats wrong, new at this
someone please tell me how to install google-voice plugin on natty?
to whom should I report a probable installer bug?
Does anybody then maybe know how to prevent Xorg from starting? Then I will just reboot the system.
s /etc/inittab? i tried locating it using locate and it's not there. where is the file that ubuntu is using for start up apps?
How can I find manually installed apps that are not in the repository & I have forgotten ?
can anyone heklp me
on fait pour parler Français.....?
hi everyone, does anyone know why i drop to busybox every time i log in? i recently installed ubuntu natty... and i have to wait for ages and type "exit" to be able to get the login screen
what does it mean when terminal tells me to run something as root
wanna learn something about linux
rhello, someone knows how to retrieve an IRC nick password ?
gquestion >> I want to change the boot sequence from XP to ubuntu, I remember doing this in /boot/grub/menu.lst, unfortunatelw I dont have a menu.lst at this location (anymore) any clue ?
there any way to open a web browser through the terminal on a remote server?
Hi, trying to do an mdadm --remove /dev/md0 /dev/sda1 but get device or ressource busy ...
народ подскажите как на Linux Mint поставить центр приложений от Ubuntu
is it possible to install ubuntu (desktop) from command-line using another version (without cd) ?
hi, where is sshd logged under ubuntu ? thanks
Greetings #ubuntu. This is the closest freenode has to a hangout for girls, and I wanted some advice on using hair dye. The product I have does not specify whether or not my hair should be dry or wet before beginning. What is the norm with these things?
hi, how can I activate visual effect in ubuntu oneiric?
Is it possible to make Update Manager / apt default to FTP protocol instead of HTTP?
Whether there have Chinese people?
GO VOTEEEEE!
where can I edit ubuntu 11.04 grub menu ?
can anyone here help me with making my custom ISO bootable?
permission do you generally need over a dir and a file to change it's permissions ?
anyone here know alot about 11.04's under the hood features?
does apt-get install dependecies default
I have stupid beginner's problem. I have a server with jaunty (9.04), for which support has run out. I want to upgrade, but cannot find a packet source for the upgrade manager.
having an issue with Ubuntu 11.04 running under VMWare Professional on Windows 7 x64. The VM just randomly turns itself off; I assume Ubuntu is having a kernel panic or something. Where would I look to see what happened? Syslog has no info.
ei poeuqe meu linux nao da boot
am i able to burn another ubuntu cd off of the live boot?
chinese?
i need help with clam antivirus, is anyone available?
can I get synaptic to install in a custom directory? I don't have much room in my 16gb partition, so I'd rather install to the other hard drive
is ekiga still maintained?
Hi, i cant see any video in youtube.. how i can install flash?
s the root password for the ubuntu cd
can someone help me with docky please?
who are the floodbots?
ask,Does anybody here use weechat
should I install and antivirus in my ubuntu machine?????????
how do i install java on ubuntu 11.04
there a factoid on how to play a DVD with the latest UBuntu?
can anyone help me with a problem ive been having
are the packages for Ubuntu only optimize for i386 and x86_64?
do you upgrade the packages that show up in the not upgraded list
I am unable to mount my vfat partition rw.. i was using fstab: UUID=410B-6300 /mnt/FILES vfat user,auto,rw,exec,users 0 0.. this is no longer working. what should i do?
Hi, Hoping someone can help me solve this: I moved my 8.04 LTS Hard drive into a dinosaur PII box after the motherboard crapped out on the old one. Had lots of trouble getting my Internet connection back. Have it now, the connection is on eth0 with DHCP, but when I try and start firestarter, it refuses, saying eth2 is not ready. However, it shows the correct, eth0, as the device on the panel.
up guys. I'm having a predicament with apache on my ubuntu machine, its periodically spiking into like 30 apache threads and grinding to a halt... can anyone point me in the right direction?
could somebody help update java please?
anyone know how to save in backtrack?
the unity desktop now the default or did I accidently grab the notebook iso?
how can i look at the current open windows on ubuntu unity?
anyone here have expierence with android?
have a question about using PAE. What will i be sacrafising if i run 32 bit with PAE rather then full 64 Bit? i have 16 gigs of ram and a 6 core cpu.
а где русский канал ubuntu?
can u tell me any free web hosting sites withnphp support
habla español??
hello.. If i do dd if=/dev/sda3 of=/dev/sdb1.img , will it remove all files in sdb1 or not?
Anyone, terrible experience in attempting to install 11.04 on Windos 7 in Toshiba laptop. Panic while setting up swap, panic while using Firefox
what engine is wiki.ubuntu.com based?
im new to linux jus wanna know how to install java
Hey guys, when I connect usb hdd it mounts automaticly with a specific name. How do I change the name it mounts with?
anyone had any experience installing Ubuntu Server on a Dell T100 or T110?
how can i list also the contents of all subdirectories with "ls"?
Is there any professional video editing software for Ubuntu?
guys, i have a problem trying to use backtrack is anyone up to help?
Hi. I just install ubuntu and I am having a bit of a problem
can I get some help plz?
is this the proper channel to ask questions regarding xen and ubuntu?
Is it possible to have a Unity-style appmenu while using Ubuntu Classic?
Ciao a tutti
all, while trying to install a tar.gz file I get this error when using ./configure , " ./configure: No such file or directory " <-- Linux Noob
is there a way to change the screen color for example i would like to tint my screen red for when im using my computer in the dark
Whats the best laptop to buy for running ubuntu? I dont want to buy apple. I want something that is mobile and powerful (14" at most 7lbs). My budget is $3k.
someone refer me to instructions on how to restore the grub bootloader to my system? I had always used a rescatux live cd to accomplish this but after loading a non-linux OS ontop of my linux instance, my bootloader is gone.
I ran remastersys on my server install to create a live CD, I have a custom TTY1.conf script, it is still correct in the squash file, but when I boot off the CD, it changes the TTY1.conf file. Anyway to stop this?
do i need antivirus program with ubuntu?
you know, if debs for antivir are available for U 10.10 32 or 64bit?
Hello, I definitely have this whole grub thing screwed up. Can anyone point me at a howto for installing GRUB on /dev/sdb while booted to /dev/sda ?
For software raid mirror do my drives have to be identical? I have two 80gb drives but they're not EXACTLY 80gb, which is weird, but they are different brands.
a tutti ho un problema, quando minimizzo una finestra non mi rimane l'icona sulla barra in basso per poterla riaprire e utilizzarla che faccio?
What is the best soft for making backup in Ubuntu? (settings, data, etc.)
what is crond
anyone knows how to manually create an ubuntu usb live? the startup disk creator gives me an error message when booting
there is no /etc/inittab
guys a quick question i register to nikserver of freenode with my email via command in XCHAT how could i change the password
im trying to use this cmd line: java -Xmx1024M -Xms512M -cp Minecraft.jar net.minecraft.LauncherFrame to run Minecraft on ubuntu but i keep getting errors
I want to run windows 7 on my ubuntu 11.04 using the virtual box
how do i make amarok play .mp3 files?
everyone, I have a problem with a flashdrive I have, Sandisk Cruzer U3. Shitty thing loads with some crapware and shows up as both 2 GB filesystem and U3 System. I just want a way to wipe it all away, including the crap U3 stuff so I can install ubuntu on it. But the uninstaller that comes with the U3 crap is windows only and doesn't work under WINE.
Looking to set up the standard LAMP stack on my ubuntu 10.04 Desktop, is there a lamp package or do I have to install them all seperately
is there a channel for ubuntu studio?
por ahi
For some strange reason my core 2 duo 2,4ghz and 4gb of memory isn't enough for ubuntu, it still feels a tad slow and such
Hi, do you know if ext4 has a maximum path length?
knows a DB Design tool for linux like access 2007/2010?
ich suche jemanden der deutsch spricht, am besten aus berlin
Anyone tried that Ubuntu server 11.04 could not find your harddrive?? I just tryed to install (currently running debian 6.0 with no problems) but ubuntu server 11.04 can only see my external harddrive, not the one "in the computer" any ideas?
best,whats the best email client for ubunutu?
hola alguien sabe cuales son los mecanismos y politicas de seguridad que trae ubuntu
ok it says im still on 10.04 so how do i get 11.04 because i tryed to get it from the site and it didnt work
do I install SeaMonkey 2.1 from a repo in Ubuntu?
hello do you speak french
How do we get the close/minimize/maximize buttons back to the right corner of the window?
grub,Hi all. How do you recover a system if the drive that /boot was on was destroyed?
hi, i just upgraded to ubuntu 11.04 and tried to install gnome shell. but it doesn't show up on my login screen ? what has happened ?
when i do 'man' for manual on something how do i kill the process again so i can get out?
do I use pastbin?
guys can you help me
I'm running linux kernel 2.6.32-32-generic, but that's a bit too old for newest nouveau dev build.. how do I get 'freshier' kernel?
anyone know if "ubuntu-11.04-server-amd64.iso" offers a "live cd" boot option??
Hi everyone. If I prefer the "old" ubuntu desktop, what should i do in terms of support(im on 11.4). Just use the classic desktop? Will that disappear?
I installed/activated Nvidia Driver thru 'Additional Drivers' after I reboot I check and see- This driver is activated but not currently in use. How do I make my computer use it.
haq,my ubuntu installation is all messed up. Sound never really worked, and now I broke opengl too. I heard there is a newer version than 10.04 anyway; would upgrading probably help, or should I install it fresh?
where can you get a list of all the chat channels on ubuntu
When I try to run Update Manager, I get this error: Could not initialize the package information: E:Malformed line 86 in source list /etc/apt/sources.list (dist parse) Please fix to continue! ANy help?
ce que quelqu'un connaîtrait Ekiga ?
okay so i installed flash aid, and it searched my system and installed the correct components for flash to work on my system and still flash games don't work
hey guys. I just installed 11.04, I'm wondering how do I tell the "close, min and max" buttons to be on the top right of windows rather than the top left?
do I install sun java? What's the package name?
how to configure sound chipset alc888 realtek in Ubuntu 11.10?
how do I use apt to show infomation on a package, like what it is/what it does
ubuntu have a firewall
So, who owns 'ubuntu' ?
HOLA
good app to create dvd movies !?!?!
what package has bash completion?
USB boot problem: grub boots but when i select anything it go's back to grub
un peut parler ?
Hi all. trying to run an fsck on an ext4 fs, but it just tells me immediately it's clean without properly scanning everything. How can I make it do a proper scan/
i wanted to install Stalker (Game)...the installation under wine works
someone help with after a fixing my hardware my speakers dont work anymore and only my headphones do
using brasero i am burning the windows 7 iso to a dvd and it say 100 percent done and is stuck at creating image checksome and it started at 7 mins and its now at 10 minutes is this noramla
is there anyway i can migrate to gnome 3
am trying to configure postfix to send outgoing mail from ubuntu to my exchange server on the LAN, can anyone help with that?
How can you make Ubuntu not disable unofficial repositories during a distro upgrade?
Have a problems. =Duplicate sources.list entry http://us.archive.ubuntu.com/ubuntu/ lucid-security/universe Packages (/var/lib/apt/lists/us.archive.ubuntu.com_ubuntu_dists_lucid-security_universe_binary-i386_Packages)= what should i do?
hayden panettiere just asked me out!
Bib laden dead
can i change unity defaults, just don't like it want to go back to the old interface
UBUNTU!!! wish i know how to use it a lil more... is there any manual or tutorial for reallllllly dummy users? starting from 0! ?
Hey guys, is there anyone in here that can help me with a macro problem on OpenOffice 3.3.0?
can anyone recomend how to upgrade to gnome3 from unity?
+ channels ? ? ?
How can I install gnome 3 in Ubuntu??
how do i change my user@host, my host? hostname newhostname does not save the changes
I make a drive automatically mount on boot?
I was wondering if anyone using Gnome3 from the PPAs has figured out how to get their network manager not to be the ugly old one?
I am having this error when I try to log onto ubutnu Error: cannot find GRLDR in all drive. CTRL+ALT+DEL to restart
boa noite
Hello. I didn't like unity and want to migrate to xubuntu (several computers). Is there a possibility that Canonical will drop the support for xubuntu because it's not popular?
I am using Ubuntu 10.10 with the open source ATI drivers, are there any bugs I should be aware of in Ubuntu 11.04 before I upgrade?
where can I report a bug without registering to launchpad?
hello. Is there a history of Ubuntu's Update Manager? Since I used the update manager yesterday, some of my projects using opencv are making trouble... so I wanted to check if it has been updated.
witam czy zastalem kogos z polski??
dont get the point in ./configure --prefix=/opt when installing from source. If in Linux an app's files are scattered all over the fs (/usr/bin, /usr/lib, /etc. /var, etc), what is the point in chaging the prefix. What will this change do? What will go to /opt and what will go elsewhere?
howto blocking an IP with iptables in ubuntu / or how i can start or stop iptables
hello, hope anybody can help. I run under ubuntu 10.04.2 LTS (lucid) with KDE but want to update to 11.04 (natty) with GNOME now... what's the best way to do this without deleting all my data.. is there any way to update by cd or apt?! - btw I use two different partitions for / and /home
can I make the launcher auto-hide in natty ?
cual es la sala de español
Hello guys.. I've passed to LPIC1, will I receive CompTIA certification as well?
xica q hable español¿?
the standard 11.04 install disk doesn't support lvm
hi, does anyone know how to disable the xsplash screen at boot up? thanks!!
guys having an issue writing to mine/Minecraft\ Server\ im the owner of it but i get permission denied
is there an ubuntu general chat?
can someone tell me how to disable screen lock for hibernation?
m'insulte si je parle francais?
hello everyone, where i can reach the device manager of the ubuntu ? preferbly an alternative way to the console
Anyone ever get sendmail working on ubuntu? I installed it via aptitude install... also plugged it into my php.ini file. Doesn't work. If I run mail() in a php script the script takes forever and doesn't send. Same if I run sendmail from the commandline. Is there an error log somewhere I can get hints from?
here speak spanish?
bonjour a tous
why has installing gnome3 (on 11.04) given me a horrible theme?
in a recovery effort on my machine, I accidentally installed the 32-bit version but wanted the 64-bit version. is there any way to upgrade a 32-bit to a 64-bit? If not, is there a way to capture all packages installed so I can re-install them automatically? I've spent a good bit of effort restoring my environment before I caught the mistake
how do I move the close/minimize/maximize buttons to the other side of the window? I forgot how to do it and I have no clue how to do it in 11.04
Does anyone have experience with IR Remotes? I'm looking for some help
a little help (well maybe alot). i ran ubuntu (natty) from a live cd and it reported bad sectors on my HD, i'm pretty sure there only write errors not a mechanincal faliure of the disk. I tried formating it didn't help so i wrote 0's to the harddrive using a usb with backtrack. but now it's not letting me install any os to the harddrive...??/
is this 11.04 upgrade worth it?
Hello guys, i need to set my backtrack screen resolution to the maximum window on my dell 1564 laptop, any help with that ?
cannot install nvidia prop drivers : "driver is activated but not in use". any hints?
hi. i;m looking for a linux related programming channel
Hi. I'm booting off a LiveCD to try to fix my other Ubuntu laptop. For some reason the LiveCD tries to mount the bad partition which fails and creates an uninterruptible process. This blocks all other utilities from accessing the partition. How do I boot the LiveCD so that it does not touch the bad partition until I want it to?
haq,Hi everyone. I have a question for you all. Has anyone done an Ubuntu 11.04 minimal install with Gnome 3 successfully? If so, are you experiencing any problems or is everything running overall smoothly?
Ok hdd keeps failing due to read error i have ran smartctl fsck and bad blocks they all come up clean what else should i try?
10,Can anyone tell me when Oneiric Beta2 is expected today?
know how to make w3m display images?
How to check our partition on Ubuntu ?
I have a problem with unity, could anybody help me ?
want to do a USB install of ubuntu
hi folks , im looking for a general chat channel, any suggestions on irc servers and rooms ?
Whats the average wait time for bugs to be fixed on launchad?
have a question, does Ubuntu normally ship with a firewall by default?
hello. how would I best approach installing a single package and its dependencies from oneiric (package that doesn't exist in natty, python3-gobject)?
i have some query regarding my laptop
someone please, please help me with a big problem
siema
whats the name of the program that makes compiz settings?
the Update Manager starts an upgrade, it always gets stuck waiting for me to open the "Details" section, read the change log, and press "q". Surely new users would have no idea it was waiting for that, so this is a bug. What package or config setting did I add that is making it do this?
siema
Anyone available to help me with a problem?
do i check what depends on an automatically installed package?
I am trying to install Ubuntu 10.04 LTS on an older laptop which currently has 9.04 installed. However, it seems it cannot boot from the USB or the Ubuntu install cd. What can I do to fix this?
alguin habla español?
need English - German and German - English dictionary, any Ideas for one?
10,Hi does anyone tried LXC under ubuntu oneiric>?
where can I find features of the ubuntu 11.10 alpha 2?
notice how Obama has no problem doing anything,,,, as long as he uses everyone else's money to accomplish it ;)
Can anyone port scan my public IP for me I'm getting odd results doing it from the internal network
Is there a separate partition for grub?
pessoal
Hi. I'm using Ubuntu 9.04 Jaunty. Apparently the software repositories I had configured are no longer available. How do I easily update my list of software repositories ? I don't want to upgrade my Ubunutu version.
hey anyone know an appropriate channel to ask questions about fail2ban in?
use x64. I'm having trouble with a program that wants to use 32 bit libs. I got the 32 bit lib version & would symlink to it but in /usr/lib I have the x64 version & want other programs to use the x64 version. What can I do to make only a specific program that calls libavformat.so go to the 32 bit lib while others use the x64 version?
谁教我学英语
Hi, is it possible to find a specific text line (for instance: my_text) into a FOLDER with many text files? I mean to look into each one of the files
what is the package name to install the gnome classic desktop in 11.04?
ANYONE: How do I restore ubuntu that gives "grub rescue" when I turn on laptop
algun español ?
package do i install to get all of the dvd and music codecs?
Best media player for Ubuntu? I'm new, but love VLC, is that what everyone else uses too?
anyone know the boot option required as a workaround for Nvidia laptop chipset ?
anyone recommend a wireless network card that runs out the box for Natty 11.04 ?
que version de xubuntu puedo intalar en una pc vieja
quien es programador java?
had a HD mounting problem and had to boot from an ISO disc - can I fix it from here?
i cannot join #PHP channel so i will ask from here :P. if i have array[$i] <-- how i can add value inside of [] like array[$i+1] <-- that doesn't work
有装防火墙的必要吗
is itnunes 10.5 for ubuntu?
Hi, Can I make a custum installation with repositories... from the scratch?
I am trying to install sun JDK on 11.04 and the script has lauched a doc that looks like the "accept the lic." but it doesn't seem to accept input, the OK button is not active. Anbody know how to submit "OK" and get the script to proceed?
want to add natty repos to my 10.04. will i face any problem ?
а кто тут админ?
can I add sources by adding files to /etc/apt/sources.list.d or is it for something else?
wanna help me with a problem burning CD / DVD?
whats a good remote backup tool to use for ubuntu lucid server?
hi, I deleted some files from an usb stick. Is there a way to recover them? I couldn't find them in the local trash
all. Can you confirm that an updated Beta 1 is the same as a final release of Natty ? Thanks.
is this a general chat for ubuntu or just for tech support type stuff
About file permissions, who is/are "group"?
pl,Szukam kogoś z Lubina Polkowic Legnicy Lub Wrocławia do wsólnych projektów
I have updated from 10.10 to 11.04, and am using Unity. (intel i7 core, ati radeon non-free drivers). Since the update, I've experienced a strange problem where the "focused" window gets stuck focused. I cant move it, or escape to anther window. Anyone else experienced it?
hi, i was wondering if there is a tool that lists any system changes like a changelog, perhaps any packages that have been added or removed? does such a tool exist?? thx
do I have to do to get mp3s working?
how do we restrict nautilus to show items only in $HOME
how do i register my nick on freenode
i ask myself if i should install an antivirus on my ubuntu laptop... what do you think?
what is the best Linux for servers?
so how do I unfreeze my nick?
i just did apt-get install php5 and the 5.3.2 version got installed, which is about 8 months old I think... I did apt-get update and upgrade before I installed php5... What's wrong here? Why did I get an old version?
Hola
is it possible to recover data deleted via "rm" command with root priviledge?
anyone know where firefox seaches for addons. i added the libflashplayer.so once and forgot where the fodler was..
everytime I maximize a window, compiz segfaults in libc-2.13.so Any idea?
I am using Dual boot. Now in my ubuntu, i need add some space to disk. I have used gparted and there is 40GB unalocated space. I have created new partition using ntfs. Is that the actual file system? Will this space added to the existing partition?
else who might know where to find un-official repos for jaunty ?
anyone with a eee pc 1015pn here?
is there a better way (i.e. GUI) than editing /etc/sudoers to make sudo not require a password?
there anyway to diffrenciate two audio streams(in a single track) manually from mp3 files? any good mp3 editor for that?
Hello, how can I install GNOME3 in my Ubuntu 11.04?
im trying to send internet to my xbox 360 from my laptop that is connected to it via ethernet cord but the xbox doesnt pick up the internet? any one have an idea of what i should do
unity mandatory on 11.04 or is it optional?
um hi there... i:m a windows user who:s just installed ubuntu w/ unity. where is the control panel or something?
Is anyone aware of a sort of pastebin for pictures? (might be a bit off-topic)
is there a way to install just the kernel and terminal without desktop and stuff?
Trying to install Ubuntu 11.04 and getting Kernel errors when selecting Install. Asus P5P800-SE Motherboard with 2GB Ram 250GB HDD Intel Pentium 4 3.06GHz NVidia GeForce 6200
maybe I'm missing something, but how do I reboot/logout with this new unity interface? and is there an easy way to disable unity?
how can I get my external hard drive to auto-mount during boot in Natty?
i am trying to edit .profile using 'vi .profile' and that obviously is not working can someone help me plz
how to convert file from mac format to dos format in ubuntu
精英
Should ubuntu have an xorg config by default?
how does one mount an external HFS+ LaCie harddrive in read/write mode?
I use Ubuntu 11.04 intel 32bit with Intel 82845G/GL graphic card, without unity. My RAM is 950 MB total and 930 MB used but when i check mem usage, i saw gdm 10%, firefox 17% thunderbird 10% Xorg 12% and that's all the main, any tips ? after a few hours my computer will freeze
I just got an nvidia 6200 for my old rig :) and I get three options for the drivers. I know one says "recommended" but what are the other ones? outdated drivers?
There is no /boot/grub/menu.lst. How can I change which partition is the default boot?
guys... I was installing an app using terminal using apt-get install command... I closed that window by mistake.. how to get it back??
Id like to switch to ubuntu full time. But I have one issue; iTunes, I know wine doesn't have the USB support (or graphics support) for it to run. Any thoughts?
bonjour
have just installed 11.04. How do I configure unity?
oh and someone told me that a good operating system to use is called "backtrack"? is it any good?
how to get a google plus invite?
I had Ubuntu Desktop i386 10.10 and swapped up to 11.04. I had trouble with audio (PulseAudio) and tried to switch to Alsa. I somehow deleted my volume control applet and can't add it again. I clicked to add applet and find many things I can add, but volume is not one of them. Any suggestions?
hi people, i use ubuntu 11.04 at office with 20 client, lasts couple days people tell me ` when computer goes screensaver, after for example 1 hour later, they come back and sit computer , password screen doesnt come ` and computer lock, and they must able to restart pc again. why this makes so ? what can i do for this ? thank you
hey, can anyone suggest a generic "chat" irc room that actually has people on it?
time to time, using right+left mouse buttons at the same time to generate a middle click seems to stop working. Resetting the computer fixes this, but I'd prefer a solution that doesn't require resets
hi, please i need help but im not good writing english, how to join ubuntu channel for spain/spanish speakers? thank you all
hey, I'm looking for an official ARM-Repository for Ubuntu, is there any? I'm on Freescale i.MX515
помагите с проблемкой в панелях гнома
Looking for htc evo irc channel
hola, alguien sabe donde encuentro driver para la Ubuntu 10.1 da la grafica : ilicon Integrated Systems [SiS] 771/671 PCIE VGA Display Adapter (rev 10)
it be a bad idea to have 0 primary partitions and just logical partitions ?
What's a recommended firewall for Ubuntu?
I can't get my ubuntu server to connect to the internet, can some offer any advice?
there a way to backup all my installed packages
I wish to upgrade the kernel linux 2.6.32-27 generic,but i have an older I386;what's the best choice for me?
Hi room - I'm running Ubuntu 11.04 and I can't drag any files onto my Desktop. Any idea ?
the US, starting what age are you eligible to rent a car? I'm 23.
I have many problems with gnome 3:: I can not adjust my screen brightness??
witam
does know the best way to restore iptables configuration on boot? on a vps?
hello boys and girls > does anyone know if there is a channel dedicated to nomachine - nx client/server ???
nessuno che parla italiano?
how do i get rid of unity and bring back default gnome? i don't like the single menu bar approach anyways....
does anyone use kdenlive? i need some help please
Hey guys I have been sudo apt-get update'ing for a while is it advisable to sudo apt-get upgrade and will that change things for the worse?
folks ;) I wonder if there is a downoad history kept in thunderbird, and if yes, wher can I find it ?
Hi does anyone know the ubuntu command for what would usually be httpd -S when using apache2?
I have a question. ;D
all. Just setting up a laptop in 11.04 Installed in English and want to switch entirely to French. Is this possible?
Just upgraded to 11.04 and now looking at installing several programs via sudo-apt get instead of typing them 1 by one in the terminal window is it possible to run a batch? Any links that would show me how?
dou shui?
anyone know how to stream netfix in ubuntu ?
Can someone help me get my headphones working? They were working before I restarted
is there a good link for learning how to install Win7 on an Ubuntu machine (dual boot)
am needing a little help
I don't find the file /etc/inittab in 11.04. where is it?
Would paying Canonical for support help me if the issue was in the kernel?
there a wine channel for ubuntu?
anybody know about ati drivers for bt4
is there any way for me to find out if i have a microphone on my computer?
there any way to make ubuntu's password sessions last longer? typing in my password every three minutes is seriously getting old.
anybody can help me work on the citrix reciever?
how can i update my ubuntu 10.04 server edition to the latest one from shell
with an idea of where i can find the network programmers irc on freenode, or can i simply ask here?
how can i acquire the dictionary which is supposed to come with the default install? it's supposed to be under apps->office, but i dont have it. (relatively fresh 11.04 install)
Need some help here. Been googling for hous now. I installed Ubuntu 10.10 with the windows installer (I'd really like to migrate from win to ubuntu, but this is doing my head in), and now I can't seem to upgrade to 11.04: An unresolvable problem occurred while calculating the upgrade (Before this error I get a message about some packages being disabled). Any hints?
I'm using irssi on ircd-hybrid. Even after I /oper, I can't see secret (+s) channels with /list. What might I be doing wrong?
hey there, i'm trying to use texmaker with 11.04 and it seems the menus have vanished. the menu bar is there, but no menu items appear when a menu is selected. anyone seen something like this?
im looking for a channel supporting youtube questions
there a channel specific to Intel Graphics?
anybody know where i can find ubuntu documentation on setting up coda?
does anybody have an idea of where XChat stores configuration?
estas ?
How do I upgrade from one distro to another?
HI. i have ubuntu 10.04 server isntalled. I changed the cache_dir size in squid from "100 16 256" to "350000 16 256", i have 500 hard disk, Now i am unable to start m squid., I did squid3 -z but no success, says, failed to verify one of the swap directories.. HELP please
want to help me?
русские есть тут
Hi, hab ein problem
guys, I am trying to test 11.04 on a live CD but now it is asking for a login, I never made any accounts so does anyone know how to get around this?
how to play dvd
I have A SSD disc with 12gb free. Still when I start after grub it tells med hd0 out of discspace press any key to continue. How do I get rid of this message?
there another way to download MP3s from the Amazon store in Natty other than using Banshee?
I already asked this before, but I need to know if it is possible to share an internet connection. On the tutorial that I was reading I need a crossover cable. Is there any other approach whithout using a crossover cable? I have my desktop with two network cards, one is connected to internet via wifi and the other to the switch or router via ethernet
I think I need to enable the i965 drivers to enable Unity on this laptop can't figure out how
che e un discorso di merda, ma mia figlia sta navigando in camera sua ed e chiusa a chiave e possibile vedere le pagine cha sfoglia?
I am recording video by desktop recorder but after recording it also gives some small noise how to fix this?
how can I get the old Gnome in Natty?
it possible to isntall and run ubuntu on a raid5 with a dedicated root partition using btrfs for root?
what is Ubuntu Minimal?
anyone know how I can kill a process I started with nohup?
есть раша?
how can i check if there are any updates for my system via command line?
Seems Ubuntu is a bit different then other *nix systems in not enabling a root account by default? How do I check to see if superuser (su) enabled?
what's the best way to create a backup / image of my entire system?
hey guys, i'm wanting to take a picture with my webcam every x seconds, and then compare it to a photo, and if the % difference < 70% then a script is executed, could you recommend me the tools for doing this? thanks.
How can I continue using the Terminal after using sudo gkedit?
do I boot to console instead of boot to X ?
witam wszystkich
is there a cryptkeeper channel, anyone?
network gurus in the house ?
刚刚说汉语的还在吗?
hola soy nuevo manejando ubuntu saben algun comando para cambiar la resolucion a 1024
here knows NFS?
can i restore the old interface in ubuntu 11?
Hola.
a nice laptop if i plan on primarily running ubuntu
I have installed Linux Mint 9 alongside my Windows 7 starter on one of my computers.
crap just upgraded to new Ubunut and the desktop is shit how do I get back to the old layout
do I access the GRUB cli when on boot I'm taken directly into Ubuntu without a grub menu?
im about to install windows 7 on a system that already has a new ubuntu... in an hour when the install finishes im sure it will erase the linux boot, so to fix taht i can use easyBCD to restore the linux boot ??
How can I install the latest Sun (Oracle) java version?
anyone,Has anyone on here used Wine?
does anyone play minecraft on ubuntu
what should be the permissions on .ssh/authorized_keys
Gnome3 offered in the Ubuntu repos?
hi, can anyone recommend a superb FPS game in ubuntu like unreal tournament???
How do I disable X11/GDM on start-up
there anyway I can make the header at the top of this chat page disappear? I am a bit short sighted and it takes up too much space
I am in the process of choosing a laptop for work... I'll install ubuntu on it and I do not want any issue with video, audio, touchpad / whatever.. hibernate and standby should work with no issue. I need at least 4 gb ram, better if more and I want a battery that last for 3 or more hours at least.... any suggestion? (brand / model)
hola
installed the nvidia260 driver back but now i cant set the resolution
Can I ask a question
hello! is upgrading from 10.04 to 11.04 possible/recommended straight through dist-upgrade?
do I replace Unity with Gnome? I hate it.
An ubuntu system of mine is broken and gnome doesn't work properly anymore. How can I use apt-get to reinstall gnome and ALL deep reverse dependencies on the system so that it fixes any and all broken packages?
Hello iam using lucid lynx 10.4 How do you upgrade to newer version?
chinese?
Hey simple question, how to het list of programs that have installed in your machine by apt-get or aptitude? just do not want to use graphical system here
hi, how can I find out what version of nvidia drivers I have installed. 270.41.06-0ubuntu1 is a useless number. I need the nvidia version 11.6 or what ever it is
there any popular gaming irc channels
did anybody knows how to install LAMP
What is the IRC channel for non help related Ubuntu talks?
linux questions: 1) how can i learn how many actual MB each process is using? top tells me a % of memory but not actual memory. 2) how can i learn what is causing my load to be higher? 3) how can i learn how much i/o (and how much avaialble i/o) i have? 4) how can i do the same for networking?
русские есть?
Why Ubuntu 11.04 is TRYING to IMITATE to MACOS?
use shout2send?
ubuntu now too slow what graphical utility to terminate processes apps
Hola
Encrypted DVD support unavailable. <- how do I fix that?
ciao a tutti qualcuno parla italiano??
who help me in configuring bind with webmin?
!! after installing nvidia proprietary drivers I ended up with a ubuntu one-ish desktop. I uninstalled ubuntu-one though but it's still.. where did the old gnome UI go??? Pls help
hi all, when i select boot from cd on mac osx the ubuntu start menu doesnt show up. any ideas?
How can I determine what section a certain package belongs to? For example, what section belongs the package »sudoku« to?
techincal assistance available right now ?
anybody tested wow 4.2 on ubuntu 11.04 yet?
Hello, I have a very silly question. I was trying to get my integrated webcam to work so I downloaded 'webcam' and 'fswebcam'. When I ran them the light next to the cam popped on but there was no gui that came up. Now I haven't the foggiest how to shut the cam off. Can someone help me please?
guys, noob question- I just upgraded to natty and found out my firepass vpn plugin won't work with firefox 4; what's the easiest way to downgrade back to 3.5/3.6?
can somebody explain to me the purpose of the ${debian_chroot:+($debian_chroot)} in the PS1 variable that i get by default after installing the system?.
help needed
do I check whether a certain module is currently running in my kernel? modprobe <module> gives no output.
Hey everyone, I'm having issues with the clock drifting on my Xen VPS. I've installed ntp and ntpdate which sync's the clock periodically, but the clock is still drifting between that time.
Hi-- does anyone know how to resize the mouse cursor in KDE?
me. Via the command line, how can I determine what version of Ubuntu I am running?
Hi, where is a current list of laptops that work well with Ubuntu, including wireless and other stuff?
anyone having mouse problems?
are Ubuntu 9.04 repos still available ? Is it possible to install applications on those distros ?
un français qui traine dans le coin pour un coup de main à une débutante sous ubuntu?
How does one go about adding a folder shortcut to the 'Places' menu?
all, did you hear about a bug with ubuntu one on natty, mine don't connect any more and gives a DBus error message.. ??
do i need to add a multimedia repository to ubuntu same as for debian or are the packages in multiverse current and with all codecs, etc?
i have small ram and i need light browser can you please give me his name please
was wondering if it makes sense to run Linux Mint only from my USB key and not install it
I just wonder, in my ubuntu server, inetd is not installed by default, so what does the system use to handle network request?
ciao a tutti come state?
s the proper syntax for checkinstall provides when the package provides more than one thing?
does anyone know a good firewall and how to configure it
Apparently mozillateam's firefox-next PPA doesn't include Firefox 7 for Natty 64-bit? Anyone know when they'll add it?
do I change the owner and group on a folder when it has a padlock?
Can anyone point me to an *open source* driver for Broadcomm wireless B43 card? I've been going absolutely bonkers trying to make buggy proprietary drivers work with ndiswrapper!
Кто тут по руски пишет?
all, simple question, why is canonical recommending to install 32 for the desktop? what if i have a i5 processor taht fully supports 64bit and have8 GB of ram?
Have any of you tried that Baidu.com Internet Browser yet?
how do i share files?
got a 9.04 cd here, for what version I should update until got a stable one?
anyone got a minute to help a linux noob?
How do i tell ubuntu to switch from PDT time to EST time
all. Is there a way to maximize a window to a certain side of the screen? You can drag a window to the side and it'll maximize it in that space (a la Win 7), but I'd like to configure a shortcut key for it. Any ideas?
anyone running latest 11.04 on x86 or amd64? could you throw me the md5sum of /lib/i386-linux-gnu/security/pam_unix.so ?
Hello, do you know any c support irc channel ? thank you
question....If I download the iso today will it include the updates or does it start off when it was originally released?
chce mi sie spac. Perl, napisalem Perl dla zmylki, zeby ci, co nie rozumieja jezyka pomysleli, ze zadaje pytanie odnosnie czegos zwiazanego z systemem. O, napisze jeszcze JavaScript, to pomysla, ze naprawde mam jakis problem. Zaczna pisac, zebym pisal po ichniemu jezyku albo poszedl na kanal z rodakami, ale oczywiscie tam mnie zjeby zablokowali, stare konie, a zachowuja sie jak 5latki, do tego cnotki niewydymki. Suki. Musze isc do pracy. Milego dnia.
anyone know how to do a low-level format of a drive?
spanish?
i need help how to use teminal
is it safe to install gnome-panel in oneiric?
someone hep me with some facebook promotion?
тут по русски пишут?
Hi. any one know about linux driver for finger print thumb LighTuning
here willing/able to help me with an installation mystery?
hola
Is it possible to Install Ubuntu directly from Internet? (kind of like Gentoo or something?)
there any Italian here?
I have a dvd with a sector error so it's acting up? Can anyone help me save the data on it?
i need help running conky, when i execute it is shown incomplete and enlarged on the lefthand side of the screen
ve forgotten my gnome-keyring password, and I need to reset it. what do I do?
hi, when automounting a pendrive, root gets the ownership, denying me write access. to make sure it's not cause by my user settings, i created a new user, but got the same result. i use ubunut 10.04 How can I get (automatically) write permissions on a pen drive?
how can I know if my video card works on ubuntu 11.04?
amigos! question: is ubuntu 32bit better in terms of battery life expectation?
who speak spanish, cause i need help with wifi driver
Hi afaik flac is a lossless compression, what do the different compression-options effect then? does -5 do worse results (in meaning of sound quality) then --best? or does it take only more time and get smaller outputfiles?
does ubuntu.com not mention anywhere about linux?
what's the command to open a text file using gksudo?
Who can help me, please?
have connected a usb device.what is that device name?
whats a good torrenting program for ubuntu
Does anyone use 11.04 yet?
is the slideshow viewer in ubuntu please?
Ive created a gparted live boot cd. Booted to the CD (actually usb stick) . Trying to resize the local win7 partition on the host drive. When i boot to gparted its got the little caution triangle near the device name and won't let me resize it. Can anyone tell me why this is?
somebody speak spanish?
i download a .deb file how to i install/unpack it?
Hi, how to make a 4gb system only backup on my intenal harddrive?
is there a way to only update packages that are security related?
tout le monde
Hi all, tell me how to set a theme in Xubuntu???
hey, My computers harddrive still randomly goes read-only and requires a reboot and fsck to go back. However the plot thickens as the computer was on all of today and in use for parts of it without it going read-only. I think it's the running of "transmission" (torrent program) that is breaking my harddrive? (although it may just be the heavy harddrive use). Anyone know what it could me?
anyone know how to successfully install and use Burg Bootloader?
Is anyone else having issues with screen corruption around gradients?
Offtopic: applied science vs. Computer science for a career path
is the command for set ubuntu not to ask password when I log in? (turn on the computer)
is there a way to refresh the applications menu without logging in and out to see new programs?
Is it possible to create a launcher for rdesktop in desktop ?
IS SHIT SHIT SHIT SHIT SHIT SHIT SHIT SHIT SHIT SHIT
does ubuntu use salts for hashed passwords
is there a way to delete files that arent on OS drives to the trash?
cannot figured out how to use update-alternaitves, could I get a hand please?
what package installs a java runtime?
okay.. one thing that seems strange to me... why I wasn't asked for setting a root password?
11.10 takes longer to start than 10.04 :-(
does anyone know a very good site for learning more about intermediate terminal commands? thx in advance
is there anyone here who could help answer a question about tri-booting?
help
canal español???
Hi, is it possible with chage to force the user to change his password the next time he connects?
anyone tell me how to make 11.04 desktop boot into a text only mode so the gui is only started by running startx?
Hi guys , i used pendrivelinux.com ( Universal-USB-Installer-v1.5.1.exe ) to install ubuntu to my flash drive .. is there a similar application for ubuntu ..any help pls
whats the best irc client for untuntu that i can get with apt-get
, je suis à la recherche d'une traduction de la documentation d'aide de Nted , en francais of course !
i dont arrived to joint a server chat # login and pass for nickserv
Hi all, just upgraded to Oneiric and I have one package held back "update-notifier-common", apt-get -f install or dist-upgrade don't fix it, trying to install it causes it to report it will remove ubuntu-desktop, and trying to remove it says the same, any ideas?
a todos
Hi. Could someone please tell me from their experience how Office 2007 or 2010 runs on WINE?
Firefox 5 offers a service to complete entering a login name and password once you have agreed to. Where can I delete 2 such entries of the past because they are typos?
also nvidia current ist installiert, zeigt jedoch keine wirkung
hello! on some 10.04 systems i have noticed that the command 'less' actually executes bash scripts (when i am expecting to just look at them). it seems that they have to exist in some $PATH dir for that to happen, but it doesnt happen on all servers. cant find anything about it in the man page either, nor on google... has anyone noticed such a thing?
guys is there a #banshee channel?
When I run an OpenOffice presentation in fullscreen (F5) mode, my gnome panel is still visible. How to avoid this?
Why would I use apt-get over aptitude since aptitude has switches like -r which are super handy ?
hello, any msn console client can be recommend?
you guys help? i installled playonlinux and downloaded midnight club 2 and it wont let me play
hello how do i satrt ubuntu 11.4 text only?
I need help with ubuntu please
have an ubuntu 11.04 install on a flash usb disk. How can I make the grub loader on that disk give me the options of the OS on the flash usb as well as the options on the hard disk of any computer that I plug it into? Thank you.
multitermais alguem ai ta usando no ubuntu..
Hi,How to register for chat?!
remotamente pelo X
is there a "hardware compatibility list" for ubuntu, so I can look and see for any possible pitfalls in installing ubuntu over specific hardware ?
waht is the chat in spanish sexy hot girl?
haq,any good uninstallers out there?
Hi, I've just installed irssi, but I don't know how to scroll up to see previous messages.
im having problems during boot... ubuntu 11.04 gives me some irq problem and then cap locks keeps blinking and ubuntu wont boot... i have to reboot 2-3 times to make it boot... what would be the problem?
i don't knwo if this is the right cannel to ask... i was reading about a comment of Linus Torvalds about userspace filesystems. so i started investigations about "userspace filesystems" but i feel like i only understand half od the magic. someone knows a good source of information?
Hello. I am trying to increase the size of my root partition using gparted but am having trouble. I enter the new value and then nothing happens. I am new to ubuntu so hope someone may be able ot point me ot a page.
Trying to recover a deleted folder. What do?
knows a channel to discuss PC hardware? I'm having trouble with a new motherboard and I don't want to pollute this channel...
Hi all, I think I have a simple question for you guys. I have a fresh Wubi Ubuntu 11.04 install and I tried changing just one thing. I added synergyc to the 'Startup Applications Preferences' and unfortunately now the login screen is not acting normally. I can boot to a command line but I can't find where I can either reset or remove the entry I made into 'Startup Applications Preferences' from the command line to get things bac
Hi guys.. does anyone here know if my synced files will get deleted from the ubuntu one cloud server upon subscription expiration?
screen @ boot after update. help!
is the "advanced installer" (alt iso) included on the standard iso?
Hi. I "want to" install a PHP-capable webserver (actually, I just want to use rock_mongo and not care about the webserver, but that doesn't seem to be an option), so... I just apt-get install apache2 php5 and am done?
ubuntu 10.4 cant recognize my sound card. but it work from live cd
20gb for full encrypted ubuntu is enough?
Which command to control (enable/disable) a service in Ubuntu. I used to use "update-rc.d" do enable/disable a daemon. However after using ubuntu i find that some server are 'converted' to other place so update-rc.d no longer works\
ubuntu not have /etc/rc.sysinit to process on boots?
大家好
so is there a program to make a "restore point" before i do anything. this is a fresh install and i would rather not screw it up "again"
m trying to play a DVD, but it doesn't seem to work and the logs show an error about reading scrambled data without authentication, what can I do to fix it?
Please register your nickname on freenode to chat here. How do I do that????
Okay, so.... Purged pulseaudio and lost the volume control that is present with a fn key combo
know about installing Broadcom b43 drivers on ubuntu 11.04
hi! how could i share my eth internet connection with my usb wireless in 10.10?
anyone using a drobo s with their ubuntu box?
am unable to open an libreoffice excel spreadsheet due to corrupt file, is there a way to circumvent this?
hey anybody can help me with xchat plz ?
i need some help register
- I'm trying to install a tar.bz2 app. I've unzipped it, changed dir to the app folder but ./configure comes back 'no such file or directory'
what permissions are attached to ///var/www
hi there people, i'd like to post a question
to go root on ubuntu terminal?
ola
if i download and install an RC version of mint ..... will it upgrade automatically to the final version?
ircii or epic what is the best console based IRC program?
10,I tried to use ubuntu 11.10 alpha 3 on my external hdd drive, but it always fails to install the bootloader. why?
how to turn encryption kee on??? WIFI
ask,Can anybody help me?
How do I change my email address for launchpad/ubuntuone? I enter the conformation code and it says unrecognised.
you cant combine default language english and have location in scandinavia .... wtf ?
guys? I tried to remove my name from the panel and all the information on the right side disappeared. Adding Notification Applet does not bring it back
how u install driver for geoforce 210 video card
Know of a linux distro that isn't filled up with junk and is lightweight, so i can just install things i want?
is the default clipboard app for ubuntu 10.04? and how can i print the content in console?
Where is the file containing the deb and deb-src lines?
where is ubuntu's startup scripts
помогите интегрировать Thunderbird в Unity
Hi all , is there any italian in this chat?
why the latest ubuntu release use the horrible purple colors ?
do I install java for chromium?
Can anyone help me setup a network Dell Printer? I cannot locate the drivers after they have been installed.
Anyone running Seagate Momentus Xt?
there a way to only allow root to change the perms of a file, regardless of who the owner is?
how do i enable root in ubuntu
Hello, I've written a little shellScript i want to run while bootup. So I made a line to rc.local. The script asks for user input, but the boot process just continues, so i can't write anything. What can I do to stop boot while script is running?
i have 10.04 and having problems with my nvidia geforce 6200: cpu usage is very high by xorg, compiz enabled. previously i had geforce2 so and i also tried the binary drivers from nvidia site, could anyone help me sort this out so i could properly reinstall my drivers, not ubuntu? (i have already purged nvidia* and installed nvidia-current what first caused conflict with the kernel modules somehow and also some warning about vdpau)
hi... I have a server and a client, both running ubuntu 11.04, but with different times set. Both run ntpd. What might be wrong? (how can ntpd give different times...?)
I have ubuntu 10.04 and I know ubuntu 11.04 is out there. I am wondering when the update will be available (automatically, that is, without me having to add some new software source) in the update manager?
know a really good book on Linux?
I was wondering if someone could help me. Ever since upgrading from Ubuntu 10.04 to Ubuntu 11.04, my PC Speaker randomly beeps. There is no pattern to it, it happens whether I am at my PC or if it is idle, it happens even with the Pcspkr module blacklisted and also happens on Linux Mint 10, Mint 11 and Ubuntu 10.10, but not in Mint 9 or Ubuntu 10.04. It also does not happen on Windows, so it IS a problem with Ubuntu 10.10/11.04. I was wondering if anyone else
Hi. For my wireless USB stick to work in Ubuntu 10.04, I need to install linux-backports-modules-wireless-lucid-generic via Synaptic. But, of course, I don't have an internet connection... How can I install it anyway? (Is there a way to download a deb file of it on another computer?)
тут может помоч?
Is it possible to install Ubuntu from another already installed distribution?
I have a problem with Update Manager - where can I paste the long error report?
am looking for some software that will allow me to download none copyrighted videos off the internet for university research. any ideas?
is exist a way to reach my music files in win7 from ubuntu? ( I ve built ubuntu on win7)
请问这里有懂iptables和tc配置的人吗?
is the update to Natty so extremely slow(100kb/s average). I can theoretically do 1.85mb/s, and I usually max it with the update manager
hi all, having some issues with Gnome 3 in Natty
Anyone in the age group 13-15 ?
could someone please give me an example of this command completed "ln -s /mount/point/of/2nd/drive/.wine $HOME/.wine" I am not sure what the mount point is, is like /dev/sda1,2 3. computer:/// or /media
emm, do i need firewall and antivirus wen uing ubuntu ? :O
hombre o mujer
ingles?
Are there any known issues with OEM install with 11.04? tried install via disk and USB, starts loading with the ubuntu logo and dots screen then completely hangs
what's the proper way to upgrade from 9.4 to 11.4 from the command line?
guys, i encountered a pretty serious bug in oneiric: thumbnailers are missing in gconf. I.e. all gtk2 apps that generate thumbnails of media (images, videos...) won't work
can anyone help me set up my wireless internet?
hay alguien quehable español
. . . I am trying to get a Canon LiDE 110 working on Ubuntu 10.04 . . . what do I need to do?
I'm looking for software to help me study. I want to create individual 'lessons' that consist of about 30 minutes of private study, and be able to define certain sequences in which they have to occur, and have them put to me at random. Any software that can do this?
so what's the coolest game for ubuntu ?
trying to update my ubuntu, a friend cut the power without thinking (ggrrrr!!!). now i cannot get the gui to work. the computer boots but only into terminal. how can i get the gui to come back?
How can I see a list of recently updated packages? I'm pretty sure it was an update from two days ago that has completely messed up my internet connection
Does anyone know how to stop an error message that is constantly running, causing my ubuntu server to be unusable?
guys, a while back, I lost my system. After an update that installed, when I rebooted my system, it would only run in low graphics mode (meaning no GUI). Now that I reinstalled my system, how can I ensure this will no longer happen in the future? How can I tell which update crashed my system in the future? Thank you.
你们都是英语
if i am connected to the internet wirelessely. can i share my internet if i hook up a router to my laptop?
s a full moon night
alguien me puede hechar la mano con un problema q tengo con los codecs de video
всем привет!
speak russian language?
list channel
how can i change my default browser in ubuntu 10.10?
we're trying to find the deb file for Wine. Any links?
anybody know why Natty (11.04) comes with LibreOffice, but no Base for databases?
how to install hardware driver on backtrack
Lucid shows the package ubuntu-desktop with a lock symbol. What is the successor of the ubuntu-dektop package?
hi wer da der de kann
does anyone know anything about RAID?
do we install proprietary codecs on narwhal?
tem alguem que fale portugues aqui?
best way to partition my hardisk, so that i can have my home partitioned installed even after installing new ubuntu
i the only one that thinks konqueror sucks?
slgma - I am using a widescreen monitor an Natty upgrade has made my main drive unbootable - is there a website or forum article showing how to fix?
ciao
!
Hey guys how do you find your Jump Drive in Backtrack?
1,How stable is beta 1 of oneiric?
s the best media manager in ubuntu?
cè qualcuno online al quale posso chiedere una cosa?
is there any curlpaste like script/aplication in Ubuntu rep?
can I use in ubuntu to check sfv file integrity?
I say "Gnome" like roam. Why do Americans say it thus: "Guh-noam"
Hey guys anyone got a thinkpad edge 11 and writes code using it? I wanted to know if the keyboard is comfy for prolong coding
is there any application for cpu frequency scaling in the latest version of ubuntu? I have have some apps but they dont seem to work . I was looking for an application with which we can select the clock frequenccy or clock speed of processor(s) on the desktop. Can anybody comment?
is there anyway of seeing the packages that a tasksel will install without having to install them first?
Is there any consideration I need to take if I have a laptop that has two network conncetions. And I want to connect from Network A, to this laptop? and I want all network stuff to go out Network B?
is the difference between LTS 10.4 and 11.04?
pls need help: "docky requires compositing to work pls enable compositing and restart docky"
всем привет=)
need a command to help me find out the device name of a USB connected webcam and LS is NOT what I need
I am running Ubuntu 10 LTS with Apache2 2.2.14 from the respository. We would really like to upgrade to Apache 2.2.21 for security concerns. Is there a package available somewhere that I could just apply?
How register
have a new netbook - loaded ubuntu all GREAT except ubuntu is not seeing the internal microphone, mic jack nor camera. What am I missing here
how do I launch gnome-terminal with my home dir as working dir?
how do i dual boot windows
how do I get help from this forum?
Hello, any Cubans living in the US there? I have a question... Anyone?
i have a puppy 431 with wi-fi access to the internet. i want to get an internet connection from this wi-fi puppy machine through LAN on ubuntu 11.04 machine (using console commands). can anyone help me, plz?
need recover a file. I am using photorec, but it seems doesnt recover rare extentions (si4, from scid). Any ideas?
How do I adjust the pulseaudio volume from the command line? In the main ubuntu distro a tool is included to adjust the volume above 100% but there is no such tool in xubuntu to my knowledge
how can i enter single user mode so i can fix my user groups? Right now i have no sudo abilities because my root group somehow got removed when i added myself to another group
im using useradd -b /home/a/m amcs, the user is created, but the home dir of /home/a/m/amcs isnt created, can anyone tell me what im doing wrong
alguien habla=
Hi guys, do you know who is running ubuntu infrastructure?
older gtk2 themes work with gnome shell?
Anyone to keep track of expenses in Ubuntu?
hey, guys, when wayland display server will be available for ubuntu?
sabe como configurar el tactil de un panasonic toughbook cf 73 con xubuntu maverick??
is there anyway to install ubuntu without having to burn it to disk?
is tehre a simplistic way to check my gmail from terminal ?
gnome-panel is lost :( i tried deleting .gnome2 .gconf and .gconfd, logged out then logged in, but still no panel!
how do i install java it says it has no installation candidate
i need help how to hack ipod touch games
guys, I'm currently using Ubuntu 11.04 but I want to go back down to 10.10, I have a separate Home Partition... can I just keep the username and have all the settings import or would that cause incompatibility problems with config files and stuff?
You cannot enable wobbly windows in ubuntu 11.04 ?
is there a way to show all packages you've installed with aptitude?
hardy release = Ubuntu 8.04 LTS ?
does anyone know if you can move the close/minimize/maximize to the right hand side in ubuntu v11?
hey folks, real noob question here, but i downloaded the latest version (64bit) and have it running on my desktop. i really dont like the layout or the feel of the gui is there a quick/easy way to revert it back to the older styles?
Can anybody help with the audio quality in Ubuntu? I notice its not very good...
helo, How I can execute my script just for 5 minutes at 2.00 AM (2.00, 2.01, 2.02, 2.03, 2.04, .05) with cron ?
how to clean apt cache
anyone be available to help me with a mounting issue?
where do I find boot-repair in 11.04?
hi, how do I start mysql from ubuntu terminal?
it possible to download an installation image of ubuntu 64-bit version 11.04, but with the text-based installer? I can't find it on ubuntu.com, but maybe I'm just blind.
hi all, is it possible to install ubuntu and automatically add an entry for Ubuntu in windows 7 boot menu rather than installing grub on the MBR?
hello.. i need some assistance pleez
someone tell me the chanel of Xubuntu? Thanks a lot
is there a way to put full name of the current directory to command line? So to say, unfold the '.'
Hey all, anyone here with the switcharooo kernal module?
desktop has httpd.conf as empty, where can I edit this my apache settings?
by default, Tweetdeck wants to install into /Opt. Is that really where I want it?
请问ubuntu中文的频道是哪个
have done mistake deleting my Desktop folder using rm -rf /home/smith/Desktop so now I want to recover that folder . please anyone can help me to recover tha because I had most important folders in my Desktop
how can i make an advanced search for files bigger than 1gb?
Hello, can anyone please help me! I just upgraded to 11.04 and now my wifi has stopped working.
ubuntu 9.10, I did add-apt-repository ppa:nginx/stable , then apt-get update, then apt-get install nginx. instead of installing nginx1.0.1 from ppa it installs nginx0.7 from karmic... whats the issue?
can anyone help me with a dvd burning problem?
How to install java plugins in ubuntu 10.04 ?
a tutti
10,okay so how do i disable this awful unity stuff and just use regular gnome? on 11.10
How do I restore the menu in Ubuntu? Currently I have a bar on the left hand side with Firefox, Libre Writer, Libre Calc, Ubuntu Software Center, Ubuntu One, etc. If I want to open a program that is not on that menu, I have to hit the + button and choose from all possible programs. I want to restore categories (i.e. my MuseScore program should be in the sound and video category, Libre + should be in the office category, and so forth)
all, I am running ubuntu 11.04 and am trying to edit etc/rc.local however it is saying that I am not the root user, how do I log in as a root user?
is G+ better than FB?
hey guys if a linux distro has only live(without) installation can u set it up on ur PC?
everyone. Can someone help me out? I've been following a python tutorial (trying to learn... It's complicated!) but my program won't work, it's my first attempt.
hey, how can i add myself (new users) to sudoers list?
How do I setup mac like gestures? I have two finger scroll woking, but no other gestures
there a way I can download all of my system's current packages that I have added on (say like vlc) so that I go to an apt-get /my/own/repository if I didn't have internet access
厄,这个怎么用
anyone know of any pleaces to buy c heap refurbished servers?
it be really weird if I decided to stay on 9.10 instead of upgrading to 10.04?
Hi all, can someone recommend a backup app/script/technique to backup my / partition from within the OS
Hi. The find command, can anyone help making one to remove all files found? :)
some chinese?
what tools where used to make linux mint debian ?
Can we get GNOME 3 for natty ?
guys, is there any/many people helping out in launchpad in here?
when i do a memmory test with the live cd doest it check the hdd, processor and ram, or have i got it all wrong?
I am hating banshee, any idea how to make i tunes podcasts work?
just installed a fresh 10.10, but when i open update manager, it isnt giving me the option to upgrade to 11.04, could anyone please help?
please i have an important question ... do any one here knows how to add a warning to nautilus and anyother window likw gnome-termianl when it's running as root i seen than in some destros but i failed to find the hack how to do it
j'aimerais savoir certaine chose sur l'ataque man in the middle
help .. may i ask?
brak dzwięku w dell 620
Jemand da ? Some1 here?
anyone advise me on what packages I need to install on natty to get unpack200
can some help me with my networking problem
i need help encoding a video made in glc
anyone have the time to help with a boot loader question?
do the people in here like unity
ola tem brasileiro ai?
guys - im having a nickserv problem.. its no longer identifying my password
mplayer has just messed up my screen...its covered in speckles
Hello, i have a problem with my laptop and linux mint, i installed linux mint, everything is ok, but there is no sound, any ideas?
it possible to deactivate global menu in 11.04?
Hello is there an German channel for Ubuntu
Hi all. I have been using ubuntu 10.10 for almost 6 moths and now want to shift to KUbuntu....what you guys suggest for KDE?
want to access a USB hard disk from command line
can someone give me the link to backtrack channel
anyone here using rtorrent
gave his old hacker friends the L:P to the PSN master server after he got hired by sony? he only took the job from sony (as part of the master plan) to take down the PSN?
hi, how can i find out with apt/aptitude from which source a suggested package update is coming from?
hello, pls how do we install a package alongside with it's dependencies?
can't I use the command "unrar" on a file which ends in .r01 or .r02, and so on?
Hello all. I downloaded a game and got a compressed file with the files and folders shown at (http://paste.ubuntu.com/615512/). How do I create the executable from the makefile? TIA!
lang pl?
it possible to boot into Unity from a LiveUSB?
ALGUIEN SABE COMO PUEDO INSTALAR CANAIMA EDUCATIVO EN UBUNTU 10.04
hmm, how do I remove the launch bar in 11.04 to get back to 10.x interface ?
bugs,hi everyone - does anyone have an idea how to file a bug against a translation in launchpad?
does upstart in ubuntu 10.04 still honor /etc/rc.local?
Hey can anybody help me with an Ubuntu instalation problem I have?
is your favorite movie player on Ubuntu?
Gentlemen, if i'm going to create a new Partition on my HDD for Ubuntu, how should it be formatted? NTFS?
chat de xubuntu en español please que se me ha reiniciado el ordenador y no lo encuentro...
I just installed Ubuntu 10.10, but it is not on the boot list; I think windows wiped grub. How can I fix it?
hi, is there any way to find out how a block device is formatted without installing fdisk? /sys/block/... doesn't seem to be a help here
hey guys. how to you give a group write access to a particular directory (using chmod?)? i'm poring over google and the man page but i just can't work it out.
do I make grub2 boot me into a command line startup only?
Hey folks. I've got a Conexant modem, and I've installed the drivers as per http://is.gd/WyNa0h but gnome-ppp still says "No modem was found on your system." I'm on Maverick... any ideas?
im looking for (preferably free as in speech) websites where i could just copy the style (css etc) of it and apply it to my (free as well) project. anybody got an idea?
I get some help with upgrading Ubuntu?
Anyone want to help a newfag out?
Hi, How do I now what is my IP /eth1 inside of a LAN?
here? need some help
does the ubuntu CD (~700 MB) contain ALL the programs I can install via the Ubuntu Software Center to the point where I don't need internet access as long as I have the CD with me?
How do I reduce the temperatures of my cpu and laptop in general
I am a Ubuntu newbie needing help with video settings under Xubuntu 11.04. Would someone kindly help me?
como habro el unity? no me lo puede abrir, solo me abre el ubuntu clasico
k, so i finally got it working by name and not ip.. but now when i try to access it it says i dont have the rights to.. is anything wrong with this line?: //stora/MijnBestanden /media/stora smbfs user=****,pass=**** the stars are ofc replaced with the real username and pass..
use sshfs? it seem nautilus can't delete non-empty directories inside a sshfs , rm -rf in cli works, but in nautilus "Removing Error: Opertion not permitted"~ any clue/ fix?
Which wireless pcmcia cards are compatible with ubuntu 10.10
is ntfs read/write fully stable and supported in ubuntu...notably 10.04 lts?
it common for flash to work fine on a windows box but then be unusable and chopped on the same machine on ubuntu?
I have ubuntu 11.04 installed and now i installed fedor 15 and grub2 curropted. i asked the #fedora folks and now they said me to re-install ubuntu's grub2. i do not have a cd/dvd drive. but have a bootable usb drive with ubuntu 11.04. can i use that live ubuntu to reinstall grub ? How to do that ?
hey is the ubuntu .iso burned to a cd or a dvd?
application name that makes cow talk in terminal? (Not apt-get easter egg)
can someone tell me how to setup su root access or point me to a tutorial ?
What's the command to determine the Ubuntu version?
server is down i have 3 users can able to connect how to check who switched off my server ?
Like individual mandate Obamacare, an agressive foreign policy, and the rest of Barack Obama's policies? Are you nervous around Black people but still like Obama's policies? Then vote for Mitt Romney, the White Barack Obama!
Is there a special channel for issues regarding upgrading from 10.10 to 11.04 (server)?
anyone know anything better for linux than ventrilo server? the 8 slot limit even in an open source environment is rediculous. any ideas? i tried teamspeak with ubuntu and rly didnt like it
running 10.04 desktop: how do i install a deb file from the commandline that also installs the dependancies?
hi,guys,i read a comment which said the ubuntu design team is using adobe suite to design ubuntu, does that mean ubuntu is designed under Windows/Mac
whats new in ubuntu 11.10 ?
What is the difference between /dev/sda and /dev/hda? Can a laptop's primary hard drive be /dev/sda?
any one have ubuntu server console localization experience?
como te llamas?
question I have a ubuntu server at work that someone else setup before I got there I am trying to get access to it remotely for testing to be sure I don't have a router issue I have DMZed the server I can ssh to it on the local network but I can't from the public I have checked hosts.allow and deny and even added ALL: ALL to the allow file but I still can't get in can anyone give me and Idea as to what to look at next?
please help -- I Can't install 11.04 because of my b43 wifi card -- how can I install the driver directly to my liveusb so that it has what it needs to run the install ?
how to reinstall grub2 on root fs please
español?
what command can i use to get the linux distro and version
In Gentoo, I could select a specific package version to install by emerging package=version. Is there a way to specify which version of a package I want to install in Ubuntu? Specifically, packages.ubuntu.com lists the latest GCC as 4.5 for Natty, but 4.6 for Oneiric. I'd want to have 4.6 on Natty.
I just upgraded to Ubuntu 11.10 alpha 2 and tried to install gnome-shell so I could use the gnome 3 interface but it says that there are unmet dependencies and broken packages... what should I do?
hi, I can't boot windows 7 since I Reinstalled grub -- tried using windows 7 repair utility / command line tools / nothing seems to work .. can anyone help please? thanks!
anyone tell me how I can get adobe flash for firefox? Is there an add-on?
Hello. Does anyone know why \neq draws an equals sign instead of a not-equal sign on ubuntu in latex?
anus
arse
ballsack
balls
bastard
bitch
biatch
bloody
blowjob
coon
crap
dyke
fag
feck
fudgepacker
fudge packer
flange
Goddamn
God damn
hell
homo
jerk
jizz
tosser
turd
twat
vagina
wank
whore
wtf
Xxx
nude
naked
vagina
hole
wet
gaand
phaad
phad
chut
cht
ass
pusy
lick
milk
milky
chikni
horny
sex
sx
juicy
lund
londiya
breasts
chooch
chhati
panty
bra
chaddi
underwear
bikini
nipple
ungli
rand
call
girl
Sex Toy
Penis Ring
Butt plug
G-Spot vibrator
Sex doll
P-Spot Vibrator
Dildo
Sex Robot
Masturebator
Prolonger Gel
Penis Pump