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] Need help with script : Pipe the output of two files into one command
  2. [ubuntu] will ubuntu print to a wireless lexmark printer
  3. [ubuntu] Invisible logon id and password
  4. [ubuntu] No way to make new folder?
  5. [ubuntu] 9.04 Problems with Desktop Sharing
  6. [all variants] how to mass-rename files via the shell?
  7. [ubuntu] Itunes + Samba + VirtualBox error
  8. [all variants] Zend Studio file_get_contents() Help
  9. [SOLVED] Pannel problems
  10. [ubuntu] Startup Programs
  11. [ubuntu] cant get rid of this =(
  12. [ubuntu] ubuntu 8.01 update manager error
  13. [ubuntu] HELP: Restoring files from formatted ext3 to ext4
  14. [ubuntu] removed ubuntu, broke grub
  15. [ubuntu] [SOLVED]GCC Problems
  16. [xubuntu] cannot change login keyboard layout (gdm)
  17. [ubuntu] Where are the screen resolution settings saved in Gnome?
  18. [ubuntu] Can't enable desktop effects?
  19. [ubuntu] Blender 3D Problems
  20. [ubuntu] 9.04 Screen Resolution Problems with HDMI Out
  21. [ubuntu] Playing DVD's
  22. [ubuntu] Multi_User Environment.
  23. [ubuntu] Help with SCIM/Anthy
  24. [ubuntu] Installing Windows 7 on new partition
  25. [all variants] Conky RSS question
  26. [ubuntu] Why not have a simple way to turn off recent documents?
  27. [ubuntu] Help with Git
  28. [ubuntu] is thier a movie player with all the codecs
  29. [ubuntu] Archive manager erroneously prompts for password.
  30. [ubuntu] issues with firefox crashing
  31. [all variants] avi player
  32. [ubuntu] How to backup an Ubuntu 9.04 Installation
  33. [ubuntu] Cannot run Noatun in Jaunty (9.04) !!!
  34. [SOLVED] How to add ubuntu9.04 to Windows 7 Boot Loader
  35. [ubuntu] Nvidia Settings
  36. [kubuntu] No log in screen, 9.04
  37. [all variants] '._' added to all image.jpg attachments
  38. [all variants] How do I get latex for mnemosyne?
  39. [xubuntu] Posble bug with Jaunty CD
  40. [all variants] Pidgin : Has You Blocked
  41. [ubuntu] Tracker is out of whack, pls help
  42. [all variants] Command line search mp3 by tag
  43. [ubuntu] Poor Print Quality with Jaunty 9.04 & hpijs 3.9.2
  44. [ubuntu] Jaunty, Display preference dialog does not show any options
  45. [all variants] I'm still using intrepid- can I install something from jaunty repositories?
  46. [all variants] Soundcards with hardware mixing?
  47. [ubuntu] Video to Animated GIF?
  48. [ubuntu] installing cgpsmapper
  49. [ubuntu] not detecting blank(empty) DVD+R and DVD-R
  50. [ubuntu] Trying to run a .deb-exe file. Install/run help?
  51. [ubuntu] Can any one tell me what MONO is and how to use it?
  52. [ubuntu] A tale of woe and despair
  53. [ubuntu] SVN installation problem
  54. [kubuntu] vsftpd doesn't work
  55. [other] Java JRE 5 update 11
  56. [ubuntu] Installing a program from a .tar.gz file
  57. [ubuntu] GMote from the Noob perspective
  58. [ubuntu] Where is Shutdown Menu Choice in Gnome Jaunty
  59. [ubuntu] Tacker Applet popup won't go away.
  60. [xubuntu] Xu/Fluxbuntu - which is better for me?
  61. [all variants] how to diagnose non-working SSH
  62. [ubuntu] Logout returns to a black screen with mouse cursor (WORKAROUND)
  63. [ubuntu] What do I do with an error message
  64. [ubuntu] Graphical Apps dont Work
  65. [all variants] external hard disk (usb) and permissions ext3
  66. [ubuntu] Google Earth doesn't work
  67. [kubuntu] ShipIt stickers
  68. [ubuntu] charset problem between windows and ubuntu
  69. [ubuntu] Media Player Help
  70. [ubuntu] video playback logout problem
  71. [ubuntu] Screen turns off
  72. [ubuntu] Please help with iphone
  73. [ubuntu] Unable to upload photos online.
  74. [ubuntu] Yet another grub question
  75. [ubuntu] Compile ffmpeg with Vhook in 9.04
  76. [ubuntu] Conky - making comments in config file
  77. [ubuntu] bad quality with cups-pdf
  78. [kubuntu] Change kubuntu 9.04 bootloader
  79. [ubuntu] 5.10 desktop login .wav for 9.04
  80. [ubuntu] Win 7 + ubuntu ...bootloader??
  81. [ubuntu] Issue while booting
  82. [ubuntu] Backup entire filesystem into mounted directory
  83. [ubuntu] install/remove Kubuntu
  84. [ubuntu] Evolution cannot save calendar data.
  85. [ubuntu] [Review] Ubuntu 9.04 - The Bad and Good
  86. how to minimize windows
  87. [ubuntu] mount the removable devices......
  88. [ubuntu] backup vista through linux
  89. [all variants] Dependency problem when compiling
  90. [ubuntu] Weird memory behaviour (management) on Ubuntu 8.04 x64
  91. [ubuntu] Help with /home on a separate drive
  92. [ubuntu] help with nvidia driver and virtualbox on jaunty
  93. [other] is there a way to leech ubuntu community help for offline browsing ?
  94. [ubuntu] Yellow screen of death
  95. [ubuntu] Suspend/Resume Not working
  96. [ubuntu] dual layer
  97. [ubuntu] How to recover the pass word of zip or rar folder.
  98. [ubuntu] search for wireless
  99. [ubuntu] No Hibernate available
  100. [ubuntu] Mouse hidden behind wine window
  101. [ubuntu] Kernel compilation: just use one core on Dual Core machine
  102. [xubuntu] Multiple AWN Docks Launching On XFCE Startup
  103. [ubuntu] root terminal in jaunty
  104. [ubuntu] No photo applications found in File Manager
  105. [ubuntu] strange key mapping behavior
  106. [ubuntu] OpenOffice broken, doesn't start (urgent)
  107. [ubuntu] Browser problem
  108. [ubuntu] About the Ubuntu firewall -- again
  109. [ubuntu] Just What Is Compiz?
  110. [ubuntu] HOW TO: Get Frostwire to run in 9.04
  111. [ubuntu] Java program that worked in 8.10 randomly quits in 9.04
  112. [ubuntu] Firefox starts automatically when i log in to 9.04
  113. [ubuntu] display settings
  114. [ubuntu] Vuze does not start on 9.04
  115. [ubuntu] External monitors for laptops running 9.04.
  116. [xfce] Weather applet
  117. [ubuntu] Splashy won't install in jaunty?
  118. [ubuntu] Screen Resolution Won't Go Above 800x600 in Jaunty
  119. [ubuntu] New Linux User Needs Help
  120. [ubuntu] Error 18 Cant boot into ubuntu?
  121. [ubuntu] Hybrid Graphics Question
  122. [ubuntu] Places menu will not mount NTFS partition
  123. [ubuntu] Help! Last.FM not loading!
  124. [ubuntu] "Speed Dial For Firefox"
  125. [ubuntu] how do i install ATI drivers for Jaunty?
  126. [ubuntu] Serious problem system crash
  127. [ubuntu] Pass argument to a running program via SSH?
  128. [ubuntu] Hardy Heron, keyboard press stops mouse working
  129. [ubuntu] website update
  130. [ubuntu] Reset user X settings
  131. [ubuntu] error message regarding loading of Glipper
  132. [all variants] Expect script help
  133. [ubuntu] ubuntu audio to low
  134. [ubuntu] 5 in 1 card reader lost ability to autodetect cards but not usb in 9.04
  135. [ubuntu] Synaptic only showing Installed APP's
  136. Is there a fix to these minor bugs?
  137. [ubuntu] notebook heating up
  138. [ubuntu] Kernel update
  139. [kubuntu] problems with sun-java6-... installation
  140. [ubuntu] Can't watch videos on www.ted.com
  141. [ubuntu] Latest kernel update caused panic mode (hardy)
  142. [ubuntu] floppy drive can't detect diskette
  143. [ubuntu] Fatal modprobe & softreset failed errors on boot
  144. [ubuntu] "Saned disabled-Pusle Audio configured for single user session" - Why do I get this?
  145. [ubuntu] Microsoft LLifechat 3000 - No sound.
  146. [all variants] Scite - howto using apis
  147. [all variants] Evil HP and micro$oft
  148. [ubuntu] Compiling C++ and reverse proxies - Help>
  149. [ubuntu] "Firestarter Firewall - [fail]" on non-GUI boot - Why?
  150. [ubuntu] access Windows files from virtual Ubuntu
  151. [kubuntu] Permissions problem on mounted ISO image
  152. [ubuntu] 9.04 - sound issue...
  153. [ubuntu] No Thumbnails for icons & controls in theme chooser
  154. [ubuntu] gtkpod opening for all folders
  155. [ubuntu] Print folder contents
  156. [ubuntu] Is it possible to upgrade to next ubuntu version?
  157. [ubuntu] help with ata1: SRST Failed (error=-16)
  158. [ubuntu] Any program Like Adobe Acrobat work with ubuntu?
  159. [ubuntu] Host key verification failed
  160. [ubuntu] ehcp change port for domain
  161. [ubuntu] Can't use "Extra Effects" with Java Application
  162. [ubuntu] problem with open office 3.1 database
  163. [ubuntu] NTLDR is missing....
  164. [ubuntu] HP w17e
  165. [ubuntu] Some help with the boot :)
  166. [other_os] AnonyBuntu - building my remix, suggestions?
  167. [ubuntu] Help With upgrading from 8.10 to 9.03-Quick Questions
  168. [kubuntu] kopete now listening support amarok 1.4?
  169. [all variants] jaunty hosts bug?
  170. [ubuntu] Gmail Drive
  171. [ubuntu] How to: hibernation confirmation message(message before hibernate)
  172. [ubuntu] Trouble logging in to recent ubuntu 9.04 installation
  173. [kubuntu] Mouse Scrolling is the Devil
  174. [ubuntu netbook remix] Some windows are not fully maximize
  175. [ubuntu] How Access Shared folder from Ubuntu?
  176. [ubuntu] to [WINDOWS 7]
  177. [ubuntu] usb 2-2: device descriptor read/64, error -110
  178. [ubuntu] Questions before installing Ubuntu
  179. [ubuntu] NTFS RAID0 Recovery
  180. [ubuntu] KompoZer 0.8a3
  181. [ubuntu] Clock Problem
  182. [ubuntu] Error Message at Boot 9.04
  183. [ubuntu] Open Office 3.1
  184. [ubuntu] xfce desktop
  185. [ubuntu] installing and removing themes
  186. [ubuntu] Installation problem XBTT
  187. [ubuntu] Compiz/VMWare Problems
  188. [ubuntu] Help text in terminal
  189. [ubuntu] Card reader Sony Vaio problem
  190. [kubuntu] Russina Keyboard Layout on Jaunty
  191. [ubuntu] Older toshiba satelitte
  192. [ubuntu] Linux MMORPG
  193. [ubuntu] DVD/CD drives not mounting to /media wth?
  194. [ubuntu] UPS software installation instructions don't fit 9.04
  195. [ubuntu] Dual Boot Ubuntu Windows XP on same HD
  196. [ubuntu] Can I stop auth.log recording CRON entries?
  197. [all variants] what temperature is ACPI telling me
  198. [ubuntu] Disabling Virutal Consoles
  199. [ubuntu] hard drive always dismounts
  200. [ubuntu] Tracker search only in desktop
  201. [ubuntu] Scheduling Algorithms in Ubuntu linux
  202. [ubuntu] No DVD Sound
  203. [ubuntu] How do I get to my Windows files from Ubuntu?
  204. [ubuntu] My BIOS cant be configurated to autoboot my PC, any solution through Ubuntu?
  205. [ubuntu] Missing hard disk space
  206. [ubuntu] Seg faults
  207. [ubuntu] Going from one disk to RAID5
  208. [ubuntu] How do I modify this script for 9.04?
  209. [ubuntu] Jaunty randomly stops recognizing my monitor.
  210. [all variants] no mix and mix mono in voume control
  211. [xubuntu] system crashed, panels gone
  212. [ubuntu] i have an old tower p3 cpu what is the best destop to down load
  213. [ubuntu] Need to Re-Install X11
  214. [ubuntu] Getting the correct DPI ?
  215. [ubuntu] GoogleEarth 5, 9.0.4 Freezup, Radeon X1550
  216. [all variants] Pthreads Structure in OS and more...
  217. [other] Altruism on the Ubuntu Forums
  218. [ubuntu] Jaunty 9.04 final - mounted points cannot include escape characters
  219. [ubuntu] Problems Following Today's Linux Image Upgrade
  220. [ubuntu] I think I Killed my Account
  221. [all variants] Mac formatted iPod Classic??
  222. [other] iptables redundancy?
  223. [ubuntu] Firefox segmentation fault
  224. [SOLVED] grub ide sata ext4 boot priority, put ide at rest
  225. [ubuntu] jpgraph documentation, can not find
  226. [ubuntu] Hard disk partitioning help please
  227. [ubuntu] 9.04 Persistent on Flash Drive "Checking Battery State" hang.
  228. [ubuntu] Question About A Theme
  229. [ubuntu] Windows XP BSOD's on startup
  230. [ubuntu] disable touchpad while usb mouse is plugged in
  231. [ubuntu] New Notification systems stopped working
  232. [ubuntu] Root terminal
  233. [ubuntu] How do I set up a caching server?
  234. [ubuntu] iPod Classic 6th gen not recognised in Amarok 1.4
  235. [ubuntu] Clock getting late
  236. [ubuntu] Open Window Position 8.10 & 9.04 Like 8.04 How ??
  237. [ubuntu] Random log outs
  238. [ubuntu] Is Songbird 1.1.2 the best iTunes alternative?
  239. [ubuntu] I cannot use webcam
  240. [ubuntu] Dual Video Card X Server Mouse and Target Proglem
  241. [all variants] How would you encrypt a data partition after install?
  242. [ubuntu] Why doesn't Tracker doesn't find hidden files?
  243. [ubuntu] borders with maximize and close disappeared
  244. [ubuntu] newcomer to Ubuntu would be appreciate help
  245. [ubuntu] Jaunty hangs for ages when installing applications
  246. [ubuntu] USB Drive not working.
  247. [ubuntu] wigets how can i down loaded then onto 9.04
  248. [ubuntu] Help with Wacom Bamboo on Jaunty
  249. [all variants] Questions about Avant...
  250. [kubuntu] Jaunty Pulseaudio problems