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] Permission for a NFS client?
  2. [ubuntu] Blank white screen after update
  3. [ubuntu] Suspend in Ubuntu 8.10 not working
  4. [all variants] New packages in older versions
  5. [ubuntu] Remember Forever (sftp username/password)
  6. [ubuntu] Atom 330 file server performance
  7. [ubuntu] scim won't work on startup, causes xsession fail
  8. [other_os] SliTaz - small and fasr GNU/Linux distro - mirrors in different countries
  9. [ubuntu] auto-login and keyring password
  10. [mythbuntu] Sound device not detected after kernel upgrade
  11. [SOLVED] HP 930C USB printer doesn#t print in ubuntu, windows ok
  12. [all variants] apt-bouild build also dependancies
  13. [ubuntu] remove keyring
  14. [ubuntu] Spontaneous Reboot
  15. [ubuntu] install and use phone/modem Huawei ets 2258
  16. [all variants] Application groups
  17. [ubuntu] WINE w/ World of Warcraft (WoW) walking stutters
  18. [all variants] Changing label of hard drive
  19. [ubuntu] no sound in acer aspire 6930
  20. [ubuntu] Thunderbird and Firefox display problems
  21. [all variants] Help: kdelibs unresolvable dependencies after partial upgrade
  22. [ubuntu] Problem with GMX webmail using Firefox
  23. [all variants] Couply of Conky Questions
  24. [kubuntu] Kernel update breaks module builds?
  25. [ubuntu] NDisWrapper Help
  26. [ubuntu] MS Briefcase equivalent or other file sync SW
  27. [ubuntu] Update Alert in User Account
  28. [ubuntu] slowing down and dwon
  29. [ubuntu] Xp into ubuntu using Vmware, How ?? please help
  30. [ubuntu] slowing down and down and....
  31. [ubuntu] had to rebuild and reinstall ati driver package
  32. [ubuntu] Moving Fonts
  33. [ubuntu] Can't Install Programs
  34. [ubuntu] screen display & scrolling not working
  35. [ubuntu] Wubi-installer
  36. [ubuntu] PHP and Apache..not linking
  37. [ubuntu] PC shutdown when playing WoW
  38. [ubuntu] deluge wount stop uploading
  39. [SOLVED] Order Managment Software
  40. [all variants] Best Desktop Hardware
  41. [ubuntu] can't open phpmyadmin
  42. [ubuntu] postfix address help
  43. [ubuntu] CD-mounting trouble
  44. [ubuntu] Credit union accounting software?
  45. [ubuntu_studio] cannot mount volume (internal ext3) after canceled disk check
  46. [ubuntu] Windows boot manager
  47. [kubuntu] KDE wallet manager does not open walled
  48. [all variants] Typing accented characters
  49. [ubuntu] how to check if my system is up to date
  50. [ubuntu] gstreamer/device problems after yesterday's update
  51. [ubuntu] Mounting a drive through nautilus
  52. [kubuntu] Bits missing from cheese in KDE?
  53. [ubuntu] Ubuntu installation caused XP problems
  54. [ubuntu] i have no idea what happened
  55. [all variants] Software for Writing Piano Sheet Music?
  56. [ubuntu] Install Java-JRE From Sun's Website or Reporitory?
  57. [all variants] Guide me! Does any creature need such a tutorial? Wanna help ?
  58. [ubuntu] Won't Install?
  59. [ubuntu] gui where i can keep track of how much i have downloaded
  60. [ubuntu] Nautilus treats exe and txt files the same
  61. [ubuntu] Ubuntu will not startup
  62. [ubuntu] How to get programs to open automatically at start up.
  63. [ubuntu] can't find Version.h (Noobie here)
  64. [ubuntu] Increase Vino Resolution
  65. [ubuntu] totem player is in pernament full screen
  66. [all variants] combining email into one text file
  67. [ubuntu] Window fire effect
  68. [ubuntu] 8.10 bluetooth problems
  69. [SOLVED] Gaps in Display Window when Scrolling
  70. [ubuntu] Scheduled events in Ubuntu
  71. [gnome] migrating applications menu to new install
  72. [other] Linux tools to repair a non-booting system?
  73. [ubuntu] Edirol UA-25 issues/Audio Interface
  74. [ubuntu] Monitor Goes Into Power Saving Mode Instead of Displaying Boot Loader
  75. [ubuntu] Mouse Cursors For The Blind
  76. [ubuntu] repartitioning without losing data.
  77. [ubuntu] php5.3.0.0.dotdeb
  78. [all variants] Cron updates but only for minor releases
  79. [ubuntu] SFTP design
  80. [ubuntu] Boot menu help
  81. [ubuntu] using windows based software manager disk
  82. [ubuntu] Instilation on partition
  83. [ubuntu] Getting error 15 when I try to boot
  84. [all variants] linux scheduling
  85. [ubuntu] PS3 Logitech Mediaboard
  86. [ubuntu] Dual Boot / Oracle/ Ubuntu
  87. [other_os] Hidden buttons on my laptop !!!
  88. [kubuntu] Can't remove Kubuntu without errors.
  89. [ubuntu] Cron Jobs Not Running
  90. [ubuntu] Using git to apply a patch...
  91. [ubuntu] Browser Problem
  92. [ubuntu] GPG error when updating add/remove applications list
  93. [ubuntu] Terminal logs
  94. [ubuntu] Making a launcher
  95. [ubuntu] Keyboard Volume dial doesn't change volume
  96. [gnome] Nautilus script to copy file/s to dropbox and copy public URL.
  97. [all variants] Dino's revolving daily mysql backup script
  98. [all variants] X11 over SSH question
  99. [ubuntu] Running Ubuntu and Windows simultaneously
  100. [ubuntu] Problem with terminal
  101. [ubuntu] Portable Ubuntu Question :)
  102. [all variants] (n00b) Trying to raise Mobile GM965/GL96 resolution and running into odd things
  103. [ubuntu] Mumble text-to-speech
  104. [ubuntu] Can't change Apache's DocumentRoot
  105. [ubuntu] How to install a Unicode font?
  106. [ubuntu] Wine fuzzy fonts
  107. [ubuntu] Accented Characters Trouble
  108. [ubuntu] Restore system defaults
  109. [ubuntu] Wireless Connection Shows Connected by No Internet
  110. [xubuntu] cdrom permissions
  111. [ubuntu] Sound Sound Sound
  112. [other_os] Internet Connection
  113. [ubuntu] Ascii Colorization in vim/nano/pico
  114. [ubuntu] quick terminal question
  115. [ubuntu] Terminal unreadable sometimes
  116. [ubuntu] How to delay ipmasq until eth0 initialized?
  117. [ubuntu] Counter Strike CZ video issues, help!
  118. [ubuntu] "update-manager -d" not working..
  119. [ubuntu] using wget to submit form
  120. [ubuntu] no sound in ubuntu server with jwm
  121. [ubuntu] pulse audio : how to change volume of a certain Not running app
  122. [ubuntu] Need ubuntu in low memory usage
  123. [ubuntu] Package to extract values from a plot?
  124. [all variants] Cron Stopped Running
  125. [ubuntu] Sound jamming
  126. [ubuntu] Mounting external drive as root.
  127. [ubuntu] [B]HArdy 8.04 to 8.10 help{UPDATE}-kernel 2.6.27[/B]
  128. [ubuntu] Where to begin...
  129. [ubuntu] Error 13
  130. [ubuntu] Build kernel module in ubuntu
  131. [xubuntu] Equivalent of .gnomerc and startup.sh
  132. [ubuntu] Ubuntu update made GRUB earse map route
  133. [ubuntu] Not Printing on HP LaserJet 4+
  134. [other] resizing photo's
  135. [ubuntu] Something's stuck in the Trash
  136. [all variants] XMind - Mind Mapping Software
  137. sunbird
  138. [ubuntu] Recovering ubuntu data from a live cd
  139. [ubuntu] accidentally deleted OS files (how to repair/reinstall ubuntu)
  140. [all variants] How to playback or listen to audio readom images
  141. [kubuntu] kraft database schema problem
  142. [ubuntu] No menubar
  143. [ubuntu] processor usage
  144. [ubuntu] Wireless Mouse and Keyboard problems
  145. [ubuntu] There must be a way to install truetype on Ubuntu
  146. [ubuntu] Hard drive related lock ups
  147. [kubuntu] Error installing libstreams-dev
  148. [gnome] Gnome-global-menu a few applications won't work.
  149. [ubuntu] Sharing an external hard drive help.
  150. [ubuntu] Online repositories
  151. [ubuntu] Ubuntu 9.04 hash
  152. [ubuntu] what's my Samba share user name and password?
  153. [ubuntu] Remove PHP5
  154. [ubuntu] Update BlueZ
  155. [ubuntu] Sys Log Error From Cron
  156. [ubuntu] 180 drivers - An Upgrade??
  157. [xubuntu] Grub Error 2: BIG TIME
  158. [ubuntu] Can I change the order that files are copied when copying an entire folder?
  159. [ubuntu] 2009 printers and ubu 8.04
  160. [ubuntu] Help to configure Logitech mouse...
  161. [ubuntu] recover lost+found data?
  162. [ubuntu] Best RSS reader in Ubuntu?
  163. [ubuntu] Desktop Resolution Problem
  164. [ubuntu] Dual-Boot - Choosing Order?
  165. [all variants] Unable to Set Superblock Flags
  166. [ubuntu] USB Disk Write Error
  167. [ubuntu] using cups-pdf fails on intrepid
  168. [ubuntu] Auto mount a second internal hard drive
  169. [ubuntu] New 180 Driver causes unbootable system
  170. [ubuntu] Firefox is messing up in ubuntu 8.10
  171. [other_os] looking for a DL of XP to create an install cd.
  172. [ubuntu] Grub help - setup of 3 operating systems
  173. [ubuntu] Problem with NVIDIA driver
  174. [ubuntu] Run Perl Script at startup
  175. [ubuntu] audible Battery alert / alarm ???
  176. [ubuntu] Writing a simple script, need help!
  177. [xubuntu] tutorials
  178. [ubuntu] restore?
  179. [ubuntu] partition questions
  180. [ubuntu] OOo Templates
  181. [ubuntu] General Help Questions
  182. [ubuntu] desktop viewer...
  183. [xubuntu] Rip insall CD from your configured ubuntu OS?
  184. [ubuntu] synaptic package manager error
  185. [ubuntu] SED commands help
  186. [ubuntu] Two small but annoying problems.
  187. [ubuntu] HP MIE Version of Ubuntu
  188. [edubuntu] trouble with mounting and accessing drives, please help!
  189. [ubuntu] Flash Running Slow
  190. [ubuntu] gparted not seeing partition table-- ubuntu 8.04, 8.10, and 9.04
  191. [ubuntu] Installing on a mac book ?
  192. [ubuntu] Hp scanjet g2410 installation problem
  193. [ubuntu] Going from Windows XP Pro to Ubuntu
  194. [all variants] squid and privoxy
  195. [ubuntu] PDF application suggestions.
  196. [ubuntu] Transfer Vista files to Ubuntu?
  197. [ubuntu] Duplicate sources error and update notifier error
  198. [ubuntu] How can I recovers deleted files in a fat32 file system ?
  199. [ubuntu] How do I create a bootable ISO?
  200. [ubuntu] Easy Batch Question Abou Spaces
  201. [ubuntu] Startup manager Issue
  202. [ubuntu] Seo
  203. [ubuntu] how To recover the ****+Del Files or Folders
  204. [ubuntu] Uninstalled Ubuntu (Wubi) but I still think I am missing disk space
  205. [ubuntu] An error occured
  206. Host memory too low on VirtualBox? I don't think so...
  207. [ubuntu] Everything Crashes! Ubuntu 8.10
  208. [ubuntu] Cross browser flash crash, nsplugin error
  209. [ubuntu] NFS Kernel deamon Was not started
  210. [ubuntu] Recommended Photo Manager
  211. [ubuntu] tty
  212. [ubuntu] new to ubunto. driver help!?
  213. [ubuntu] set too high screen resolution
  214. [ubuntu] CD/DVD Burner Problem
  215. [ubuntu] How to fix "version `GLIBC_2.7' not found" error
  216. [ubuntu] First post
  217. [ubuntu] Minimum recommended size for '/root' partition? Please help!
  218. [ubuntu] Network manager asks password for eth0 but not for wifi0
  219. [ubuntu] NFS Kernel deamon service not started
  220. [ubuntu] Avant + Wine Problem
  221. [kde] [KDE4.2]Any good application that displays video file information?
  222. [ubuntu] Taskbar / compiz problem?
  223. [ubuntu] cannot type in terminal, RE:updates last night
  224. [kubuntu] updates removed kde?
  225. [ubuntu] Finding .m3u~ files
  226. [ubuntu] updating thumbnails
  227. [ubuntu] Flash Player
  228. [ubuntu] Tradefair CFD/spread betting
  229. [all variants] Equivalent Qt Creator for GTK
  230. [ubuntu] Installation failed, messed up xp...
  231. [ubuntu] USB Disk and FSTAB
  232. [all variants] fsck and chkdsk
  233. [ubuntu] Intel linux drivers?
  234. [ubuntu] resolution setting problem
  235. [ubuntu] Trouble with Compiz Config Settings Manager
  236. [ubuntu] Recommend a text editor.
  237. [ubuntu] New to linux
  238. [ubuntu] firefox with no borders
  239. [ubuntu] sound recognition
  240. [ubuntu] Evolution: Double inbox
  241. [all variants] Blank Screen after system loaded
  242. [ubuntu] How to set screen resolution to 1152x864
  243. [ubuntu] Issues with Songbird?
  244. [ubuntu] Mounting /dev/md0 (RAID) on older kernel
  245. [ubuntu] Every media player freezes when trying to play this DVD
  246. [ubuntu] Make boot up faster?
  247. [all variants] new kernel changes alsa version
  248. [ubuntu] Need help on Ubuntu 8.10
  249. [ubuntu] Another Update - Another Broken System
  250. [ubuntu] preload program not working