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. [ubuntu] Ubuntu problem, or hardware problem?
  2. [ubuntu] Mac4Lin Theme Help
  3. [kubuntu] KOrganizer Audio Notification as default
  4. [ubuntu] Bottom panels
  5. [ubuntu] Grub issues
  6. [ubuntu] Ubuntu to default (original) Gnome theme
  7. [all variants] [SOLVED] Can't Rotate Screen with Compiz
  8. [ubuntu] grub Error 17
  9. [all variants] gnupg directory repopulates itself
  10. [ubuntu] The publisher cannot be verified
  11. [ubuntu] [SOLVED] X-Plane installer
  12. [ubuntu] No Sound When Removing Headphones
  13. [ubuntu] Synchronizing user accounts
  14. Non ending Wubi installation
  15. [xubuntu] Light-weight file manager that supports SSH/SFTP?
  16. [ubuntu] mess up lexmark printer installation, cannnot update anymore
  17. [ubuntu] Nohup on a script with arguments?
  18. Wubi Install Issues - Linux n00b
  19. [all variants] [SOLVED] tty1 is frozen, but 2-7 are fine
  20. [ubuntu] how to restore /home permissions after backing up to a fat32 drive!
  21. [ubuntu] unrar Error unknown option? please help ASAP
  22. [ubuntu] [SOLVED] fglrx instead of mesa
  23. [ubuntu] kinit:No resume image, doing normal boot... and other errors in the boot sequence
  24. [ubuntu] [SOLVED] I need to mount my DVD as UDF
  25. [ubuntu] java applets not working in konqueror
  26. [ubuntu] How to change the text displayed after boot, above login question (command line boot)
  27. [ubuntu] [SOLVED] problems with update and termanal
  28. [other] Building LAN server for printers and hosting files
  29. [ubuntu] Is there a place where I can download a persdict.dat for my Firefox profile?
  30. [ubuntu] [SOLVED] Used space on /sdb1 also perceived as filling /sda1
  31. [ubuntu] Wifi USB Adapter
  32. [ubuntu] gnome-app-install can't update
  33. [ubuntu] [SOLVED] gnome panel and right-click menu
  34. [ubuntu] Google Earth illegible
  35. [ubuntu] drivers
  36. Ubuntu won't boot with Wubi
  37. [all variants] Intel CPU microcode update - needed?
  38. [ubuntu] Changing drive letters from Ubuntu.
  39. [ubuntu] Everthing crashes all the time.
  40. [ubuntu] Konqueror not browsing web pages
  41. [ubuntu] Hardy Greying out apps
  42. [ubuntu] wireless wep
  43. [ubuntu] Firefox 3 Final in Ubuntu Gutys 7.10
  44. 8.04, kde & compiz
  45. [ubuntu] Drawing tablet and handwriting recognition.
  46. [ubuntu] reinstall hardy
  47. [kde] Kde 4.1??
  48. [all variants] Font sizes
  49. [ubuntu] Serious help needed.
  50. [ubuntu] ThinkPad X20 install?
  51. [all variants] View images in CLI browser?
  52. [ubuntu] Vmware questions
  53. [ubuntu] xdialog not working properly
  54. [ubuntu] My new wallpaper
  55. [ubuntu] need a quick intro to shell scripting...
  56. [kubuntu] Alternatives to kicker?
  57. [ubuntu] [SOLVED] The language in the Terminal...
  58. [all variants] Zsnes
  59. [ubuntu] Nautilus doesn't work, Desktop freezed
  60. [ubuntu] Trash4Life
  61. [ubuntu] Easy to fix graphics problem
  62. [ubuntu] Vaio Heat/Fan Issues (sz650n)
  63. [ubuntu] compiz effects using mouse button combos
  64. [ubuntu] Very slow access to isc.sans.org
  65. [ubuntu] ACPI failure after hibernation
  66. [gnome] [SOLVED] too many /usr/lib/gvfs/gvfsd-trash --spawner :1.4 /org/gtk/gvfs/exec_spaw/2
  67. [gnome] google earth crashes and logs me out
  68. [ubuntu] Ubuntu 7.10 not updating
  69. [all variants] Compiling a GTK program
  70. [all variants] FWcutter: what does it do?
  71. [ubuntu] Problem with desktop border
  72. [gnome] Transparent menus question
  73. [ubuntu] Installing 'Recommends'?
  74. [ubuntu] [SOLVED] Desktop background not loading completely
  75. [gnome] Gnome Color Chooser
  76. [ubuntu] probs with dependency installing spideroak
  77. [ubuntu] Cloning a hard drive.
  78. [ubuntu] Unplugged USB flash mem without unmounting
  79. [ubuntu] Network printer problem
  80. [ubuntu] I just installed new ATI driver catalyst 8.7
  81. [ubuntu] adobe reader in firefox won't show icons when trying to save files
  82. [kubuntu] apt and adept commit errors
  83. [ubuntu] [SOLVED] compiz --replace results
  84. [ubuntu] Pandigital products
  85. [xubuntu] Xubuntu or Ubuntu
  86. [ubuntu] How can I play RATDVD formats??
  87. [ubuntu] Change the Panel!
  88. Pro or Con using Wubi
  89. Java plugin doesn't work in a Wubi installation
  90. [ubuntu] lircmd and ability to double-click
  91. [ubuntu] partition doesn't mount like it should
  92. [ubuntu] compiz running slow
  93. [all variants] Split Gzip file as it's being created.
  94. [ubuntu] Japanese directory names through samba
  95. [all variants] Here's a way to make Firefox-3.0 more stable.
  96. [ubuntu] Boot-up Errors...
  97. [ubuntu] Cannot open display through SSH
  98. [ubuntu] How do I re-install Ubuntu without loosing my personal data?
  99. [ubuntu] Terminal server mouse problem
  100. Setting up my WLAN
  101. [all variants] swap partition
  102. [all variants] preview panes in evolution
  103. [ubuntu] Please help crashed
  104. [ubuntu] Help Resizing Partition
  105. [ubuntu] Can't shutdown!
  106. [ubuntu] Update Manger
  107. [ubuntu] [SOLVED] incorrect reading of disk space
  108. [ubuntu] Scan Music Scores
  109. [all variants] Bluetooth help
  110. [ubuntu] Shadow stays on screen
  111. [ubuntu] Compiz and Desktop Effects don't work
  112. [ubuntu] Quanta plus, ftp takes 2xx messages as errors
  113. [ubuntu] Desktops Icons are gone
  114. [ubuntu] Hardy logs self out?
  115. [ubuntu] Programs hogging sound.
  116. [all variants] [SOLVED] Java error on mmorpg
  117. [ubuntu] Motorola Q Smartphone
  118. [ubuntu] Can't access hard drive files, "Invalid Encoding"
  119. [ubuntu] minimul install
  120. Installed with latest Wubi - First boot goes to some command prompt. Where is X11?
  121. [ubuntu] Slow-ness in normal boot. Flies in failsafe mode
  122. [ubuntu] Can't browse the internet
  123. [ubuntu] Command to start program in menu
  124. [other] [SOLVED] apt-get is crazy !?
  125. [ubuntu] installing windows
  126. Ubuntu does not work with my computer!
  127. [kubuntu] ipods on kubuntu
  128. [ubuntu] Ubuntu won't reboot, but will halt
  129. [ubuntu] Uninstalled Guard Dog but it keeps rewriting my iptables?
  130. [ubuntu] samba unmet dependencies
  131. [ubuntu] Two conkys running
  132. [kubuntu] 'forget login details' Yahoo Messenger
  133. [ubuntu] task bars are gone
  134. [ubuntu] Dell conexant modem freezes machine
  135. [ubuntu] Export theme to a file or package
  136. [ubuntu] Bios 81 error now blank screen on start up
  137. [ubuntu] Onboard keyboard on startup
  138. [ubuntu] Need help installing Grub - Invalid device requested
  139. [gnome] HOW to set default application for a file type
  140. [ubuntu] need ftp client that supports scheduling and timetabled throttling
  141. [ubuntu] Opera 9.51 CPU 100%
  142. [ubuntu] Remote Windows/Samba Shares Not Working
  143. [ubuntu] Multimedia keys won't work
  144. [ubuntu] [SOLVED] Virtual hosting in Apache
  145. [ubuntu] ERROR 15 file not found
  146. [ubuntu] Help with PS3 and fuppes
  147. [ubuntu] Having a problem with my Terminal
  148. [ubuntu] (X)Sensors/sensors-applet reports temperatures that are much hotter than they are
  149. [ubuntu] How do I do a complete reinstall?
  150. [ubuntu] Hang and how to diagnose
  151. [ubuntu] Actions (keyboard /mouse) profile has been messed up.
  152. [all variants] Built-in Card-reader, SD Card, PDA?
  153. [ubuntu] After updates, many admin tasks won't open
  154. [ubuntu] Volume is way too loud even after bug fix
  155. [ubuntu] help me out!
  156. Ubuntu doesn't auto mount drive E:
  157. [all variants] How to change font size for print jobs?
  158. [ubuntu] Busybox
  159. [ubuntu] How to update music library using MPD + GNome MPC
  160. [ubuntu] Cannot login to MSN account using Pidgin 2.4.1
  161. [ubuntu] Firefox starts with offline mode
  162. [ubuntu] Gutsy too slow bootup when not connected to internet
  163. [ubuntu] Problems with serial port
  164. [ubuntu] links to hard drive broken untill i access it with nautilus
  165. [all variants] interesting bug
  166. [xubuntu] XUBUNTU 8.04 > Error ...288.345181 :BUG soft lockup cpu#0 stuck for 11s!
  167. [ubuntu] Firefox will only download/open mp3s. How do I open them in Firefox?
  168. [ubuntu] [SOLVED] Can't open Synaptic Package Manager
  169. [ubuntu] [SOLVED] unable to install updates or new apps
  170. [ubuntu] gparted and XP
  171. [ubuntu] compiz and xgl
  172. [ubuntu] Refesh rate is too low with Nvidia restricted drivers
  173. [ubuntu] Nvidia drivers don't work in ubuntu studio hardy
  174. [ubuntu] Need to run the Synce config tool?
  175. [ubuntu] I want Luks to prompt me for the password at the Ubuntu splash
  176. [SOLVED] Can't get out of Install mode.
  177. [ubuntu] Strange Software Sources problem/bug
  178. [ubuntu] Benq 3300U scanner stopped working
  179. [all variants] what Terminal command to see video setup on Live CD
  180. [ubuntu] Recover data from harddrive using live cd.
  181. [ubuntu] No Grub list menu on boot
  182. [ubuntu] Will Ubuntu Kill My Desltop?
  183. [ubuntu] [SOLVED] desktop hard drive spins constantly
  184. [all variants] Playing videos in the command line.
  185. [all variants] Cannot write: Read-only file system (but rw in fstab)
  186. [all variants] LiveCd on old laptop
  187. [ubuntu] Can't execute own file!
  188. [all variants] where to find kernel?
  189. [ubuntu] [SOLVED] Start directly Kubuntu without USER and PASSWORD.... IS THAT POSSIBLE?
  190. [ubuntu] [SOLVED] removing packages from drive
  191. [ubuntu] [SOLVED] Enabling Compiz Fusion help...im a n00b
  192. [ubuntu] tiny workplace switcher
  193. [ubuntu] Take a screenshot every 20 seconds or so
  194. Utilities for maintenance of system & hard drive
  195. [ubuntu] how do i setup TI Connect apps
  196. [ubuntu] What Are The Advantages Of Emerald?
  197. [ubuntu] Desktop is home folder
  198. [ubuntu] need help with customizing
  199. [ubuntu] can not print over internet
  200. [ubuntu] restoring ubuntu?
  201. [xubuntu] no compatible with my window manager?
  202. [ubuntu] crash during compiling
  203. [ubuntu] All Processes Sleeping
  204. [other] [SOLVED] hooking up linux on my tv
  205. [ubuntu] Transparent Nautilus background?
  206. [ubuntu] installing XP
  207. [ubuntu] cannot compile fglrx
  208. [all variants] Binary Nvidia driver loads black screen, Ctrl-Alt-Bksp sometimes fixes.
  209. [ubuntu] So.. Is it possible to transfer applications/games between Ubuntu systems?
  210. java environment/ ssh shell access?
  211. [ubuntu] Label Flash?
  212. [ubuntu] [SOLVED] Black Screen
  213. [ubuntu] Newsreader recommendations (usenet newsgroups)
  214. [ubuntu] Sleep Errors
  215. [ubuntu] Trouble with the "Make" command
  216. [ubuntu] Can't Delete Former Win Files from Ubuntu Trash
  217. [all variants] Using LZMA compression for squashfs
  218. [all variants] ati driver 8.7 and choppy games
  219. [ubuntu] problem with apache and .gif images
  220. [ubuntu] Help with grub
  221. [ubuntu] Please help with really weird FS or ftp problem on ubuntu hardy
  222. [ubuntu] Clear hard drive with ubuntu.
  223. [all variants] [SOLVED] Need help patching kernel for ufs2 r/w support
  224. [gnome] gnome screensaver woes - need help
  225. [ubuntu] Dissable Ubuntu logo on boot
  226. [ubuntu] Is this nVidia card enough for compiz?
  227. [ubuntu] Automatic file execution
  228. [ubuntu] [SOLVED] No restricted drivers manager?
  229. [ubuntu] Very poor IO performance with HW Raid 1 - Wrong Driver?
  230. [ubuntu] Synaptic Package Manager problem
  231. [all variants] ubuntu and ubuntu studio
  232. [ubuntu] How do i install themes in Ubuntu?
  233. [ubuntu] Customization problem
  234. [ubuntu] mounting "protected" .iso
  235. [ubuntu] Desktop cube
  236. [ubuntu] compiz problem
  237. [ubuntu] incollector startup
  238. [ubuntu] [SOLVED] Help with Cairo dock
  239. [all variants] password usb
  240. [ubuntu] Non-ACPI motherboard breaks everything
  241. [all variants] Accents input incorrectly in flash apps in Firefox.
  242. [ubuntu] Installation problems
  243. [ubuntu] Help: My Windows won't stay put when rotating cube
  244. [ubuntu] user agent switcher
  245. [ubuntu] How do I make a Web Page?
  246. [ubuntu] Anyone here use Git for version control? Help!
  247. [ubuntu] fav desktop themes/backgrounds/tips
  248. [ubuntu] CPU throttling issues, Hardy+Q6600
  249. Boot goes to BusyBox, not desktop
  250. [ubuntu] System Sounds Vs Playback Sounds