PDA

View Full Version : General Help


Pages : 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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024

  1. [kubuntu] USB hard drive won't boot.
  2. Desktop effects
  3. [xubuntu] Auto Restart Firefox when closed down
  4. [ubuntu] Connecting to the Internet via UMTS
  5. [ubuntu] No sound from Browser + Songbird at the same time
  6. [ubuntu] Convert FLV to MP3?
  7. [ubuntu] Microsoft Access 2007
  8. [all variants] fsck appears to hang
  9. [ubuntu] Wierd screen thing?
  10. [ubuntu] Hi trying to set up my cannon lbp-1120.
  11. Kubuntu doesnt install
  12. [ubuntu] Issues with sound in firefox/desktop.
  13. [ubuntu] config file
  14. [ubuntu] Need to remove RESTRICTED EXTRAS (help)
  15. [ubuntu] ccsm
  16. [ubuntu] Unresponsive Mouse Pointer...
  17. [all variants] Hp Deskjet D1420?
  18. [ubuntu] No sound in You Tube, Amorak Music Player or VLC Media Player
  19. [ubuntu] New install - cannot get Banschee and Amarok detect IPod
  20. [ubuntu] Putting Many Contacts On Nokia 6085?
  21. [ubuntu] Terminal Server Client
  22. [SOLVED] Wubi file system question!
  23. [ubuntu] Problem Playing .AVI files
  24. [ubuntu] No package 'pygtk-2.0' found
  25. [ubuntu] gcc cant find ld
  26. [ubuntu] Quasar
  27. [ubuntu] Shutdown / Restart issues
  28. [ubuntu] possible kernel errors after updates (ubuntu8.04)
  29. [ubuntu] Opening Root Trash freezes system
  30. [kubuntu] Installing additional Software | Problems
  31. [ubuntu] Firefox strange rendering on some pages
  32. Installed Wubi, Windows XP Won't boot anymore
  33. [other] Compiz-fusion problems
  34. [ubuntu] Grub Error 18
  35. [all variants] alternative to bash read command?
  36. [ubuntu] Calender Hangs / Shut down Options hang
  37. [all variants] Is there a way to emulate a usb device?
  38. [ubuntu] VPN NAT Problem
  39. [ubuntu] Need to customize login process
  40. [ubuntu] Ubuntu beeps loudly when woken from being suspended
  41. [ubuntu] [SOLVED] sudoers - no access - help!
  42. [ubuntu] Please Help Me!!! internet connection
  43. [all variants] [SOLVED] Script Help
  44. [ubuntu] fail2ban refuses to work on 8.04
  45. [ubuntu] backup and restore encrypted partitions
  46. [ubuntu] Please HELP!!
  47. [ubuntu] Ports automatically close
  48. [ubuntu] Can't save my xorg.conf file
  49. [all variants] How modules get loaded?
  50. [ubuntu] Two password required for sudo
  51. [ubuntu] [SOLVED] Hide lkl
  52. [ubuntu] Upgrading Versions (Discussion)
  53. [gnome] Stalonetray / Toggle Panel Size
  54. [ubuntu] Ruh-Roh...not good
  55. [ubuntu] Website help!!!
  56. [ubuntu] Cannot download
  57. [all variants] UBuntu Website
  58. [ubuntu] resolv.conf modification?
  59. [ubuntu] Is this bad???
  60. [ubuntu] Login Problem (Can't Input Password)
  61. [ubuntu] boot up error (login screen doesn't initialize)
  62. [ubuntu] GPSD with Garmin GPS
  63. [ubuntu] Agree button grayed out in Diablo II
  64. [ubuntu] Switching keyboard language deleted some Desktop personnal files
  65. [ubuntu] [SOLVED] gpsbabel and usb when not root (Hardy)
  66. [ubuntu] [SOLVED] installing bluej and netbeans bluej edition
  67. [ubuntu] [SOLVED] displayconfig refuses to start
  68. [ubuntu] Canadian Multilingual keyboard bug for one French character
  69. [ubuntu] [SOLVED] Problem labeling partition
  70. [ubuntu] How do I create a service to run my server code?
  71. [ubuntu] Problem with 2gb SD card
  72. [ubuntu] Menu Bar forces Top Panel size to be 24 pixels
  73. [all variants] [SOLVED] Application Integration
  74. [ubuntu] winbind wont install
  75. [ubuntu] Internet Help
  76. [ubuntu] Just a Question Really........
  77. [all variants] Does such a program exist? Advanced Editor
  78. [ubuntu] Total newbie question
  79. [all variants] [SOLVED] OpenGL driver ?
  80. [ubuntu] Once upon a WINE
  81. [ubuntu] Gimp 2.4.6 in One Window?
  82. [ubuntu] Imaging Ghost Clonezilla - Quick Howto
  83. [ubuntu] Multiboot XP/Fedora 9/Ubuntu 8.04 install grub problem
  84. Imaging - Quick Howto
  85. [ubuntu] Desktop Effects are they needed?
  86. [ubuntu] [SOLVED] "too many open files while deleting..." when trying to empty trash
  87. [all variants] [SOLVED] dpkg error with gaim??
  88. [ubuntu] I have a problem (pictures)
  89. [ubuntu] AWN Manager doesn't change themes
  90. [ubuntu] [SOLVED] No Window Borders. Please Help!
  91. [ubuntu] conky transparent background with compiz
  92. [ubuntu] Mounting Volumes
  93. [ubuntu] Run a program on boot using a specific user
  94. [ubuntu] Setting a specific refresh rate for a monitor
  95. [all variants] Copy files to USB stick 1Gb - Whole day, half-way done...
  96. [ubuntu] Chat room problem
  97. [ubuntu] CUPS Network access broken in Hardy
  98. [ubuntu] Accidental format!!!
  99. [ubuntu] [SOLVED] How to view program files
  100. [ubuntu] Autodesk and other software
  101. [ubuntu] Ubuntu boots Kubuntu
  102. [ubuntu] Permissions on external
  103. [ubuntu] Power management - screen going blank
  104. [ubuntu] Thunderbird can't delete messages
  105. [ubuntu] Pidgin MusicTracker issue
  106. [ubuntu] Can I clone my Ubuntu?
  107. [ubuntu] Data Recovey Software
  108. [ubuntu] All things modules cause soft lockup on boot
  109. [ubuntu] Firefox over SSH
  110. [ubuntu] xmodmap and scim
  111. [ubuntu] ata2.01 exception
  112. [ubuntu] [SOLVED] Daemon Tools Lite.
  113. [ubuntu] please help silly question:S
  114. [ubuntu] How do i erase cds??
  115. [ubuntu] Total noob mounting question
  116. [ubuntu] Repository help
  117. [ubuntu] Compiz Turns off
  118. [ubuntu] Issues with Typing
  119. [ubuntu] Googel Earth Initialize
  120. [ubuntu] Shared Folder issues in Ubuntu Feisty using VirutalBox
  121. [all variants] Arrow Key input freezing system
  122. [ubuntu] fire fox troubles
  123. [ubuntu] pdb file how to open?
  124. [ubuntu] php5 on apache2 slow on new hardy box
  125. [ubuntu] My hard drive is full and I never got a warning?
  126. [ubuntu] No module for running kernel found.
  127. [ubuntu] Help editing cvs change logs.
  128. [gnome] 2 simple small things my laptop can't remember - volume and brightness
  129. [ubuntu] Evolution Dictionaries
  130. [ubuntu] Partial upgrade involving GIMP...?
  131. [ubuntu] restore the grub after Vista instal
  132. [ubuntu] [SOLVED] Problem Changing Background Color
  133. [all variants] Neither Grub nor Super Grub Disk will work
  134. [ubuntu] [SOLVED] Swiftweasel 3 & Always Remember Password Hack
  135. [xubuntu] Firefox Application Preferences empty
  136. [all variants] W95 FAT32 mount trouble
  137. [all variants] Terminal RSS script?
  138. [kubuntu] How to maintain a mixed Ubuntu system
  139. [ubuntu] Window decorations gone after installing compiz fusion git
  140. [ubuntu] [SOLVED] Can't build from source...
  141. [mythbuntu] power saving, on/off for mythtv
  142. [ubuntu] [SOLVED] Screen resized!!! in need of HELP!!
  143. [ubuntu] Using ffmpeg to convert Mpeg2 files to AVI
  144. [kubuntu] Which Partition do I delete?..
  145. [ubuntu] [8.04] Real basic questions
  146. [ubuntu] Dropbox on Ubuntu
  147. [ubuntu] 2 Questions
  148. [ubuntu] start button how to
  149. [ubuntu] Taking Out Ubuntu
  150. [ubuntu] Firefox3 - master password prompt
  151. [ubuntu] usb device (lplayer) not connecting
  152. [ubuntu] uninstall crossover demo
  153. [ubuntu] Is there any good C editors?
  154. [kubuntu] KDE Character Map (I have MS TTFs installed)
  155. [kubuntu] Strange change: OO Save/Location messed up?
  156. [ubuntu] Perl 5.10.0 is not available in the Synaptic package manager
  157. [ubuntu] The network manager always bring me back to the manager mode
  158. [ubuntu] LBP-1120 Drivers Installed Not Printing
  159. [ubuntu] login screen huge 8.04
  160. [ubuntu] Newbie, Kinda overwhelmed, Help!
  161. [ubuntu] removing drives from file manager
  162. [SOLVED] amarock
  163. [ubuntu] Anyine know how to connect to a L2TP vpn?
  164. [all variants] [SOLVED] gpicview won't open maximized
  165. [ubuntu] wrong display resolution using nvidia geforce 8400gs
  166. [ubuntu] pidgin open minimized
  167. [ubuntu] Open www.eenadu.net in firefox 3
  168. [all variants] broken update alienarena and warsaw
  169. [ubuntu] Flash 10 Beta Questions.
  170. [ubuntu] chown command with guest
  171. [ubuntu] Could not download all repository indexes
  172. [ubuntu] better icons
  173. [kubuntu] [SOLVED] Turn off bouncing icon KDE
  174. [ubuntu] Strange problems with compiz cube and emerald and panel in Ubuntu 8.04
  175. [ubuntu] BRAND NEW to linux looking for basic help
  176. [ubuntu] Printer gone Mad!!! HP Deskjet 845c
  177. [ubuntu] [SOLVED] Automount partition
  178. [ubuntu] static IP for port forwarding
  179. [all variants] [SOLVED] bit torrent at a snails-pace
  180. [other] Help. I can only see my wallpaper. (Windows XP)
  181. [all variants] Image viewer w/ same controls as Vista
  182. [ubuntu] Installing software other than from repositories
  183. [ubuntu] [SOLVED] One User cant log off Ubuntu 8.04
  184. [kubuntu] How to get a program link after install
  185. [ubuntu] [SOLVED] swap not being detected
  186. [ubuntu] effects do not work at native resolution only at lower resolutions
  187. [ubuntu] Guitar Pro alterntive?!
  188. [all variants] privacy in prism apps for gmail, facebook, etc.
  189. [ubuntu] Onboard Gigabit network card not detected
  190. [ubuntu] Instant-on OS
  191. [ubuntu] Firefox 3 Not Saving Toolbar Preferences
  192. [kubuntu] SimCity 3000
  193. [ubuntu] [SOLVED] start gnjome-do minimized
  194. [ubuntu] The Turtle is Faster than Hardy heron !!!!!!
  195. [kubuntu] clearing konqueror's find file history
  196. [ubuntu] Enabling GDM
  197. [ubuntu] multiple ircd install
  198. [ubuntu] Cedega and Need For Speed Most Wanted
  199. [all variants] [SOLVED] Wine programs appear massive, even the wine settings are huge
  200. [ubuntu] Multiple Ubuntus on boot?
  201. [SOLVED] Kubuntu/Ubuntu installation failure
  202. [ubuntu] [SOLVED] Can't reinstall Ubuntu Usplash
  203. [kubuntu] Kde proxy problem
  204. [all variants] Script for a AD domain user
  205. [ubuntu] Missing window border buttons
  206. [ubuntu] ubuntu didnt show vista!!!!
  207. [all variants] Cannot mount volume
  208. [ubuntu] FF 3.0 and Flashblock
  209. [ubuntu] Does this site work for you?
  210. [SOLVED] wubi crash on linux-side install
  211. [ubuntu] Keyboard selection does not stick
  212. [ubuntu] Firefox 3 issues
  213. [ubuntu] "Root owns my home directory and I cannot change it"
  214. [ubuntu] [SOLVED] FF3 redirecting downloads
  215. [ubuntu] stunnel4 refuses connections?
  216. [ubuntu] shorewall not autostarting
  217. [gnome] Sluggish 3D desktop performance even on decent GPU
  218. [ubuntu] [SOLVED] Evolution not able to read IMAP folders
  219. [ubuntu] how to install netbeans
  220. [ubuntu] dkpg error
  221. [ubuntu] Saving 'effects levels'
  222. [ubuntu] Backup Question using Simple Backup Config
  223. [all variants] problem with subversion on inversed ssh tunnel
  224. [ubuntu] Permission Restrictions
  225. [ubuntu] [SOLVED] Remote Desktop problem
  226. [ubuntu] URGENT Help! Please Grub Configration
  227. [ubuntu] Getting quite a few lockups, freezes, and crashes in Hardy.
  228. [ubuntu] partitioning question
  229. [ubuntu] firefox problem
  230. [ubuntu] Mouse pointer invisible after screen saver
  231. [ubuntu] Toshiba Qosmio installation
  232. [ubuntu] Add/delete applications in task bar panel via script
  233. [ubuntu] Compiz Fusion not working on X1200
  234. [ubuntu] Really simple question
  235. [ubuntu] [SOLVED] repositories failed
  236. [ubuntu] update and synaptic package managers do not start
  237. [ubuntu] [SOLVED] How to edit grup
  238. [all variants] Connecting 2 pc's via bluetooth
  239. Problem uninstalling Ubuntu (Installed through Wubi)
  240. [ubuntu] How do you customize the wheel button of the mouse?
  241. [ubuntu] Reading a field from $ps u
  242. [ubuntu] [SOLVED] Virtualbox broke my X
  243. [ubuntu] the second round!
  244. [ubuntu] Rhythmbox Plz Help Me!
  245. [ubuntu] BSD-Black Screen of Death
  246. [ubuntu] After update, no desktop menu or network connection
  247. [ubuntu] Evolution hotmail password problem
  248. [ubuntu] Silly question about tar
  249. [all variants] "modem is busy" What to kill?
  250. [all variants] nVidia Beta Drivers