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] Vuze nooby help
  2. [ubuntu] OpenOffice 3.1 on Hardy?
  3. [ubuntu] cant install 9.04 32
  4. [kubuntu] I can't install anything
  5. [ubuntu] always use swap partition
  6. [ubuntu] Enhanced Zoom Desktop in Compiz
  7. [ubuntu] Dangers of remapping /bin/sh
  8. [ubuntu] Remote Application Display Error
  9. [ubuntu] problems with Skype sound - first call-test ok, second one only noise!
  10. [SOLVED] Thunderbird Calendar lightning problems
  11. [ubuntu] gmail, Facebook, Firefox Addons Timeout
  12. [ubuntu] gnome-terminal w3m fonts japanese
  13. [ubuntu] Internet in VM
  14. [kubuntu] How to instalk Mozilla Firefox?
  15. [all variants] mc (midnight commander) ftp question
  16. [SOLVED] Rhythmbox album artwork
  17. [ubuntu] AI software proofing?
  18. [ubuntu] MySQL install busted up good
  19. [SOLVED] Simple Newbie Question
  20. [ubuntu] Kernel Upgrade - Now OpenOffice Opens Documents In Read Only
  21. [ubuntu] really dumb question about stderr
  22. [ubuntu] Can't hear other audio when using Skype
  23. [ubuntu] hardware mic question
  24. [SOLVED] How To Re-Boot Windows
  25. [ubuntu] change screensaver pictures folder
  26. [ubuntu] adding repositories across multiple computers
  27. [ubuntu] Monitor out of range
  28. [SOLVED] Ubuntu Font Problems
  29. [kubuntu] Reccomendations for an archiving program?
  30. [all variants] Permission to change Default Desktop Manager
  31. [ubuntu] Help setting up SSH
  32. [ubuntu] AWN won't keep a custom icon
  33. [ubuntu] 9.04 massive crash reports
  34. [ubuntu] No sound
  35. [ubuntu] Skype
  36. [ubuntu] OS for Server: Ubuntu Desktop or Server?
  37. [ubuntu] Virtualbox problem!
  38. [ubuntu] minimize/close/maximize buttons gone
  39. [ubuntu] Virtualbox
  40. [ubuntu] Font help
  41. [ubuntu] Shift-L launches Applications Menu
  42. [ubuntu] No fonts or text are showing
  43. [ubuntu] Installing NVIDIA
  44. [ubuntu] songbird, already running wtf.
  45. [all variants] Proftpd working locally only
  46. [ubuntu] mgetty fails to accept faxes
  47. [ubuntu] need help with printer
  48. [ubuntu] no log in screen after booting
  49. [all variants] Adding Fedora to grub
  50. [ubuntu] Messed up using 'split'
  51. [all variants] Firefox 3.5 is Slow on Ubuntu
  52. [ubuntu] Trying to revert from ruby 1.9.1 to 1.8.6
  53. [all variants] Compiled Vice 2.1 deb package (C64 emulator)
  54. [ubuntu] Gmail labels
  55. [all variants] HP DV6815 - error on boot
  56. [ubuntu] Files with ~ extention
  57. [ubuntu] 7-Zip Support
  58. [ubuntu] OS Boot list no longer showing up at start up. Please help me get back into Ubuntu
  59. [ubuntu] South Park Studios Not Working
  60. [ubuntu] Virtualbox - No USB.
  61. [ubuntu] solving "random" crashes
  62. [ubuntu] Firefox toolbar locked up after launching it in terminal
  63. [ubuntu] new to ubuntu and cant install Champions Online doing it wrong?
  64. [ubuntu] linux source code
  65. [ubuntu] Exaile Freezes Everything
  66. [kde] krename and kio slaves (fish, sftp, ...)
  67. [SOLVED] Guide installation for Hp P1005 printer - Ubuntu
  68. [ubuntu] Partion
  69. [ubuntu] Open Office Calc extension to convert 1 to “First”, 2 to “Second”
  70. [wubi] Unable to boot into Vista after installing Wubi
  71. [ubuntu] Right-Click "Search Google for..." brings up "Mozilla Firefox Start Page"
  72. [ubuntu] Can someone please help...
  73. [ubuntu] Login
  74. [ubuntu] view deb package change log
  75. [ubuntu] Boot from Xen Kernel in Jaunty
  76. [SOLVED] Synergy and the UK £ (pound) sign
  77. [SOLVED] Login
  78. [SOLVED] Ubuntu and parents
  79. [ubuntu netbook remix] Internet Connection Problems
  80. [ubuntu] How do I link to another section of the same post
  81. [ubuntu netbook remix] Netbook remix and dell mini 9
  82. [ubuntu] Gnome crash!!?
  83. [ubuntu] system-wide equalizer
  84. [ubuntu] help getting started with cli
  85. [ubuntu] [COMPLETELY new to ubuntu] No sound! plz help
  86. [ubuntu] Disable firefox shortcut key ALT D
  87. [ubuntu] Will more ram improve video?
  88. [ubuntu] log out time
  89. [ubuntu] Double Applications launch-icon vs no launch-icon...
  90. [ubuntu] Find Links Won't Close
  91. [other] How do I center new windows in Openbox?
  92. PCI Port and PCI Bridge
  93. [ubuntu] Problem with transmission torrent client (torrents in general)
  94. [ubuntu] best way to install new softwares without internet
  95. [all variants] Bug after updating: server X crashes
  96. [ubuntu] LPD and D-Link Print Server
  97. [ubuntu] Ubuntu 9.04 : Google talk Help
  98. [ubuntu] Evolution Mail Problems
  99. [ubuntu] ubuntu-grace problems
  100. [SOLVED] How do you configure the Atheros Wireless Driver?
  101. [SOLVED] Wireless on laptop stopped
  102. [xubuntu] Starting Xubuntu fresh, with no programs on startup?
  103. [ubuntu] Ubuntu 8.04 GRUB Error 17
  104. [all variants] There are differences between boot sector and its backup
  105. [ubuntu] I cannot auto mont usb hard drive at start
  106. [ubuntu] Virus clearing questions
  107. [ubuntu] bug: when i reboot the resulotion gets back to 800x600
  108. [all variants] Music player
  109. [ubuntu] Japanese/Chinese font smoothing
  110. [ubuntu] ROOT (root.cern.ch) BOF
  111. [ubuntu] when i open php file eclipse opens me duplicate editor..
  112. [ubuntu] Custom Screen Resolution Problems
  113. [ubuntu] pdf viewer alternatives to evince?
  114. [ubuntu] KILE+OKULAR (use ViewPDF to close old OKULAR windows))
  115. [ubuntu] Compiz Problem on ATI 2600 HD: Software Rasterizer
  116. [SOLVED] How to delete threads
  117. [ubuntu] automount fails
  118. [ubuntu] Setting screen resolution to 1680x1050
  119. [SOLVED] keyboard stops
  120. [kubuntu] aspell-id AWOL. Bug 63189 lives on.
  121. [ubuntu] send output to /var/www/ ?
  122. [kubuntu] Kontact access to iCal and calDAV - howto?
  123. [ubuntu] Need help!!
  124. [ubuntu] I'm screaming and banging my head on the table!!!!
  125. [ubuntu] F-Spot & Facebook Plugin
  126. [ubuntu] Aptitude and Synaptic Freeze - 9.04 Jaunty
  127. [ubuntu] Privoxy and Tor
  128. [ubuntu] Low powered ubuntu torrent server
  129. [all variants] Problems with latest Kernels
  130. [ubuntu] abnormal update-mlocat.b, update-xorg-xapi, RAM usage
  131. [ubuntu] Too Many Kernels
  132. [ubuntu_studio] Need help please!
  133. [ubuntu] Why do I get this error with dotnetfx???
  134. [ubuntu] Pidgin periodically freezes for few seconds.
  135. [ubuntu] Hard Disk Drivers
  136. [ubuntu] Installing sound card drivers - 'make' error
  137. [other] Best command line torrent client other than rTorrent
  138. [ubuntu] vncviewer -listen ?not sure if i am doing something wrong
  139. [ubuntu] write protection problem
  140. [ubuntu] Cron job for Cisco VPN client
  141. [ubuntu] kinit: no resume image, doing normal boot
  142. [ubuntu] Getting "error" when updating
  143. [ubuntu] Getting your install just right, then backing it up to img
  144. [ubuntu] installed xorg
  145. [ubuntu] Writing program to connect to vpnc
  146. [ubuntu] Grub boot loader, load windows by uuid
  147. [ubuntu] Help
  148. [ubuntu] Theme Changes
  149. [ubuntu] VLC Player/Rhythmbox/AOL Radio
  150. [ubuntu] webcam installation
  151. [ubuntu] Soundconverter .aac to .mp3
  152. [ubuntu] Problem with terminal
  153. [ubuntu] Ubuntu 9.04 LiveCD - Set screen resolution
  154. [ubuntu] Youtube is Lacking
  155. [ubuntu] Startup trouble!
  156. [ubuntu] Upgraded 8.04 -> 8.10 Evolution is missing/loosing mail messages
  157. [ubuntu] Jumping text cursor
  158. [ubuntu] system freezes
  159. [all variants] VOIP software doesn't call
  160. [ubuntu] Installed Ubuntu, Won't run after login
  161. [ubuntu] Boot Time Issue
  162. [ubuntu] Multiple screens?
  163. [ubuntu] A very quick mythweb question
  164. [ubuntu] HP sound issue
  165. [ubuntu] Installing/uninstalling KDE 4.3
  166. [SOLVED] Cron and Unison Script
  167. [edubuntu] No web - using firefox
  168. [ubuntu] External diff viewer in GIT
  169. [SOLVED] Screen Resolution
  170. [ubuntu] can't attach files in gmail/firfox
  171. [ubuntu] linked scripts in rc3.d and rc5.d not running.
  172. [SOLVED] very frusrated
  173. [gnome] wifi applet accidentally deleted
  174. [ubuntu] MU server on Ubuntu Server with Wine - Works?
  175. [ubuntu] DEB package installation Question
  176. [ubuntu] 9.04 sound capture on Acer is static noise
  177. [ubuntu] HP LaserJet 6P Problem with 9.04
  178. [ubuntu] automatic old kernel remover?
  179. [ubuntu] Update vs Upgrade
  180. [ubuntu] TeXlive on thumb drive?
  181. [ubuntu] Harddisk without Partition
  182. [ubuntu] Examples of gufw firewall configuration
  183. [other] adblock for opera 10?
  184. [other] pre-order next release?
  185. [ubuntu] Firefox and Flash
  186. [ubuntu] Strangest graphics problem (Nvidia)
  187. [ubuntu] Youtube
  188. [ubuntu] Audiodriver crash after starting programs in Wine :(
  189. [ubuntu] long disk check software?
  190. [SOLVED] Screen Resolution Question
  191. [SOLVED] mysql problem
  192. [ubuntu] Booting my Ubuntu partition after Vista installation
  193. [ubuntu] Php isnt working
  194. [ubuntu] Firestarter events
  195. [ubuntu] Adobe Flash Player 10 Crashes Firefox 3
  196. [ubuntu] Patchy internet access
  197. [ubuntu netbook remix] How Can I Disable Fading Animations?
  198. [ubuntu] Help!
  199. [ubuntu] Evolution Mail Language Help
  200. [ubuntu] Dr.Java .deb request or how do i submit one
  201. [kubuntu] Stuck in 800x600
  202. [ubuntu] Unknown Program?
  203. [kubuntu] Flash Player... -_-
  204. [ubuntu] Evolution : Task List in Calendar View
  205. [ubuntu] Poor performance on Jaunty and intrepid! Intel graphics card issue?
  206. [ubuntu] Cannot remove libmagick!
  207. [ubuntu] Booting issues
  208. [ubuntu netbook remix] Grub error 17, no bios access
  209. [ubuntu_studio] Admin apps problem
  210. [ubuntu] Accesing Files from Remote Computer
  211. [ubuntu] Using unison upon shutdown / restart / start
  212. [other] compatibility question
  213. [ubuntu] Problem with ssh
  214. [ubuntu] Unable to startup in Gnome session
  215. [ubuntu] Accidently removed Key Combination
  216. [other] DNS resolvers setup/installation ?
  217. Ubuntu becoming the default OS rather than Win XP and duplicate Win XP in boot menu
  218. [ubuntu netbook remix] FireFox Is Acting Crazy
  219. [all variants] Which Version of Linux is Best for This System?
  220. [ubuntu] Disk analyzer reporting wrong HDD size
  221. [ubuntu] udev ignore_device won't work if device already connected
  222. [SOLVED] looking for
  223. [ubuntu] looking for a web browser that prints FLASH
  224. [ubuntu] Updates
  225. [kubuntu] Install Java?
  226. [ubuntu] COM port in use for LG Voyager when trying to use Bitpim
  227. [other] Which version of Linux would be best for this laptop?
  228. [other] Conky if_mounted not working properly
  229. [SOLVED] BASH Scripting Problem
  230. [ubuntu] Help, locked out of Grub. I am an idiot
  231. [ubuntu] Postfix Issues
  232. [ubuntu] CPU has a pulse, why?
  233. [ubuntu] Can you open a program from a remote machine on yours?
  234. [ubuntu] Virtual Software
  235. [kubuntu] Need codecs for Amarok/Dragon player
  236. [ubuntu] System constantly crashing
  237. [ubuntu] hi can any one help me
  238. [ubuntu] How To Mount HFS+ External Drive?
  239. [ubuntu] Open office upgrade
  240. [ubuntu] Need help with Adobe Flash 10
  241. [ubuntu] how to format usb flash disk?
  242. [kubuntu] no wireless until log-in
  243. [ubuntu] please i need help
  244. [ubuntu] Urgent help!
  245. [ubuntu] Having trouble installing .deb
  246. [ubuntu] GDM background throughout gnome session
  247. [ubuntu] Is there a way to enable all resolutions?
  248. [ubuntu] vsftpd works for one user but not another
  249. [ubuntu] Missing system menu in panel
  250. [ubuntu] Gamepads not fireing any kind of events