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. [gnome] Drawer Applet Hangs When Opening
  2. [ubuntu] How to override default program version (Java)
  3. [ubuntu] Changing Hard Drive Permissions
  4. [ubuntu] Ubuntu maintenance and security questions
  5. [all variants] An IMPORTENT forum problem solve solution
  6. [ubuntu] saving file error.
  7. [ubuntu] deluge problems
  8. [ubuntu] [SOLVED] Nautilus failure at writing CD image to disc-Error occured at start.
  9. [ubuntu] how do i cube?
  10. What's the deal with Firefox 3.0.3?
  11. [ubuntu] how i can change Encodinc
  12. [ubuntu] TVPolonia/MMS Help
  13. [ubuntu] Can't find SATA disks
  14. [ubuntu] [SOLVED] Alternative Calendar
  15. [ubuntu] my ubuntu has disappeared
  16. [ubuntu] OpenOffice Unusable
  17. [ubuntu] Compiling, make - error 2
  18. [ubuntu] Theme Question
  19. [ubuntu] outbound mail from perl/command line
  20. [all variants] noob: couple newbie questions regarding partitions
  21. [ubuntu] Keyboard indicator lights no longer function
  22. [all variants] Output of regionset
  23. [ubuntu] Can Ubuntu 8.04 update to Gnome 2.4...if so, how?
  24. [other] Find a file
  25. [ubuntu] missing apps/programs when minimized
  26. [ubuntu] help with script
  27. [kubuntu] firefox runs slowly
  28. [ubuntu] How to automatically mount my NTFS volumes on every boot?
  29. [ubuntu] Figure this one out. Insta-fixed "Error 22" with Grub.
  30. [ubuntu] [SOLVED] Auto-install script
  31. [ubuntu] Disk Mounter desktop applet not allowing mounting
  32. [ubuntu] windows not loading
  33. [SOLVED] Lookinc for a file synch program
  34. [ubuntu] remove Bluefish menu option
  35. [ubuntu] Wierd Problems
  36. [ubuntu] Advice for web ftp interface
  37. [ubuntu] [SOLVED] "Can not mount the selected partition " please help
  38. [gnome] Use Infared w/ a remote to control music?
  39. [xubuntu] delete user-created session
  40. [ubuntu] Create Launcher for .sh
  41. [ubuntu] Constant crashes on ubuntu hardy
  42. [ubuntu] Is there any idea for wine to supports other languages?
  43. [ubuntu] How do I access Compiz-fusion?
  44. [ubuntu] Firefox causes full system freeze (hardy)
  45. [ubuntu] My flash player won't work in youtube.
  46. [ubuntu] Getting an error when installing in add/remove programs.
  47. [ubuntu] Flash stopped working
  48. [ubuntu] [SOLVED] how do I change default email client
  49. [ubuntu] recent text documents appear twice
  50. [ubuntu] Opera crashing during fast tab opening
  51. [ubuntu] [SOLVED] Tomboy Notes with pictures?
  52. [xubuntu] Fresh install very slow
  53. [ubuntu] Latest Firefox Update Broken
  54. [ubuntu] [SOLVED] Unable to mount external hard drive
  55. [ubuntu] account locking up computer
  56. [ubuntu] Can't figure out how to install TV tuner card (haupp pvr-150)
  57. [ubuntu] [SOLVED] Wallpaper goes off on reboot
  58. [ubuntu] Find text in single line
  59. [ubuntu] Which compression method is best?
  60. [ubuntu] Intel Extreme Graphics 2
  61. [all variants] Is this code OK to run?
  62. [ubuntu] Need suggestions for a .chm viewer please
  63. [ubuntu] [SOLVED] Can't get readwritable shares in samba no matter what I do
  64. [ubuntu] [SOLVED] hard drives
  65. [ubuntu] [SOLVED] Processor usuage with file-roller
  66. [ubuntu] Shrink Screen Resolution
  67. [ubuntu] Compiz not worken
  68. [ubuntu] Mount partition without showing up on desktop
  69. [ubuntu] [SOLVED] Installing Ubuntu
  70. [ubuntu] [SOLVED] MySQL linking problem?
  71. [xubuntu] [SOLVED] hdd going bad
  72. [all variants] Suspend2/TuxOne and ATI fglrx
  73. [ubuntu] Linux screw up?
  74. [gnome] How to Change Browser Password Masking Character
  75. [ubuntu] Videos Make Firefox 3.0.2 Crash
  76. [other] Need boot CD w/ USB support to boot pendrive
  77. [ubuntu] Makefiles
  78. [ubuntu] [SOLVED] Cap Lock key = lower case?
  79. [kde] how can i get these window decoration
  80. [ubuntu] I need help installing Adobe Flash Player
  81. [ubuntu] [SOLVED] Q: Remote Desktop Viewer + Vista
  82. [ubuntu] Ext2 IFS problem
  83. [ubuntu] [SOLVED] could my kernal be mis-reading my CPU?
  84. [ubuntu] Kernel Type(not sure if this is the best place for this)
  85. [ubuntu] [SOLVED] Request: deb from source
  86. [ubuntu] gimp-print wants to remove gimp
  87. [ubuntu] gcc executables
  88. [ubuntu] knit error and sturtup problem with 8.04
  89. [ubuntu] Hard to describe PHP issue.
  90. [ubuntu] Lottanzb + Hellanzb = trouble?
  91. [ubuntu] what the best image editor like photoshop
  92. [all variants] Any tool to see which process/application utilises hard disc most?
  93. [ubuntu] Active directory and Ubuntu
  94. [ubuntu] [SOLVED] how to move the window space slider 2 enable it to move off the cube
  95. [ubuntu] [SOLVED] Running kile on ubuntu 8.04 with gnome desktop
  96. [ubuntu] Places Network folder empty
  97. [all variants] Configure Isn't Working
  98. [ubuntu] Partition for home folder.
  99. [ubuntu] [SOLVED] sudo environment question
  100. [ubuntu] screen refresh rate
  101. [ubuntu] perl version 5.10
  102. [ubuntu] [SOLVED] Backgammon agaist computer?
  103. [ubuntu] Repairing my broken system....
  104. [ubuntu] Simple scripting question
  105. [ubuntu] [SOLVED] laptop overheating
  106. [ubuntu] Proxy apps on limited network?
  107. [ubuntu] what exactly is CLOUD STORAGE
  108. [all variants] new computer Dell m1530 what can and should be done
  109. [ubuntu] Keyboard preferences lost on automatic login
  110. [ubuntu] Problem: Tango Generator
  111. [ubuntu] Configuring SendMail for outbound only
  112. [ubuntu] 7zip: specify archive size
  113. [ubuntu] USB stick detected but not mounted
  114. [ubuntu] Need help with Tomboy issue
  115. [ubuntu] uuencode: command not found
  116. [ubuntu] ksayit no sound
  117. [all variants] new to ubuntu and problems already?
  118. [ubuntu] cinelerra
  119. [ubuntu] [SOLVED] Environment problem (Apache + mod_rails)
  120. [ubuntu] Compiz and Flashy Videos/Games
  121. [xubuntu] VirtualBox kernel driver not installed
  122. [ubuntu] cant upgrdae my UBuntu !??
  123. [gnome] [SOLVED] netspeed applet - does not pick upload speed
  124. [ubuntu] Backup
  125. [ubuntu] emachines w3619 pci card contextant 56k modem scanner after sudo shows blank txt
  126. [ubuntu] xterm return data
  127. [other] OT question about Kompozer HTML Editor
  128. [kubuntu] how do i install extra plugins for compiz fusion?
  129. [ubuntu] Windows to Ubuntu programs?
  130. [gnome] ask for theme vista_to_ubuntu and apple(full pack)?
  131. [ubuntu] [SOLVED] Automount volume switches mount points
  132. [ubuntu] Abrupt system power off without warning
  133. [ubuntu] Host file question
  134. [ubuntu] Epiphany-webkit
  135. [ubuntu] Help running driver on startup
  136. [ubuntu] [SOLVED] Problem with Startup Manager
  137. [ubuntu] Proftpd and Logging
  138. [ubuntu] browsing windows network
  139. [ubuntu] ImageMagick convert (PDF to JPG) not working
  140. [ubuntu] hard drive permission
  141. [ubuntu] [SOLVED] The Dennis Miller show?
  142. [ubuntu] OpenChange
  143. [ubuntu] Searching apt repositories
  144. [ubuntu] [SOLVED] Laptop LCD Brightness Setting
  145. [ubuntu] Not recognizing RAM correctly
  146. [all variants] I want 'mv' to update timestamp
  147. [ubuntu] Update stalls at capplets-data
  148. [ubuntu] Desktop disappears
  149. [ubuntu] aptitude vs. apt-get
  150. [ubuntu] Thunderbird link on top of Firefox?
  151. [ubuntu] Total Download and upload speed
  152. [ubuntu] java makes forms blank on random
  153. [ubuntu] Mouse very slow
  154. [ubuntu] Pounding head against dhcp wall
  155. [ubuntu] mouse problems
  156. [ubuntu] Which is better?
  157. [ubuntu] reinstall without touch /home?
  158. [ubuntu] [SOLVED] Running an application on the menu with root privileges
  159. [ubuntu] Lang Version wanted
  160. [ubuntu] Cleaning up after failed package install
  161. [ubuntu] How to make iptables rule set permanent and on startup??please
  162. [ubuntu] Firefox Printing Ugly Fonts
  163. [ubuntu] Frets on fire not liking me
  164. [ubuntu] rdesktop to Windows Server 2003 system
  165. [ubuntu] Any suggestions on web server apps
  166. [ubuntu] Specifying mime-type
  167. [ubuntu] Desktop sometimes won't start.
  168. [ubuntu] How do you install software on PalmOS
  169. [ubuntu] digikam xorg
  170. [ubuntu] no ristricted driver manager
  171. [all variants] Very strange routing problem
  172. [ubuntu] I have lost the title bar!
  173. [gnome] Problem wi Alt+Tab on Compiz
  174. [ubuntu] fireftp and gftp times out trying to connect
  175. [ubuntu] Windows is to N-Lite as Ubuntu is to.. what?
  176. [ubuntu] Nvidia dell d630 dual monitors
  177. [ubuntu] Ubuntu terminal commands from DOSEMU?
  178. [ubuntu] [SOLVED] Use apt-get but use the word yum instead?
  179. [ubuntu] detecting wireless adapter
  180. [ubuntu] [SOLVED] Missing .config file
  181. [ubuntu] Keyboard layouts problems
  182. [ubuntu] Screen acer al1917w -it's too wide
  183. [SOLVED] Installation stucked at "Saving VESA state.."
  184. [ubuntu] [SOLVED] want touse beryl
  185. [ubuntu] Please help a deploying servicemember get the sound to work in amsn
  186. [ubuntu] Ipod sync and working with ubuntu..how?
  187. [ubuntu] wav file conversion
  188. [ubuntu] DejaVu Sans Condensed in OpenOffice.org
  189. [ubuntu] problem with SATA controller
  190. [ubuntu] Two BIG problems I'm having regarding fsck and the X server.
  191. [ubuntu] How to install pc tablet
  192. [ubuntu] font for adobe reader
  193. [all variants] Files restored from linux file server unable to be accessed under linux
  194. [ubuntu] omg HUGE partition problemmm!!!!
  195. [ubuntu] cairo-dock
  196. [ubuntu] program to create web pages
  197. [ubuntu] Need Help with Firefox
  198. [ubuntu] Firefox Question
  199. [ubuntu netbook remix] maximus
  200. [ubuntu] Restarts-shutdowns
  201. [all variants] Any decent Instant Messengers? Pidgin isn't decent.
  202. [ubuntu] Gtk2.0-dev install problem
  203. [kubuntu] [SOLVED] Install conky from source: Can't locate your X11 installation
  204. [ubuntu] [SOLVED] Flash not working with new Firefox update
  205. [all variants] [SOLVED] suddenly can't connect to MySQL server with third-party GUIs on local machin
  206. [ubuntu] [SOLVED] Problem running ubuntu on a vaio laptop
  207. [other] webbrowsers crashing randomly
  208. [ubuntu] mail-notification bug
  209. [ubuntu] not able to boot in dual boot after upgrading to vista...
  210. [other] NTFS Consistency.
  211. [other] Syncing iPod touch?
  212. [ubuntu] How do I remove Sun Java 6 Web Start
  213. [ubuntu] Does Amarok Support MP3?
  214. [ubuntu] Compiz unsupported value issue
  215. [ubuntu] remote access help
  216. [ubuntu] Microphone clipping problem (newbie)
  217. [ubuntu] Running after installing
  218. [ubuntu] Partitioning Troubles.
  219. [gnome] [SOLVED] How do I get this sidebar (pic included)?
  220. [ubuntu] Looking for a theme that mimics Ubuntu MID or Ubuntu eee.
  221. [ubuntu] Change the pictures for Slidescreen, ant spotlight, ect screensavers
  222. [ubuntu] Pidgin Text
  223. [ubuntu] Compiz Fusion--Restore to Gmone 1st install defaults
  224. [ubuntu] USB Sound card problem
  225. [ubuntu] Emerald replace help, xwinrap help please
  226. [ubuntu] [SOLVED] Mplayer plugin for Firefox not working
  227. [ubuntu] [SOLVED] Make WIndows master boot option?
  228. [other] Using ext2/ext3 on Windows
  229. [ubuntu] apt-get doesn't work..
  230. [ubuntu] Theme question
  231. Can I expand/shrink the Wubi installation drive?
  232. [ubuntu] YACC problem !!
  233. [SOLVED] System freeze after login? (new install using wubi)
  234. [ubuntu] How do I install a new partition?
  235. [ubuntu] Multi boot Fedora, Ubuntu and Windows
  236. [all variants] How do I make awn show only the windows on my active workspace?
  237. [ubuntu] intel_rng: FWH not detected
  238. [ubuntu] after installation...
  239. [ubuntu] Why does audio keeping coming out of my speakers even though I plugin my headphones?
  240. [ubuntu] Bidirectional Audio/video conferencing and using USB mics
  241. [ubuntu] MacMenu
  242. [ubuntu] reinstall oss
  243. [ubuntu] [SOLVED] Modification of sudo Timeout
  244. [ubuntu] Dictioary in OpenOffice is not working =(
  245. [ubuntu] only boots in failsafe Gnome
  246. [ubuntu] VMWare Ubuntu Guest with Synaptics Touchpad
  247. [other] Intel kernel bug
  248. [ubuntu] [SOLVED] Lost Background & right click menu
  249. [ubuntu] software sources will not let me import a key file
  250. [ubuntu] Bad Harddrive?