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] wireless usb adapted
  2. [ubuntu] Xilinx ISE 9.2i for Ubuntu Gutsy with kernel 2.6.22-14-generic
  3. [other] how to clean cpu heat sink?
  4. [ubuntu] Desktop Themes
  5. [ubuntu] Upgrading Compiz
  6. [ubuntu] how to get opera plugins to work ?
  7. [ubuntu] Please help.
  8. [ubuntu] Partition Hard drive
  9. [ubuntu] AWN Launchers not working
  10. [ubuntu] How do I change the default font used in a Print to PDF file?
  11. [ubuntu] Importing Podcast list OPML into gpodder
  12. [all variants] Replace hidden characters with OTHER hidden characters
  13. [ubuntu] Nagios SSL/NRPE problem
  14. [gnome] fullscreen/geometry issues with gnome-terminal and multiple monitors
  15. [ubuntu] Partition Delete/Resize Has Caused "Dead Weight".
  16. [ubuntu] [SOLVED] terminal
  17. [ubuntu] Where is GConf?
  18. [gnome] root Help
  19. [other] Program Status Request
  20. [ubuntu] Run script on hibernate/standby resume and AC/battery state change
  21. [ubuntu] Warsow Repo package outdated
  22. [gnome] HELP!: network manger missing from top panel
  23. [ubuntu] Full Screen App/Game issue
  24. [ubuntu] Install hanging on HP a450n
  25. [ubuntu] Icon Pack
  26. [ubuntu] [SOLVED] reinstalling flash plug-ins
  27. [ubuntu] blurry graphics
  28. [ubuntu] Firefox Menu Font Colour
  29. [all variants] Where is libmudflap.a?
  30. [ubuntu] connecting two ubuntu hardy computers via ethernet
  31. [ubuntu] [SOLVED] num lock quits working on hardy
  32. [all variants] Compiz + fglrx + R6XX; mipmap rendering?
  33. [ubuntu] Nvidia 173.14.12 problem
  34. [ubuntu] Ubuntu 5.10 jre1.5.0_16 problems
  35. [ubuntu] PDF Annotator/Note Taker
  36. [ubuntu] External drives automount in readonly mode
  37. [other] Uninstall Linux Mint
  38. [ubuntu] Running a script at startup.
  39. [all variants] Can't Run LiveCD on Abit FATAL1TY F-I90HD
  40. [ubuntu] Error 15: Files not found
  41. [ubuntu] v8.04 Graphics Driver (Intel D201GLY2 motherboard)
  42. [ubuntu] white screen after fglrx installed
  43. [ubuntu] Easiest Cellphone Modem Connectivity
  44. [ubuntu] help me to make ubuntu detect my internatl modem!!!!
  45. [ubuntu] Openoffice 2.4.1 and the 3d transitions?
  46. [ubuntu] Emerald and Terminal
  47. [ubuntu] How to stop SMTP service in Ubuntu?
  48. cant get to partitioning menu
  49. [ubuntu] Google Earth's bug?
  50. [ubuntu] undeleting
  51. Ubuntu Freezes at "Username:"
  52. [ubuntu] Brother MFC 420CN Printer.
  53. [ubuntu] compiz = laggy
  54. [ubuntu] Problem installing Mayanna
  55. [ubuntu] Compiz Scale plugin, is there a way to extend corners for tablet use?
  56. [ubuntu] Yugma needs Java, but
  57. [ubuntu] Mailx will not send email
  58. [ubuntu] Problem getting WINE apps available to all users
  59. [ubuntu] [SOLVED] How to automatically mount my windows drive at boot time?
  60. [ubuntu] [SOLVED] Using ntfs-3g from Hardy to read/write files on external harddrive
  61. [ubuntu] [SOLVED] Synchronizing Rainlendar Calendars Between Partitions
  62. [all variants] any way to automate desktop cleaning?
  63. [ubuntu] [SOLVED] Not sure which kernel
  64. [ubuntu] 8.04 Upgrade failed now rescuing data on LIVE CD
  65. [xubuntu] vnc4server killed xwindows
  66. [all variants] Problem with GDM an X
  67. [ubuntu] 4 Partitions, No Disk Space on Ubuntu
  68. [ubuntu] Compiz
  69. [ubuntu] Can I stop "check Gmail" script from showing in terminal?
  70. [xubuntu] screen displaying resolution incorrectly
  71. [ubuntu] Help installing beryle
  72. [ubuntu] 1680x1050, and lots of restrictions
  73. [ubuntu] Postfix / Postqueue woes
  74. [ubuntu] 3d desktop
  75. [gnome] GTK vs Metacity vs Compiz vs XMMS themes
  76. [SOLVED] Cannot use wubi 8.04.1 on dell latitude d820 with vista
  77. [ubuntu] Boot from RAM?
  78. [ubuntu] Ubuntu won't install - black screen (2 questions)
  79. [ubuntu] SMS sneding/recieving
  80. [ubuntu] Copying old harddrive to new bigger one
  81. [ubuntu] [SOLVED] Compiz Fusion
  82. [ubuntu] KGet toolbar menu gone, can't add it back?
  83. How to Install Realplayer
  84. [all variants] Installing Compiz plugins Howto
  85. [ubuntu] Transparent input bars backgrounds?
  86. [ubuntu] [SOLVED] Telling Linux to search a specific dir for fonts
  87. [ubuntu] Very Slow usb transfers
  88. [ubuntu] Sort by audio track number
  89. [ubuntu] Why two processor entries?
  90. [all variants] How to Monitor Hard Drive Access?
  91. [ubuntu] [SOLVED] dual boot with vista failed!! i no longer have acess to ubuntu
  92. [ubuntu] .dmrc login error...and WAY BEYOND!
  93. [ubuntu] How can I make GRUB look nicer?
  94. [ubuntu] I Need a BASIC messenger for yahoo client...
  95. [ubuntu] [SOLVED] Compiz Vs Pidgin :: Grrrr..
  96. [ubuntu] Softphone - what's best?
  97. [ubuntu] reinstalled OS, forgot to redo "/home" partition properly. help needed
  98. [ubuntu] new home old home
  99. [ubuntu] "Boot into another OS" option
  100. [ubuntu] GPU fan going crazy
  101. [all variants] pl2303 USB to Serial
  102. [ubuntu] Printer Administration not working
  103. [ubuntu] Printer needs reconfiguration at boot up
  104. [ubuntu] problem about installing anything
  105. [ubuntu] can you get security
  106. [ubuntu] Im new
  107. [ubuntu] compiz problem
  108. [all variants] [SOLVED] Internal Repository Mirror
  109. [ubuntu] can you use photoshop?
  110. [ubuntu] Title Bar Problems
  111. [ubuntu] dual boot configuration with partition sharing
  112. [ubuntu] ports
  113. [ubuntu] Does Texlive 2007 have a IDE that like WinEdt
  114. [ubuntu] My Ubuntu 8.04 Does Not Open Please Help
  115. [ubuntu] Acer Aspire One Laptop & My Options..
  116. [ubuntu] Does the Ubuntu KDE desktop look as good as OpenSuse's?
  117. [ubuntu] Ubuntu on a tablet
  118. [ubuntu] how to remove vista from dual boot vista+ubuntu
  119. [other] Zombie Process
  120. [ubuntu] 3d effects not working right
  121. [ubuntu] Cannot use compiz with Intel® 945M Express Chipset!?
  122. [ubuntu] Thunderbird just doesn't work with gmail/google apps.
  123. [ubuntu] Notes 8 won't connect to Firefox
  124. [all variants] fstab is not user friendly
  125. [all variants] Microsofts prn file conversion
  126. [ubuntu] e-Books
  127. [ubuntu] [SOLVED] Main Toolbar Gone
  128. [all variants] emesene 911 error
  129. [kubuntu] Kubuntu backup utility
  130. [all variants] External USB hard drive as 'Primary partition'
  131. [ubuntu] No title bar when using compiz
  132. [ubuntu] [SOLVED] /media/disk owned by root
  133. [gnome] Lost the application icon on window title bar
  134. [ubuntu] how to install newgenlib
  135. [other] How to synchronise directories from an ext3 partition to a FAT32 one ?
  136. Wubi install problems
  137. [ubuntu] Please Show Me How To Fill In The Twinkle User Form
  138. [all variants] Searching with part of the name ---How?
  139. [ubuntu] [SOLVED] How to remove GRUB?
  140. [other] mdadm - Corrupted SATA Drive
  141. [ubuntu] Problems with Broadcom wireless card
  142. [ubuntu] remove all except 2 files
  143. [xubuntu] Qq
  144. [ubuntu] [Postfix + mysql] How to configure it?
  145. [ubuntu] Memory Problems - Gutsy
  146. [ubuntu] Problem: services that require usernames (startup)
  147. [ubuntu] why youtube videos are very slow on firefox
  148. [ubuntu] Splash screen - How to get -v ?
  149. [ubuntu] Saving and changing profiles with Compiz (settings manager)
  150. [ubuntu] Dapper Firefox Command-line
  151. [ubuntu] can you choose the drive ubuntu installs on ?
  152. [xubuntu] could not be opened, because the associated helper application does not exist
  153. [ubuntu] Avant Windows Navigator doesn't "remember" launchers when rebooted.
  154. [other] GPG signature problem between Evolution and Thunderbird
  155. [gnome] "Main Menu" won't open
  156. [all variants] searching apt-get
  157. [ubuntu] is it possibe to put a video by default right after the login screen?
  158. [all variants] programs that are "in the public domain"
  159. [all variants] Giving a University Presentation on Ubuntu - Suggestions Wanted!
  160. [ubuntu] [SOLVED] overheating
  161. [ubuntu] Conky+Banshee.....
  162. [other] logon video
  163. [xfce] Problems with tint
  164. [ubuntu] AVG doesn't seem to complete scan
  165. [all variants] Intel 845G woes: login resolution, xv, blue bar on video playback
  166. [SOLVED] Ubuntu Screen-Recorder
  167. [ubuntu] Make Ubuntu look like default GNOME
  168. [all variants] mail to use outside smtp server (ie. smtp.example.com) for outbound messages
  169. [ubuntu] [SOLVED] Hardy: how to disable AppArmor????
  170. [ubuntu] [SOLVED] Ubuntu Update Error
  171. [ubuntu] Auto Logon in SSH ??
  172. [all variants] how to encrypt files ?
  173. [ubuntu] External Storage Help
  174. [ubuntu] where do i find the server :S
  175. [ubuntu] How to update computers not connected to internet?
  176. [ubuntu] Total Newb
  177. [ubuntu] Mysterious name changing media
  178. [ubuntu] I am very sorry...I will try to explain
  179. [ubuntu] Where to place manually installed apps?
  180. [ubuntu] Where can i find recordmydesktop?
  181. [ubuntu] [SOLVED] Absolutely no sound. Anywhere.
  182. [ubuntu] Un-intended change in background Colour
  183. [gnome] clipboard utility????
  184. Grub Error 15: file not found
  185. [ubuntu] Compiz on Ubuntu 8.04
  186. [ubuntu] Glibc_2.4
  187. [ubuntu] No window decorations/borders after upgrade to Hardy
  188. [ubuntu] On Screen Keyboard (iPhone like)
  189. [all variants] [SOLVED] Bash Help
  190. [ubuntu] I cannot change the wallpaper.
  191. [ubuntu] Ubuntu and Mint boot me to tty1
  192. [ubuntu] Google Gears not working
  193. [ubuntu] [SOLVED] Portable HDD
  194. [ubuntu] How to open g++?
  195. [ubuntu] Firefox screenshot screensaver
  196. [other] [SOLVED] will the power supply work?
  197. [ubuntu] taskbar top
  198. [other] Post a how to build pc guid plz
  199. [gnome] [IDEA] Adding Evolution protocols?
  200. [other] [SOLVED] need help with palm e2 please and thank you
  201. [ubuntu] sound problems
  202. [ubuntu] what are the must have apps for tweaking ubuntu's look?
  203. [ubuntu] Inkscape vs. Nautilus
  204. [ubuntu] Pspubuntu
  205. [all variants] Backuping up Ubuntu packages
  206. [kubuntu] The startup theme...
  207. [ubuntu] Application launch effect
  208. [all variants] Dual-Monitor vs One Large Widescreen
  209. [ubuntu] Upgrading to 8.04 without updating video drivers?
  210. [ubuntu] Tomboy Notes won't appear, CPU spike, etc.
  211. [gnome] Anybody have a blue theme for Gnome they really like?
  212. [ubuntu] [SOLVED] added awn repository and cant update
  213. [all variants] intel graphics card, compiz-fusion, no way to sync to vblank
  214. [ubuntu] [SOLVED] ssh with no password?
  215. [ubuntu] Change fonts in Firefox
  216. [ubuntu] Evince doesn't open all pdf files
  217. [ubuntu] New user, a few questions please
  218. [ubuntu] Package Manager woes
  219. [ubuntu] how do i get transparency in ubuntu menus and other objects?
  220. [ubuntu] Top Pannel Shutdown Issue
  221. [ubuntu] Ubuntu Studio Usplash and Login Screen
  222. [ubuntu] Can't shutdown
  223. [ubuntu] Keyboard Shortcuts Non-Working Without A Window Open
  224. [ubuntu] Memory usage problem
  225. [kubuntu] The startup theme...
  226. [ubuntu] [SOLVED] NFS refuses to share directory
  227. [ubuntu] [SOLVED] force user log off in terminal
  228. [kubuntu] Customizing a LiveCD using Ubuntu 8.04 and debootstrap
  229. Changed installation path.
  230. [all variants] [SOLVED] disable eggcups
  231. Initramfs-Prov I Guess
  232. [ubuntu] update-manager problem with art-gnome ??
  233. [ubuntu] Can and how to use beryl in ubuntu.
  234. [ubuntu] Resolution won't go higher than 1024x768
  235. [ubuntu] [SOLVED] Scim
  236. [gnome] How do I make a GNOME theme?
  237. [SOLVED] Tweaking Terminal Move Command
  238. [ubuntu] installing j2me apps to a phone from linux
  239. [ubuntu] USplash - No loading screen
  240. [ubuntu] Change the Owner of an Entire Hard Drive's contents.
  241. [ubuntu] An First (Ubuntu/GNU Linux) Computer
  242. [ubuntu] how do i download new themes?
  243. [ubuntu] PLEEAAAASSE HELP! May have broken my PS3?
  244. [ubuntu] XEN files?
  245. [ubuntu] Java help?
  246. [ubuntu] Wake on LAN Stopped Working in Hardy
  247. [xubuntu] xfce4
  248. [kubuntu] USB mount problems (iscallerprivileged())
  249. [ubuntu] New windows appear at the top left, partially off the screen!
  250. [all variants] Getting Linux in Congressional Offices