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. [all variants] DVD Drive Won't Eject - Not Mounted and Reading Disc
  2. [all variants] How to insert row in Openoffice.org Calc with same formulas?
  3. [ubuntu] writting with spanish/other ortographical accents?
  4. [all variants] Howto Request for Blackberry 8300 tethering Via Bluetooth [T-Mobile Network]
  5. [ubuntu] [SOLVED] Help installing Icons
  6. [ubuntu] [SOLVED] cdrecord has no permission to open the device
  7. In dyer need of help :(
  8. [all variants] Rename File Script Request
  9. [ubuntu] Desktop effects problem
  10. [ubuntu] Videos going blank..
  11. [ubuntu] [SOLVED] Help Restoring Video
  12. [ubuntu] Data Recovery- help please
  13. [ubuntu] Installing CMDiag
  14. [ubuntu] Upgrading to OpenOffice 3.0
  15. [ubuntu] [SOLVED] File Permissions Assistance Needed
  16. [all variants] Cisco AnyConnect on x64
  17. [ubuntu] Make Compiz Start with Ubuntu 8.10
  18. [ubuntu] GRUB help
  19. [all variants] [SOLVED] mv command, lost file
  20. [other] gPHPEdit Help
  21. [ubuntu] [SOLVED] I hate GRUB.
  22. How to change Wubi install into total clean install of Ubuntu
  23. [ubuntu] Where is a list of officially supported printers?
  24. [ubuntu] Evolution signature validation problem
  25. [ubuntu] An error occurred!
  26. Wubi restarts but intrepid will finish
  27. [ubuntu] (8.10) no volume control gstreamer...
  28. [ubuntu] Difficulty after logging in
  29. [ubuntu] [SOLVED] HELP with GPT/parted issue
  30. [ubuntu] Installed Amarok - says "No suitable input plugin"
  31. [ubuntu] 8.10 upgrade then crash
  32. [ubuntu] Live CD Troubles
  33. [ubuntu] Graphical grep?
  34. [ubuntu] Pidgin not always hiding windows on receiving a new IM
  35. [ubuntu] Problems mounting Windows partition.
  36. [ubuntu] How Do I Remove DRM from WMV files?
  37. [all variants] Booting issue
  38. [all variants] Can I reconnect a disconnected bash shell?
  39. video errors
  40. [ubuntu] Trash bin
  41. [ubuntu] [SOLVED] How do I uninstall?
  42. [xubuntu] Old PC
  43. [ubuntu] [SOLVED] GTK2+ theme "imetal-gradient-macmenu" is not installed
  44. [ubuntu] raid 1
  45. [ubuntu] Any way to get desktop cube to work with vertical desktops?
  46. [ubuntu] Virtual Shared Drive on Windows Machine
  47. [ubuntu] Installing flashplayer 10
  48. [ubuntu] Green Screen Video Editing in Ubuntu?
  49. [ubuntu] 8.10 not identifying free space.
  50. [ubuntu] Help with source
  51. [ubuntu] Can't find new hard drive
  52. [ubuntu] keep windows ontop
  53. [ubuntu] Blank Thesaurus in OOo
  54. [ubuntu] Woops, Compiz Effects Killed my Desktop
  55. [ubuntu] scripting or automation software for Ubuntu?
  56. [ubuntu] [SOLVED] Firefox has no Top menu bar
  57. [ubuntu] Install Super Grub?
  58. [ubuntu] Gnome Panel Question
  59. [ubuntu] Auto-login on a command-line ubuntu
  60. [all variants] No sound when launching applications on a new X display
  61. [ubuntu] VirtualBox can't release mice after pressing Right Ctrl
  62. [xubuntu] Running x11vnc before login
  63. [ubuntu] Xvfb display problem
  64. Wubi 8.10 install prob: Appcrash cd2iso.dll
  65. [ubuntu] Copying files and folders from terminal server client to ubuntu
  66. [ubuntu] Error (removing packages)
  67. [xubuntu] Help Mounting Slave Drive
  68. [ubuntu] fonts looking weird
  69. [ubuntu] opera terminates by itself
  70. [ubuntu] Does Pidgin now integrate with gnome?
  71. [ubuntu] removing updates under 8.10
  72. help me !!!!!!
  73. [ubuntu] Things to consider before removing windows
  74. [ubuntu] ooo2.4 and ooo3.0.0 doesn't show menu items properly
  75. [xubuntu] Theme issues...Please somebody help, I've spent days trying to find an answer...
  76. [ubuntu] [SOLVED] Download manager for torrent files
  77. [ubuntu] Cancel GParted?
  78. [ubuntu] Gimp 2.4.5 screen refresh/redraw artificats
  79. [xubuntu] reboot instead of shutdown in Intrepid ibex on Toshiba P300D-14A
  80. [ubuntu] USB plugs dont'n work any longer
  81. Problems with x-windows on first installation boot
  82. [ubuntu] Add a new folder on the locations menu on the upper
  83. [ubuntu] [SOLVED] how to use irssi?
  84. [kubuntu] [SOLVED] Disable Logout sound
  85. [gnome] FreeNX - Unable to login successfully, error code: 2E7C3711
  86. [all variants] [SOLVED] clarification: sendmail - function and syntax
  87. [ubuntu] Ubuntu 8.10 video half screen
  88. [ubuntu] PDF-file viewer
  89. [ubuntu] Display only directories names, which contain txt
  90. [ubuntu] Very Good Power Management Tutorial!
  91. [ubuntu] Strange one this! I have to hold down a key for Ubuntu to boot....
  92. [SOLVED] Triple booting?
  93. [ubuntu] FreeMe2
  94. [ubuntu] Bare Commandline install
  95. [ubuntu] 8.04 external HDD access as user denied, how to change
  96. [ubuntu] DVD RW not CD RW install?
  97. [ubuntu] [SOLVED] Partition Table problem
  98. [other] Evolution IMAP Trash Folder Change
  99. [SOLVED] multi currency finance software
  100. [ubuntu] External Hard-disk not detected
  101. [all variants] Heterogeneous Linux domain
  102. [all variants] Linux thin client or better client/server app distribution
  103. [ubuntu] How to diasble the shortcut "alt+left click"?
  104. [ubuntu] Sun Provides 64-bit Java Plug-In For Linux, is the repo ready?
  105. [ubuntu] install FSVS
  106. [ubuntu] how to change character encoding in OOo 2.4
  107. [ubuntu] Share DVD Drive
  108. [other] how to set default file manager?
  109. [ubuntu] Repository Key problem
  110. [all variants] /usr/share
  111. [ubuntu] Help internet connection in ubuntu 8.10 prob
  112. [ubuntu] Default settings of Repository Manager
  113. [ubuntu] libuuid.so.1
  114. [ubuntu] I Have More Than One Question About Appearance
  115. [ubuntu] soundcard problem please help
  116. [ubuntu] can't find my Drive C: from Windows vista
  117. [ubuntu] errors with vlc compilation
  118. [ubuntu] Clearing out thumbnails
  119. [ubuntu] Is there a news dispaly banner
  120. [ubuntu] Drivers & tcl scipriting
  121. [other] MySQL from windows client
  122. [ubuntu] Firefox 1.9.04 and problems installing firefox 3.0.4
  123. [ubuntu] Gdm could not write to your authorization file
  124. [kubuntu] Can't login, disk full?
  125. [gnome] [SOLVED] how can i change the Ubuntu logo?
  126. [ubuntu] Nautilus alternatives
  127. [ubuntu] Unable to boot ubuntu 8.10
  128. [all variants] BootLoader Disaster
  129. [other] Is the Ubuntu Brainstorm System opensource?
  130. [ubuntu] NAS Powersaving ?
  131. [ubuntu] Can't LOGIN UBUNTU current build,
  132. [all variants] issues with screen resolution
  133. [SOLVED] disable shell searches for mistyped programs
  134. [ubuntu] Wget from FTP server
  135. [ubuntu] External Hard Drive has stopped working
  136. [ubuntu] HD mounting and Samba
  137. [kubuntu] How do I tell what version of a package I am running?
  138. [all variants] partition filesystem confusion
  139. [ubuntu] SQL Results
  140. [ubuntu] Cups not printing, no errors shown
  141. [ubuntu] Ubuntu lieing to me
  142. [ubuntu] Ibex showing blank screen after login
  143. [kubuntu] KDE Display Manager crashing on dv2700
  144. [all variants] Why not . (dot)
  145. [ubuntu] [SOLVED] Documentation download from synaptic
  146. [ubuntu] will this webcam work
  147. [ubuntu] Default British Spell Checker Dictionary?
  148. [ubuntu] [SOLVED] Automount Problem
  149. [ubuntu] Error after kernel update with update manager
  150. [ubuntu] different encoding in terminal, gnome-terminal and konsole
  151. [ubuntu] Hotkeys for autoscroll
  152. [ubuntu] Apache2 will not parse PHP5
  153. [ubuntu] Roght-click on desktop problem.
  154. [ubuntu] LM_Sensors and AMD Phenom processors
  155. [ubuntu] ktorrent upgrade
  156. [ubuntu] intrepid slow boot
  157. [ubuntu] Software Needed
  158. [ubuntu] Fan Control Interference by BIOS on gkrellm
  159. [ubuntu] NXClient CUPs Printing help
  160. [ubuntu] Kernel choices newbie!
  161. [ubuntu] Conky + Amarok Lyrics Help
  162. [all variants] Always use a nice value
  163. [ubuntu] Session Login Screen - Sound files are clipped
  164. [ubuntu] Civ 2 in Hardy: Big Win!!
  165. [gnome] Incomplete shadows when using Emerald...
  166. [ubuntu] [SOLVED] I thought I could do this, looks like I was wrong (windows dual boot)
  167. Help about Grub Ubuntu 8.10
  168. [other] Firefox doesnt display dynamic data
  169. [all variants] DOSEMU - put text in Linux clipboard from cmdline?
  170. [all variants] [SOLVED] Fun(NOT) and Games With FStab
  171. [ubuntu] scanner & WPN111 port contention?
  172. [ubuntu] LimeWire firewall
  173. [all variants] Torrents - Created Torrent, Not being seeded.
  174. [all variants] [SOLVED] partition start sector anomaly, can anyone explain?
  175. [ubuntu] [SOLVED] Installing Grub, trying to get a boot going
  176. [all variants] [SOLVED] Xorg configuration issues in 8.10
  177. [ubuntu] [SOLVED] Big problem with grub!!!!
  178. [all variants] For Linux Users wanting to design Fractal Flames
  179. [ubuntu] Can't convert flv to avi or anything else.
  180. [ubuntu] Sometimes one of my dual monitors dont boot up and give me this error:
  181. [ubuntu] Take a look at my GRUB menu and tell me how to clean it up...
  182. [ubuntu] Wordpress redirecting issue
  183. [ubuntu] For the love of icons
  184. [ubuntu] Desktop Embedded Terminal
  185. [ubuntu] stop rescue menu Hardy server
  186. [ubuntu] Vista clear fonts on Ubuntu 8.10 ????
  187. [ubuntu] Capture or remove keyboard shortcuts
  188. [ubuntu] MS Office 2007 has ugly boxes on the sides
  189. [ubuntu] Ubuntu live CD for maintance (HD backup)
  190. [ubuntu] Application Launcher child process error
  191. [ubuntu] I cannot stop a spambot in Pidgin
  192. [all variants] RAID seems to have failed
  193. Out of memory?
  194. [ubuntu] Thanks to all forum members
  195. [ubuntu] [SOLVED] How do i post code in box?
  196. [kubuntu] [SOLVED] How do I zip a file or folder?
  197. [ubuntu] Dual boot and other questions
  198. [ubuntu] application launcher in panel gives unviewable error
  199. [ubuntu] I am getting this error while trying to install "banshee" and I got no clue how to fi
  200. [ubuntu] What does this dmesg message mean?
  201. [ubuntu] what does this message mean and how can I fix it? me=total newbie
  202. [gnome] Mouse theme in window border
  203. [ubuntu] [SOLVED] Easy question to answer!
  204. [ubuntu] Networking appears to be disabled but is not
  205. [ubuntu] Vmware workstation and Virtual box unity mode and seamless mode
  206. [ubuntu] what is the local folder for?
  207. [ubuntu] File Synchroniser
  208. [ubuntu] [SOLVED] How to remove universal access from notification area ..
  209. [ubuntu] keyboard and mouse wont work.
  210. [ubuntu] [SOLVED] Problem with multiboot
  211. [ubuntu] Switching Xscreen
  212. [ubuntu] how can i share folder in ubuntu?
  213. [ubuntu] udf Volume
  214. [ubuntu] [SOLVED] Could someone please upload the default kde4 wallpaper?
  215. [ubuntu] GnuCash finally working with Wachovia
  216. [kde] Recognition of VGA card
  217. Wubi Freezes On Ubuntu Part Of Installing At Computing The New Partitions (100%)
  218. [all variants] Using devilspie with fluxbox
  219. [kubuntu] Upgrading to NVidia 177.82
  220. wubi 8.1 vs 8.04
  221. [ubuntu] Firefox sluggish on a fast computer
  222. [ubuntu] Segmentation fault since upgraded to Ubuntu 8.10
  223. [ubuntu] White/Bleck text/screen inversion, help!
  224. [ubuntu] Flash game lag
  225. [ubuntu] amarok 2 not displaying properly
  226. [ubuntu] Acer x223 w
  227. [ubuntu] [SOLVED] useradd command
  228. [ubuntu] [SOLVED] Can't disable emulation of 3 buttons
  229. [ubuntu] How do I get this
  230. [ubuntu] Preparing to switch video cards (Nvidia to ATI)
  231. [ubuntu] [SOLVED] Know any MS Encarta type application
  232. [ubuntu] Slow to come back from sleep
  233. [ubuntu] OneNote Equivalent in Ubuntu?
  234. [ubuntu] [SOLVED] Permission problems = serrver 403
  235. [ubuntu] Sound lost with updated kernel
  236. [ubuntu] About RAM
  237. [ubuntu] Not sure where this belongs
  238. [ubuntu] "Battery discharge time is currently unknown"
  239. Booting after Wubi uninstall
  240. [ubuntu] SDL: No available video device
  241. [ubuntu] Uninstall Thunderbird
  242. [ubuntu] Dual Booting but I don't know if I should delete a partition
  243. [ubuntu] Installing navit
  244. [ubuntu] Trouble with Xbox controller
  245. [all variants] Open Office .doc formatting issues.
  246. [ubuntu] NTFS corruption (?) after being acessed in Intrepid
  247. [ubuntu] [SOLVED] No Temperature Sensor for AMD Quad
  248. [ubuntu] 2.6.27-9 keeps crashing
  249. [all variants] search for all text files and pipe their contents into one file?
  250. [xubuntu] Missing RAID drives!