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] Error Login : messenger : Fail to add entry for user MYUSER
  2. [ubuntu] Can't login with correct password
  3. [ubuntu] Lag when copying/extracting large files
  4. [ubuntu] Error 13 at GRUB menu
  5. [other] Formatting HD
  6. [ubuntu] Viewing Vista Partition in Ubuntu?
  7. [ubuntu] my FireFox Browser Crashed, Help!
  8. [ubuntu] Calling Zenity command from daemon
  9. [ubuntu] how to combine audio inputs into one
  10. [ubuntu] I just wanted to see what the experts tought of this
  11. [ubuntu] synpatic package manager
  12. [all variants] how to downgrade rsync to 2.6.9?
  13. [ubuntu] Running Ubuntu from the CD/DVD
  14. [ubuntu] Ubuntu wont boot - buffer I/0 Error
  15. [ubuntu] Compiz mysteriously stopped working
  16. [ubuntu] grub loader
  17. [ubuntu] Advise on Hosting
  18. [ubuntu] Twin pane file manager for Gnome 64bit 8.10
  19. [ubuntu] File system check on external harddrive
  20. [ubuntu] Intrepid Ibex won't boot
  21. [ubuntu] FDF creator - how to create FDF file from OO or other
  22. [ubuntu] Console fonts ? Coding ? Display problem
  23. [ubuntu] Ubuntu Startup Graphics Problem
  24. [all variants] Quick Build in Auctex
  25. [all variants] remote desktop between two linux computers
  26. [ubuntu] Trouble setting share permissions on folders
  27. [mythbuntu] lirc problems
  28. [kubuntu] Dual screens, 2nd screen showing cross while in KDE
  29. [all variants] WUBI Xubuntu: Cannot mount WIN Partition
  30. [ubuntu] Load Balancing Setup with only 2 physical Computers (no virtuals)
  31. [ubuntu] NVidia + Openarena Help Please! (Tearing problems)
  32. [all variants] Gnome/GTK File Dialogs Slow and Pausing
  33. [ubuntu] configure a dialup connection
  34. [all variants] Conky battery time wrong
  35. [ubuntu] Boot USB installation into console mode
  36. [ubuntu] windows xp partion help
  37. [ubuntu] unable to mount device
  38. [ubuntu] Running itrepid Ibex and missing fonts!
  39. [ubuntu] Change the language to English in EEE PC 900 Linux
  40. [ubuntu] Sound on Acer Aspire One is a bit low
  41. [ubuntu] xorg resolutions gone
  42. [ubuntu] Internet Connection Problems
  43. [ubuntu] ubuntu server gui
  44. [ubuntu] does ubuntu configur modems
  45. [ubuntu] Can't install nvidia drivers
  46. [ubuntu] TwinView with Laptop
  47. [ubuntu] Inverting content of a file
  48. [ubuntu] Pidgin Messenger crashes instantly after invocation
  49. [all variants] How to get started with A2DP
  50. [ubuntu] GRUB error 15
  51. [ubuntu] HOWTO Turn Off Automount USB Floppy or CD ROM
  52. [ubuntu] Extracting large files
  53. [all variants] How to create desktop shortcut for running a command?
  54. [all variants] Grub Problem i think
  55. [ubuntu] I can't start any of VOIP phones on ubuntu 8.10
  56. [ubuntu] Printing from Vim
  57. [all variants] Mapping different characters to keyboard
  58. [ubuntu] internet connectivity through ubuntu server
  59. [ubuntu] problem with video
  60. [ubuntu] Booting Problems - Help!
  61. [ubuntu] Files created by www-data has no rights (octal: 0000)
  62. [ubuntu] Language learning software?
  63. [ubuntu] apache2 only 128 processes
  64. [ubuntu] Themes not Installing
  65. [ubuntu] Space reserved for root on LVM - How do I change it?
  66. [ubuntu] Web Development: Waiting for Localhost?
  67. [ubuntu] dell 6400
  68. [ubuntu] how do I install a sane backend
  69. [ubuntu] Audacity grey-out when editing .5G WAV file
  70. [ubuntu] a script that refreshes a screenlet
  71. [ubuntu] What does this mean and how do i fix it
  72. [kde] Frozen Linux
  73. [ubuntu] How to make a NFS partition be mounted during Ubuntu startup.
  74. [gnome] Keyboard Shortcuts bug
  75. [ubuntu] Will more workspaces slow me down?
  76. [other] Fedora: SELinux Python under root permission problems
  77. [ubuntu] I got a major problem in my dedicated server (related to permissions)
  78. [SOLVED] How Do I Create Separate /home During Install?
  79. [ubuntu] How to login as root in a terminal if ubuntu wont load the correct graphics driver?
  80. [ubuntu] PuTTY Freezes/Hangs
  81. [ubuntu] Lost music
  82. [other] Empty Toolbox in Mono Develop
  83. [ubuntu] How to change Serial Port settings
  84. [all variants] Arrow Keys not functioning
  85. [xubuntu] xubuntu, ubuntu or edubuntu for 3 yr old?
  86. [ubuntu] How do I upgrade Vuze from 4.0 to 4.2?
  87. [kubuntu] More KDE4 white/black screen of death
  88. [ubuntu] 8.10: IE7 on Ubuntu ? Is it possible ?
  89. [all variants] shell script - append date and time to filename
  90. [ubuntu] Undeletable file
  91. [ubuntu] Address Bar on Firefox
  92. [ubuntu] How do I add disk space to my Linux
  93. [ubuntu] How do I change my file system into NTFS???
  94. [ubuntu] Trouble locating sys_getpid
  95. [ubuntu] udev Permissions for digital camera mount point
  96. [ubuntu] Ubuntu new problem on Samsung R510
  97. [ubuntu] i want my programs and games to work in Ubuntu...
  98. [ubuntu] kernel support for aes-cbc-essiv:sha256 cipher
  99. [other] Moving partition out of extended?
  100. [ubuntu] fstab and mounting
  101. [all variants] Clone disk with live CD?
  102. [ubuntu] X-Fi support
  103. [ubuntu] Freezes up while ripping from CD
  104. [ubuntu] How do I select certain text with gedit?
  105. [ubuntu] Automator - Applescript type thing for Ubuntu
  106. [ubuntu] Is there a way to get a list of URLs from apt-get?
  107. [ubuntu] iphone - webmail
  108. [ubuntu] Clickin' and grabbin'
  109. [ubuntu] No signal to LCD TV during boot
  110. [ubuntu] Nvidea driver missing after messing with grub
  111. [ubuntu] The Tutorial Don't Know What I Know.....
  112. [ubuntu] Sudousers with a Windows Active Directory
  113. [ubuntu] re-partitioning and transferring files
  114. [ubuntu] Login Window Problems,
  115. [all variants] Hard disk does not pass fsck, and I can't boot!
  116. [ubuntu] Media Server - noob questions
  117. [ubuntu] Compiz/X11 Fail? Ctrl-Alt-Backspace? Help.
  118. [ubuntu] Can't boot Ubuntu after an unclean shutdown
  119. [ubuntu] MusicTracker for Skype?
  120. [edubuntu] Can screensaver run a video?
  121. [ubuntu] Flashblock is not installing nor unistalling.
  122. [ubuntu] Backup data only visible on laptop ???
  123. [ubuntu] Nvidia driver not working..
  124. [other] Using the 'at' command
  125. [ubuntu] Can't see Vista partition in Places
  126. [ubuntu] pidgin internet messeging
  127. [ubuntu] Cant log into Facebook.
  128. [ubuntu] Choppy video
  129. [ubuntu] Panel not showing
  130. [ubuntu] Sound not working
  131. [ubuntu] Battery dies out quicker on Ubuntu?
  132. [ubuntu] Corrupted file system with fsck
  133. [ubuntu] resize root.disk
  134. [ubuntu] Staying within the alloted primary partitions
  135. [ubuntu] skype setup with advent 9112 notebook????
  136. [ubuntu] Linux FUN?
  137. [ubuntu] My laptop dosent seem to want to work Ubuntu - Drivers please assist
  138. [ubuntu] sudo fails-- "Sorry, try again"
  139. [ubuntu] mldonkey...
  140. [ubuntu] Storage Breakdown
  141. [ubuntu] Pidgin connection is intermittent
  142. [ubuntu] Having Multiple Backgrounds
  143. [ubuntu] Strange mouse left button problem
  144. [ubuntu] connecting tomcat to a database to query through jsp
  145. [SOLVED] Transmission Web Client
  146. [ubuntu] NVIDIA Driver Problem
  147. [ubuntu] Controlling ubuntu with wii remote
  148. [ubuntu] having trouble with World of Warcraft - Burning Crusade on 8.10-Ibex, please help!
  149. [all variants] manual flashdrive mounting help
  150. [ubuntu] Hard Drive Problems
  151. [ubuntu] Can't Anyone help with serious system crash?
  152. [ubuntu] Need help getting warhammer online to run in ubuntu
  153. [ubuntu] I need a program that will ....
  154. [ubuntu] USB modem on Ubuntu
  155. [ubuntu] Audio from 2 different sets of Speakers?!
  156. [ubuntu] Dell Inspiron Audio and video Issues
  157. [ubuntu] Screen randomly freezes?
  158. [ubuntu] GPG error.
  159. [ubuntu] No GDM launch at boot & No Sound
  160. [ubuntu] Grub does not see my new Ubuntu 64
  161. [mythbuntu] Start apps minimized?
  162. [ubuntu] Saving Google Books
  163. [ubuntu] external USB Hard drive detection problem
  164. [ubuntu] 8.10 Ibex clock speed problems
  165. [all variants] Eclipse doesn't return control to shell
  166. [ubuntu] Ubuntu Java help.
  167. [xubuntu] Xubuntu Default Browser
  168. [ubuntu] Dual-boot help?
  169. [ubuntu] I would, but can't migrate my staff over...
  170. [ubuntu] quick question. Media server 64bit or 32bit?
  171. [ubuntu] How do I make an animation in blender?
  172. [ubuntu] disk full?
  173. [ubuntu] Hoooray, got a printer to work!!!!
  174. [ubuntu] Unable to remove xorg.conf backup file
  175. [ubuntu] error message on login
  176. [ubuntu] help recovering data from external hdd?
  177. [ubuntu] Grub Error 13
  178. [ubuntu] Installing from source - missing gtk+-2.0.pc
  179. [ubuntu] Ease of use
  180. [other] easy question about linuxmint
  181. [ubuntu] Gamecube to USB controller adapter
  182. [ubuntu] trouble installing from command line
  183. [ubuntu] Really slow while installing Windows XP in VMware Workstation
  184. [ubuntu] How to recover data from casper-rw?
  185. [ubuntu] Please recommend me a platform virtual machine
  186. [ubuntu] PDF kills Ubuntu dead!
  187. [ubuntu] How to change the font color of the application menu
  188. [other] can't boot to windows?
  189. [other] backup for server os upgrade
  190. [all variants] Forgot to mount /home partition on install
  191. [ubuntu] libtool and ./configure shared libs problem
  192. [ubuntu] KDE / Update Manager problems?
  193. [ubuntu] Looking for tuition or user group in Australia, Brisbane?
  194. [ubuntu] openoffice is broken
  195. [ubuntu] how to stop scrolling in xterm?
  196. [ubuntu] Nautilus Key press issue
  197. [ubuntu] Adding windows 7 to grub along with xp and ubuntu.
  198. [ubuntu] How do i uninstall multiple packages?
  199. [ubuntu_studio] Wine help anyone?
  200. [ubuntu] Default Values for gtweakui-session
  201. [ubuntu] Update Manager Problem
  202. [ubuntu] External Hard Drive Read As Unallocated
  203. [ubuntu] COM port under Wine
  204. [ubuntu] Which startup programs can I uncheck?
  205. [ubuntu] Booting problem
  206. [all variants] Ubuntu Mirror List.. Bigpond
  207. [ubuntu] gyache voice chat problem
  208. [xubuntu] moving dir's
  209. [ubuntu] syslog and cron job
  210. [gnome] Set session startup order ?
  211. [ubuntu] Firefox 3 crashes automatically after Cooliris update
  212. [ubuntu] Terminal: how to permanently clear screen?
  213. [edubuntu] No boot splash screen on Edubuntu 8.10
  214. [all variants] Newer version ".so" libs for existing app??
  215. [other] which linux version for my pc setup and usage?
  216. [other] --10 QUESTIONS seeking ANSWERS--
  217. [ubuntu] how do i get my NT account to have root priviledges
  218. [ubuntu] ubuntu uedition 2.1 or kubuntu
  219. [ubuntu] Ubuntu: how to free-up memory?
  220. [all variants] Best way to install Vista following clean Ubuntu install
  221. [gnome] Themes not working
  222. [other] libgcj8 : what version of GNU Classpath ?
  223. [ubuntu] LAN intel pro 1000 eeprom data all f's need some help
  224. [kubuntu] software install problem
  225. [ubuntu] KMyMoney OFX
  226. [all variants] rsync to a folder, rsync back [dropbox]
  227. [ubuntu] What can i use instead of Skype???
  228. [ubuntu] /dev/dsp permanently busy
  229. [ubuntu] No default root fs. Ubuntu 8.10 PS3
  230. [ubuntu] Absolutely Clueless >.<
  231. [ubuntu] gedit can'r save/ permission issue
  232. [SOLVED] Acronis Disk Image
  233. [ubuntu] 3 newbie problems
  234. [ubuntu] HOw to enable Visual Effects???
  235. [ubuntu] How do you split files for uploading to youtube
  236. [ubuntu] Frequent USB keyboard/mouse failure
  237. [ubuntu] Need help to execute ssh daemon
  238. [ubuntu] how to share screen with atlest one or multiple users
  239. [ubuntu] Ready to buy this video card, but it doesnt list stream processors or if has a 6 pin
  240. [ubuntu] Stutters When Internet Connection Active
  241. [all variants] Auto relaunch programs on exit?
  242. [all variants] conky if_up variable
  243. [ubuntu] Any NewEgg promo codes? - I'm about to place an order
  244. [ubuntu] Builtin WebCam Help Please
  245. [ubuntu] Openssh 5.1 sftp chroot and file permissions (umask)
  246. [ubuntu] virtualbox share persistence
  247. [kubuntu] Gui problems with dual video cards.
  248. [ubuntu] Cannot use the NVIDIA X Server Settings
  249. [all variants] Gajim in 9.04
  250. Desktop enhancement tool