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 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057

  1. [ubuntu] multiple dvd conversiton
  2. [ubuntu] NTLDR missing after selecting windows from Grub Boot menu
  3. [SOLVED] After rebuilding boot.ini grub does't show up
  4. [ubuntu] Reinstalling MySQL (uninstalling first)
  5. [ubuntu] Attempting to install the Azureus update.
  6. [ubuntu] That Grubby Thing ...
  7. [ubuntu] 10 second Boot Menu- Decrease /Modify
  8. [ubuntu] problem with sources.list plz help
  9. [all variants] Specify existing home folder on seperate hard drive as home?
  10. [ubuntu] bluetooth pairing always fails
  11. [ubuntu] Slow Firefox speeds on a few websites.
  12. [ubuntu] open program with mono - file associations
  13. [ubuntu] wammu auto-load contacts
  14. [ubuntu] Should I uninstall Ubuntu?
  15. [ubuntu] Computer not turning on all the way **free cookies to the first person to help**
  16. [ubuntu] Help, google earth's broken my packages!
  17. [xubuntu] acidentally deleted contents of XFCE applications menu
  18. [ubuntu] Mnemosyne doesn't launch at all (only error message)
  19. [ubuntu] Strange lock-ups / freezes from yesterday
  20. [all variants] Overclocked RAM causes kernel panic.
  21. [ubuntu] picasa photo viewer
  22. [ubuntu] avahi-daemon in 8.04.2
  23. [all variants] Scripting help
  24. [ubuntu] This is ridiculous!!!!!!!!!!!!
  25. [ubuntu] Change screen resolution-Vesa driver
  26. [ubuntu] firefox always opens full screen
  27. [kubuntu] need help: wireless wont connect if encrypted
  28. [all variants] I need help creating a launcher that involves a command line . . .
  29. [ubuntu] Help please help desperate
  30. [ubuntu] No local login?
  31. [ubuntu] Modifying banner pages
  32. [ubuntu] CD Drive issues
  33. [ubuntu] RDP + VPN - Ping = Problems!!
  34. [ubuntu] Flash video players occasionally crashing in Opera 9.63
  35. [SOLVED] What ubuntu version am I running ?
  36. [SOLVED] Get rid of xwinwrap
  37. [ubuntu] Apache Tomcat Server install gone weird :-S
  38. [all variants] Open file at startup
  39. [ubuntu] A huge question that will inflate your face.
  40. [ubuntu] virtualbox
  41. [ubuntu] compiz effect not working and advanced desktop not listed...
  42. [ubuntu] Video screen capture program?
  43. [ubuntu] User rights/ownership all screwed up
  44. [ubuntu] Looking for a good scanner of negatives
  45. [xubuntu] Compiz fusion help
  46. [kubuntu] Kubuntu KDE3 login/logout script
  47. [ubuntu] Grub, XP First?
  48. [ubuntu] Where can I get a working aMule?
  49. [other_os] Can I use the same name for my distro?
  50. [ubuntu] File permissions - hints to newcomers
  51. [ubuntu] Machine will no longer start.
  52. [ubuntu] Sharing music with Xbox 360 - Need help please...
  53. [ubuntu] Where did she get the goldfish??
  54. [ubuntu] I think I trashed my install
  55. [ubuntu] Ubuntu claiming SD card "Read-Only"
  56. [xubuntu] Xubuntu 8.10 support compiz?
  57. [ubuntu] eMachine problems
  58. [ubuntu] Need help with Cyrillic fonts
  59. [ubuntu] Ubuntu 8.1 - CD/DVD Unable to access CD media after 8.1 install on multiple systems
  60. [ubuntu] Compiz stop working
  61. [ubuntu] Fonts are different for Simplified and Traditional Chinese in Flash
  62. [ubuntu] What is eating up all my swap memory?
  63. [ubuntu] shrink ubuntu install partition for a free space partition?
  64. [ubuntu] Copy physical machine to virtual machine
  65. [ubuntu] Fix Windows Boot can anyone help?
  66. [ubuntu] Program that tracks how much time spent in each program?
  67. [all variants] Apache hoarding files!
  68. [ubuntu] Syntax error: Bad fd number when mounting
  69. [ubuntu] Xsane scanning error
  70. [ubuntu] I know this may not go here, but here it is anyway
  71. [ubuntu] Live cd - xfer files need help (ubuntu loads but..)
  72. [ubuntu] Accessing my Ubuntu machine from pc network; Firestarter
  73. [xubuntu] Setting slave drive permissions
  74. [ubuntu] usb startup disk
  75. [gnome] Sessions, Startup programs, worth to clean up some?
  76. Game controller
  77. [ubuntu] Select Restart and Ubuntu Won't Boot
  78. [ubuntu] Not able to change to Dvorak keyboard layout through xorg.conf
  79. [ubuntu] Bash Shell Scripting Question
  80. [ubuntu] hp 3535 with cartridge error
  81. [ubuntu] all usb malfunction, lsusb no response
  82. [ubuntu] Evolution, IMAP, and Message Filters, oh my!
  83. [ubuntu] I have had no sound in youtube etc since hardy
  84. [ubuntu] kernel panic not syncing vfs unable to mount
  85. [ubuntu] Haunted Cursor
  86. [ubuntu] direct print to CD
  87. [ubuntu] how to run two synaptics packet managers???
  88. [ubuntu] Looking for Ubuntu guide authors
  89. [ubuntu] Unable to increase screen resolution/ activate desktop effects
  90. [ubuntu] how to show ubuntu ext3 format in vista ????
  91. [ubuntu] is there any sidebar like in vista on ubuntu??
  92. [ubuntu] assign hotkeys to programs
  93. [ubuntu] Ubuntu for Web Developers
  94. [ubuntu] Help SOUND PROBLEM... SPEAKERS AND HEADPHONES
  95. [all variants] terminal syntax
  96. [ubuntu] Problem about vmware
  97. [all variants] What are some small linux distros that will run on a really old machine?
  98. [all variants] Open PDF attachment in Firebird
  99. [ubuntu] Need Some Help With The FSTAB
  100. [all variants] Can a user without a homedir be given environmental variables?
  101. [ubuntu] How to set wallpaper behind the 3D cube?
  102. Kubuntu Startup Error
  103. [ubuntu] window problem
  104. [ubuntu] help mount USB harddrives in Ubuntu
  105. [ubuntu] Firefox ridiculously slow
  106. [ubuntu] Connecting to the PS3 using Ubuntu.
  107. [ubuntu] Parallel Port Printing Problem
  108. [ubuntu] How to change user and group on ntfs partition
  109. [ubuntu] Keyboard layout problems...
  110. [ubuntu] see duplicate options in Grub loader
  111. [ubuntu] Nvidia geforce 8800gt and virtual box
  112. [ubuntu] Delete old PGP key in online DIRs
  113. [ubuntu] ffmpeg: symbol lookup error: ffmpeg: undefined symbol: avformat_alloc_context
  114. [ubuntu] fedora files access using ubuntu
  115. [ubuntu] What happened to this function in Amarok?
  116. [other] Problems using libtidy with java JNI
  117. [ubuntu] 8.10 System Lag?
  118. [ubuntu] apt-cache search command problem
  119. [ubuntu] Really need help!!!
  120. [xubuntu] Apt-get remove havoc
  121. [ubuntu] eBook Reader with highlight function
  122. [all variants] What should I do to make sure that my repartitioning is going to be safe?
  123. [ubuntu] normal desktop features have started hogging the processor
  124. [ubuntu] GRUB broken - cannot startup Ubuntu
  125. [ubuntu] loading screen
  126. [ubuntu] System policy prevents me from changing configuration
  127. [ubuntu] problem in remounting
  128. [ubuntu] Wader download
  129. [ubuntu] Random FF & TB Crashes
  130. [ubuntu] disk copy tool?
  131. [all variants] How to install and use Charles Proxy debugger? Plz Help!
  132. [all variants] Opening Screen Lock
  133. [ubuntu] Can I use ubuntu to repair XP on the same computer ?
  134. [ubuntu] General disc burning issues
  135. [ubuntu] Undefined VIdeo Error 316
  136. [ubuntu] Raid 5 Array not recognized anymore
  137. [ubuntu] Ubuntu 8.04 Tweak
  138. [ubuntu] problems
  139. [ubuntu] dovecot imap and thunderbird tags
  140. [ubuntu] GSynaptics problem - Touchpad
  141. [other] Spam help ?
  142. [ubuntu] Messed with bash.bashrc file
  143. [ubuntu] Random crashes from firefox, evolution, thunderbird
  144. [xfce] XUBUNTU how to find duplicates ?
  145. [ubuntu] Moving .deb files from desktop to laptop
  146. [ubuntu] double click email
  147. [ubuntu] mysqld doesn't start and no static IP after reboot
  148. [ubuntu] lacie 4 lightscribe - no drives have been detected - 8.10
  149. [ubuntu] Deluge configuring Help
  150. [ubuntu] Slow 3D graphics
  151. [ubuntu] Easily running BASH commands
  152. [ubuntu] Create a custom distro
  153. [ubuntu] iwconfig WPA?
  154. [ubuntu] Just when I think I'm starting to learn something....
  155. [ubuntu] Add/Remove program list disappeared
  156. [ubuntu] where do deleted files go?
  157. [ubuntu] compiling amile
  158. Howto: Download latest amsn svn already compiled
  159. [other_os] can someone help me get an El Torito CD iso image for a bootable floppy disc
  160. [all variants] No Internet
  161. [ubuntu] tar files to install
  162. [ubuntu] Sharing Files (local network)
  163. [ubuntu] Installing PHP using preinstalled mySQL (im noob)
  164. [ubuntu] Network storage and part image
  165. [ubuntu] iPod Touch and Rhythmbox
  166. [ubuntu] Xfce confusion
  167. [ubuntu] Horrible condition of Firefox
  168. [other] MUTT and sending HTML enabled email
  169. [ubuntu] main login menu problem
  170. [ubuntu] KDE and KTNEF downloads?
  171. [xubuntu] Problems Mounting Samsung Cell Phone
  172. [ubuntu] Disc Clone Noob Q
  173. [all variants] Evolution with Exchange: Finding the Global Address List server in Outlook
  174. [ubuntu] Downloaded files are not showing up
  175. [ubuntu] I can not add Launchers on Avant Window Navigator
  176. [ubuntu] I do not foun gpg for repository
  177. [ubuntu] No Youtube video after Flash update
  178. [ubuntu] Any risks with installing 9.04 Alpha?
  179. [ubuntu] Best download manager for Ubuntu?
  180. [ubuntu] Another clipboard How-To question
  181. [ubuntu] Dual Drive Dual Boot Disk Permissions
  182. [other_os] Love ubuntu, want to try other distros..
  183. [ubuntu] run executables anywhere
  184. [other] Noob need help with application installations
  185. [ubuntu] Evolution email spellchecker problem
  186. [ubuntu] ubuntu noob progams ideas
  187. [ubuntu] nm-applet disconnects constantly!
  188. [ubuntu] link Wine to your windows installation dlls?
  189. [ubuntu] White Screen of Death?????
  190. [ubuntu] [Dual-boot] No ubuntu boot option
  191. [kubuntu] vista+linux+ntfs, ok on linux, corrupt on vista
  192. [ubuntu] lost all sound
  193. [ubuntu] Is HDMI via adapter still as good as straight HDMI?
  194. [all variants] xp vm?
  195. [ubuntu] I love Ubuntu but something whent wrong please help!
  196. [ubuntu] Help w/ Error Message
  197. [xubuntu] Will xubuntu install and run on 128MB of ram?
  198. [other] LiLo install; please help
  199. [ubuntu] adding/removing programs crashes.
  200. [ubuntu] im very new with programming and just need a little help
  201. [ubuntu] COD4 Aounf & Lag Issues ----> HELP!
  202. [ubuntu] Ubuntu Using "Archive Manager" instead of "WINE Program Loader" by default. WRONG!
  203. [ubuntu] Extended Space?
  204. [ubuntu] help with upgrading Java
  205. [ubuntu] How to use --exclude variable with TAR or RSYNC
  206. [ubuntu] PDF/PS printing
  207. [xfce] Help with jerky video
  208. [ubuntu] Testing hard disk health.
  209. [ubuntu] User Interface, mouse, wireless adapter not working correctly when suspending(sleep)
  210. [ubuntu] Brother MFC-440CN Printer help.
  211. [kubuntu] External Hard Drive ALWAYS Losing Data
  212. [ubuntu] File Roller window size
  213. [ubuntu] USB External HDD read only..
  214. [ubuntu] lost my 1440x900 resolution
  215. [ubuntu] Getting Webcam to work
  216. [ubuntu] Newbie question - Activating desktop visual effects
  217. [all variants] HFS+ support ubuntu
  218. [ubuntu] Hard Drive Space Dissappearing
  219. [ubuntu] F-spot freeze UBUNTU when Acomdata External USB drive is plugged
  220. [ubuntu] Close, maximize, & minimize buttons on the panel
  221. [ubuntu] how to get g-parted and work it need to know asap
  222. [ubuntu] (Perl) Trouble installing DBD::mysql from CPAN
  223. [ubuntu] Custom Ubuntu DVD Install? Need for Company!
  224. [kubuntu] Via8237 Sound: Need Help
  225. [ubuntu] Looking for a Winamp like intergration for facebook.
  226. [SOLVED] stumped with printer setup
  227. [ubuntu] Custom Scripts
  228. [all variants] Check filesystem at boot
  229. [ubuntu] Title Bar blur
  230. [ubuntu] Change application icon?
  231. [ubuntu] Problem installing AlephOne
  232. [ubuntu] No sound after suspend ???
  233. [ubuntu] FIlezilla crashes if About is selected and when uploading files
  234. [all variants] Having trouble executing setup.jar to install UpToDate
  235. [ubuntu] Screen resolution problems
  236. [ubuntu] Should I back up my external via Drag n' Drop or an .iso? Ubuntu or in Windows?
  237. [ubuntu] No --exclude in grsync
  238. [ubuntu] Error Starting Up Kile in 8.10
  239. [ubuntu] Some backup questions
  240. [ubuntu] Crash: kernel: irq 7: nobody cared (try booting with the "irqpoll" option)
  241. [ubuntu] Forum lacks continuity in addressing problems...
  242. [xubuntu] cannot get openoffice and other software (intrepid)
  243. [ubuntu] DualBoot- Give Windows Acess to Home Folder
  244. [ubuntu] Removing multiple linux installs
  245. [ubuntu] FTP www help
  246. [ubuntu] failed to fetch error
  247. [other] Custom Include directories in gcc
  248. [ubuntu] can't drop to terminal with ctrl + alt + f1-6 in Intrepid
  249. [all variants] Grow partition without moving data?
  250. [ubuntu] Adobe Flash Problems