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] What's accessing my CD drive?
  2. [all variants] Deskbar Applet Custom Addons
  3. [ubuntu] add new keyboard shortcut?
  4. [other] [SOLVED] Partition Table Locked?
  5. [ubuntu] compiz restarts x server problem
  6. [ubuntu] install scanner function on brother dcp130c
  7. [ubuntu] utility to check crc
  8. [ubuntu] Falling at the first hurdle - where is my device manager?
  9. [ubuntu] compiz auto start??
  10. [ubuntu] High CPU usage and evince?
  11. [ubuntu] how can i open iso files pls ...
  12. [ubuntu] [SOLVED] Nvidia and Hardware Drivers question
  13. [ubuntu] Firefox and system fonts
  14. [ubuntu] ubuntu on my toshiba laptop
  15. [ubuntu] Setting a mandatory system-wide proxy
  16. [ubuntu] Ready to burn iso.... what format?
  17. [ubuntu] Unmountable USB thumb drive
  18. [ubuntu] Hardy runs SLOW w/ Twinview enabled
  19. [SOLVED] Look here!
  20. [ubuntu] Thin Client?
  21. [ubuntu] [SOLVED] Firefox 3 error
  22. [ubuntu] Where should I post this?
  23. [ubuntu] code for reinstalling and uninstalling software?
  24. [ubuntu] hang on boot
  25. [ubuntu] Compiz Update
  26. [ubuntu] changing frequency of boot up disk check
  27. [all variants] [SOLVED] Formating a SD memory card
  28. [ubuntu] Ubuntu 7.10 on ps3 HP printer problem & lsusb
  29. [ubuntu] DVD disc mounting problem!!
  30. [ubuntu] Wireless / 8.04.1 Live CD question
  31. [ubuntu] Random computer lockup/freeze
  32. [ubuntu] Windows don't blink in window list
  33. [ubuntu] How do I want to partition my hdd for the Ubuntu...
  34. [ubuntu] issues with autorun gnome-terminal
  35. [ubuntu] Can't mount flashdrive on Hardy
  36. [ubuntu] Opera or firefox?
  37. [ubuntu] Compiz Fusion Eee pc 1000
  38. [ubuntu] Batch Compression Problem
  39. [other] hard restarting and destructive results
  40. [ubuntu] Got Wireless working but will not save settings - Lose on reboot
  41. [ubuntu] File Transfer to Phone
  42. [ubuntu] wget -r (only recursive from within a specific directory)
  43. [all variants] Disable deb-src while preseed
  44. [all variants] Rebinding the CAPS LOCK key to ESCAPE
  45. [ubuntu] Amarok lyrics not working
  46. [ubuntu] How to Uninstall WBar
  47. [kubuntu] small print
  48. [ubuntu] How to add a language in the terminal?
  49. [ubuntu] [SOLVED] Kubuntu logo after installing the package "kubuntu-desktop"
  50. [ubuntu] Realtek HDA
  51. [ubuntu] youtube crashing/ati display driver
  52. [ubuntu] [SOLVED] where's all my trash goin?
  53. [ubuntu] xorg.conf not rotating screen
  54. Downloading Thunderbird problems
  55. [ubuntu] There was an error starting the GNOME Settings Daemon.
  56. [ubuntu] Firefox and small fonts
  57. [all variants] [SOLVED] Linux or Windows (?)
  58. [ubuntu] Accidently messed something up in terminal
  59. [ubuntu] Installing software...............HELP!
  60. [ubuntu] Upgrade Freezing
  61. [ubuntu] properly printing web pages to pdf (i.e. printing them as landscape)
  62. [ubuntu] Terminal freezing root login failing
  63. [ubuntu] Sharing files over network
  64. [ubuntu] Need help with Wow and Firewalls. [Desperately need help!?]
  65. [ubuntu] Saved folder in ubuntu cannot read in XP
  66. [ubuntu] Intel 4965 AGN wireless
  67. [all variants] difference /etc/environment vs .bashrc
  68. [ubuntu] Problem booting up due to Kernel changes
  69. [ubuntu] cat typing
  70. No CD drive
  71. [gnome] [SOLVED] Get Rid of Sliding Panel
  72. [other] [SOLVED] x68_64bit distribution on x68_32bit computer
  73. [ubuntu] PHP/SQL Help Please
  74. [ubuntu] Bottom Panel Disappearing
  75. [ubuntu] Helpless! Kernel Panic during boot unknown block (0,0)
  76. [ubuntu] sound problem
  77. [gnome] HOWTO - Star Trek LCARS theme
  78. [ubuntu] flickering problem after graphics driver update
  79. [ubuntu] Network help?
  80. [ubuntu] 7.04-8.04 upgrade/install lots of headaches
  81. [ubuntu] windows randomly doesn't restart
  82. [xubuntu] killall command doesn't killall
  83. [kubuntu] KDE4.1 Time Settings
  84. [ubuntu] Forgets my keyboard layout
  85. [ubuntu] ubuntu disk blank screen.
  86. [ubuntu] [SOLVED] Compiz Sphere only with Root Permission?
  87. [ubuntu] How to disable "Executable text file" thing?
  88. [all variants] How to burn a CD (and DVD) despite bug #149076
  89. [ubuntu] aMSN Crashes X
  90. [ubuntu] No Sound in WoW
  91. [all variants] how to check which files from one folder are not found in another
  92. [gnome] [SOLVED] can't apply Desktop Theme
  93. [all variants] A web developer who wants to migrate to Linux
  94. [xubuntu] [SOLVED] Reading Power Point files (PPS) in Xubuntu
  95. [ubuntu] Evolution password at startup
  96. [ubuntu] Ubuntu Eating Major Ram
  97. [SOLVED] Ethernet card seen but unconfigurable
  98. [ubuntu] Compiz Settings
  99. [ubuntu] unable to login
  100. [all variants] Going from Mac OS X to Linux help
  101. [ubuntu] Any help appreciated.
  102. [ubuntu] Please help cant find sound card and wireless card drivers
  103. [ubuntu] Please help with DVD error before I Have to go back to windows :(
  104. [ubuntu] Vim
  105. [all variants] There has to be another place to put this... MP3 player dependencies questions
  106. [ubuntu] Need to make several Ubuntu PC's look like Windows
  107. [ubuntu] win2k compatablility?
  108. [ubuntu] How to install a compiz theme?
  109. [ubuntu] Major Power Management Failures
  110. [ubuntu] Identical UUIDs for FAT32 partitions problem
  111. [ubuntu] Desktop effects could not be enabled
  112. [all variants] Need help making a desktop shortcut to a Java app
  113. [ubuntu] Compiling
  114. [ubuntu] trying to install opera on ubuntu, getting binary error on their webpage
  115. [all variants] Google Toolbar Autologin on Firefox Launch?
  116. [ubuntu] Listing a directory tree in text
  117. [ubuntu] [SOLVED] keyboard layout at boot tim
  118. [ubuntu] PS3 Ubuntu Help!!
  119. [ubuntu] gif's in compiz fusion
  120. [kubuntu] [SOLVED] Where does Adept store the downloaded packages?
  121. [xubuntu] Changing window manager colors in xubuntu
  122. [ubuntu] I want to burn multiple albums on cd
  123. [ubuntu] Erase Print Jobs in que.
  124. [all variants] problem with google maps
  125. [ubuntu] Stocks Screenlet Broken in Ubuntu
  126. [ubuntu] 1) dvd file copy issues 2) multimedia playback
  127. [other] deluge categories
  128. [ubuntu] Samsung SGH-X830
  129. [ubuntu] Firefox freaking out
  130. [ubuntu] Hardy: Start-up error
  131. [ubuntu] DOSBOX help
  132. [all variants] [SOLVED] Hellanzb download problem
  133. [ubuntu] installing world of warcraft
  134. [xubuntu] [SOLVED] Multiple workspaces no longer works
  135. [ubuntu] Making ace library
  136. [ubuntu] [SOLVED] help with an "at" command
  137. [ubuntu] [SOLVED] Fading Application
  138. [ubuntu] [SOLVED] Set default Xterm size
  139. [ubuntu] No GLXFBconfig for default depth
  140. [ubuntu] have a "new restricted driver in use" icon at the top right.. how do I get rid of it?
  141. [ubuntu] Fusion-icon on AWN?
  142. [ubuntu] "Loading" forever--video never starts
  143. [ubuntu] gcursor trouble.
  144. [ubuntu] Upgrading computer components, do I need a reinstall?
  145. [all variants] Messenger with Video and Audio suport
  146. [other] Forum attachment problem - opera only
  147. [ubuntu] Problems with Belkin: Wireless Desktop Network Card F5D6001
  148. [ubuntu] Firefox does not display page correctly
  149. [ubuntu] [SOLVED] can't save file
  150. [all variants] Buffer I/O Error | EXT3-FS Error
  151. [ubuntu] [SOLVED] No Swap
  152. [ubuntu] Unable to select Applications Places System
  153. [kubuntu] I need help here.
  154. [ubuntu] can't 'unlock' any admin functions in 8.04
  155. [xubuntu] fsck error on "autocheck" at boot-up
  156. [ubuntu] can anyone help me get DVD Decrypter
  157. [ubuntu] "signal out of range" in X
  158. [ubuntu] [SOLVED] amarok on ubuntu
  159. [ubuntu] Finding out passwords entered on your system...
  160. [ubuntu] I have no xorg! And im running ubuntu?
  161. [ubuntu] Graphic / Refresh issues
  162. [all variants] Easiest way to flash prom
  163. [ubuntu] [SOLVED] lm-sensors doesn't read sensors.conf file
  164. [ubuntu] question about boot menu
  165. Error when installing LVPM
  166. [ubuntu] CNR on fresh hardy install
  167. [ubuntu] screensaver
  168. [ubuntu] "killall pulseaudio" It fixes my Audio problem.. BUT .. ??
  169. [ubuntu] [SOLVED] Why only root can write ntfs?
  170. [ubuntu] possible to somehow search a 600meg mysql database i have local?
  171. [ubuntu] how can i install dhcpd
  172. [ubuntu] Extrememly slow boot time - booot log provided
  173. [ubuntu] Web Hosting
  174. [other] Acer AL1716 Monitor taking a long time to display.
  175. [all variants] [SOLVED] Setting default OS in grub
  176. [ubuntu] [SOLVED] Can't add or delete users
  177. [ubuntu] help needed
  178. [ubuntu] Courser Shadow
  179. [ubuntu] Changing Default Print Order
  180. [ubuntu] not for me
  181. My Little Directory backup script.
  182. [ubuntu] Question about Pidgin
  183. [ubuntu] Transmission doesnt seem to want to upload
  184. [ubuntu] Help regarding a failed kernel update
  185. [ubuntu] multiple websites to one webserver?
  186. [ubuntu] problem with exaile
  187. [ubuntu] Problem with stardict
  188. [kubuntu] [SOLVED] Kubuntu startup
  189. [ubuntu] Running python in Ubuntu
  190. [ubuntu] [SOLVED] Plagued by constant kernel panics!
  191. [ubuntu] IronKey Secure USB device
  192. [ubuntu] Laptop Ubuntu Shutdown/Restart: Must Unplug Laptop
  193. [ubuntu] Driver or Playonlinux problem
  194. [ubuntu] Ubuntu stopped booting on dual boot system
  195. [ubuntu] Colourless screen
  196. [ubuntu] How to extract one directory from a full system tar backup
  197. [ubuntu] need java for opera in ubuntu...
  198. [mythbuntu] How do I share a printer/run print server?
  199. [xubuntu] Run Compiz on startup in Xubuntu?
  200. [ubuntu] Media volume key...
  201. [ubuntu] Installation of ATI driver = White screen
  202. [kubuntu] how do i install Opera 9?
  203. [ubuntu] ram on pc
  204. [kubuntu] Banshee Quits After A Few Seconds
  205. [all variants] install cups
  206. [all variants] [SOLVED] Cannot MD5SUM any .7z Archives (Check or Generate) - Any Ideas??
  207. [ubuntu] Using my Zune
  208. [ubuntu] [SOLVED] Emerald dose not apply
  209. [kubuntu] [SOLVED] How do i install Flash Player for FireFox?
  210. [gnome] Enabling GDM timed login for multi head
  211. [ubuntu] javascript not working in firefox 3.0.1
  212. [ubuntu] For those familiar with auto-mounting
  213. [ubuntu] [SOLVED] How To Anchor A Non-Expanded Gnome Panel To A Corner
  214. [ubuntu] not owner of drive
  215. [ubuntu] Help with Wine & Picasa
  216. [ubuntu] iwconfig changes when ifconfig used
  217. [ubuntu] Apache Help
  218. [ubuntu] does google earth work proprely in ubuntu?
  219. [all variants] Thunderbird Virus Scan
  220. [ubuntu] [SOLVED] Windows share and permissions
  221. [ubuntu] VIdeoDriver /Compiz issues
  222. [ubuntu] Can you fix my banged up hard drive?
  223. [SOLVED] Wubi has betrayed me...
  224. [ubuntu] Realign screen to the right
  225. [all variants] Apache user
  226. [other] How to install ubufox for swiftweasel?
  227. [all variants] Quick navigation in terminal
  228. [ubuntu] Terminal/installer error
  229. [ubuntu] [SOLVED] Permission can't be determined.
  230. [ubuntu] fast system, but Ubuntu like molasses... why?
  231. [ubuntu] [SOLVED] Can't find installed package
  232. [ubuntu] Resetting to default
  233. [all variants] This RAID upgrade plan probably isn't going to work huh?...
  234. [other] super-powered-cow apt-get
  235. [ubuntu] does Media Portal work in Ubuntu?
  236. [ubuntu] my cursor gets the "jitters" when I roll over buttons...
  237. [ubuntu] Ubuntu refusing to boot.
  238. [ubuntu] Wait? 150GB HD?
  239. [ubuntu] Partitions Re-Sizing
  240. [all variants] Spotty Flash behaviour in Firefox
  241. [other] [SOLVED] Package name for Ubuntu's user management program?
  242. [all variants] Troubles installing second optical drive.
  243. [ubuntu] Digikam
  244. [ubuntu] Trouble with Nautilus and desktop
  245. [all variants] Ubuntu much slower on Ultra 1 than expected
  246. [other] why would I not be able to pull up chat rooms in operas irc right now?
  247. [all variants] It's possible to disable USB pens but allow USB cameras?
  248. [ubuntu] please suggest a motherboard
  249. [ubuntu] Firefox fullscreen problems.
  250. [ubuntu] Ubuntu - Opening applications taking time.