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

  1. [ubuntu] xsession error
  2. [ubuntu] firefox problem
  3. [ubuntu] HP Pavilion zv5000 installation problems. Please help me!!!
  4. [ubuntu] Help with Emerald Theme Manager
  5. [ubuntu] Screelet Won't go away
  6. [ubuntu] perisistant live CD
  7. [ubuntu] [SOLVED] firefox problem
  8. [ubuntu] About to ditch Evolution...unless you can help me
  9. [ubuntu] lost windows file sharing and printer
  10. [other] [SOLVED] Video Card Slot Type Help
  11. [ubuntu] First linux install, couple of issues
  12. [all variants] Partition types supported by /home?
  13. [xubuntu] Which files in usr/src/ can I erase?
  14. [ubuntu] [SOLVED] Changed Host-Name and now certain apps wont load.
  15. [ubuntu] help with youtube videos
  16. [all variants] custom terminal/ Konsole commands
  17. [kubuntu] firefox has been extremely slow recently
  18. [ubuntu] Cdrom drive scd0 does not exist on your system...
  19. Installer leads to blank screen
  20. [kubuntu] Adept Repository available for KXML Editor?
  21. [ubuntu] Desktop effects can not be enabled
  22. [ubuntu] driver problem
  23. [ubuntu] ubuntu on IDE?
  24. [ubuntu] How I can use metapackage in APTonCD?
  25. [ubuntu] Black lines over mouse pointer with compiz
  26. [ubuntu] ubuntu fdisk?
  27. [all variants] [SOLVED] Using the -e option with rxvt terminal
  28. [ubuntu] Cant log in
  29. [ubuntu] Remove Seagate HDD Jumper?
  30. [ubuntu] ubuntu "r" button problems
  31. [ubuntu] [SOLVED] Is my swap too big? Pc running slow
  32. [ubuntu] Little black dots to left of screen?
  33. [ubuntu] Pdf book printing
  34. [other] dpkg-reconfigure's settings removed after reboot
  35. Giving Ubuntu more space.
  36. [all variants] RFI causing startup sound then crashes system
  37. [ubuntu] Issues with Compiz and Nvidia
  38. [ubuntu] The mysterious Deleted Items Folder is back again... Why?
  39. [ubuntu] How can I map keys in the terminal?
  40. [ubuntu] Crontab creates an empty file
  41. [ubuntu] Screen resolution setting not persistent
  42. [ubuntu] 7.04 lost boarders on windows
  43. [xfce] No sound!
  44. [all variants] LVM not recognized by kernel
  45. [ubuntu] Gaim ?
  46. [ubuntu] Login Window, far too big after an update.
  47. [ubuntu] Random horribleness in Hardy
  48. [ubuntu] Wrong character encoding in file names
  49. [ubuntu] how to start programs from terminal and ..
  50. [ubuntu] Cannot Copy Paster from Keyboard
  51. [ubuntu] [SOLVED] Need help with a Perl script.
  52. [all variants] [SOLVED] Reduce Firefox CPU load
  53. [ubuntu] lots of problems with ubuntu 8.04!
  54. [ubuntu] Ubuntu randomly restarts
  55. [ubuntu] Beginner! how to install Ubuntu 8.04 w/Windows XP?
  56. [ubuntu] Making Ubuntu ask Me for password everytime I use sudo or open a program as root?
  57. [xubuntu] Input delay
  58. [ubuntu] help ANd sorry
  59. [ubuntu] resolution too high, can I still use compiz or what are the alternatives?
  60. [ubuntu] About searching file content
  61. [kubuntu] Problems with Firefox 3.0.1
  62. [ubuntu] Windows Dynamic disk in ubuntu kde
  63. [ubuntu] screensaver choppyness since 8.04.1
  64. Installed Hardy Heron via Wubi and now facing minor kernel upgrade issue
  65. [ubuntu] Postfix mail Problem
  66. [all variants] sed command help
  67. [ubuntu] Crontab Issue...
  68. [ubuntu] Can't find komposer
  69. [gnome] helpme for packaging mac4lin
  70. [ubuntu] Problem windows with ati drivers !
  71. [ubuntu] two big problems
  72. [ubuntu] Metacity does not load themes
  73. Font size is HUGE after install
  74. [ubuntu] Ubuntu-it
  75. [ubuntu] install windows after ubuntu install, reinstall grub + add boot choice
  76. [ubuntu] Evolution Send/Receive button not working
  77. [gnome] AWN Trash in Dock?
  78. [other] [OOo] Write error
  79. [SOLVED] Kpdf causes xorg to consume lots of memory
  80. [kubuntu] Kooka crashes
  81. [ubuntu] [SOLVED] cant install this tarball!
  82. [kubuntu] Stardict popup doesn't disappear
  83. [kubuntu] GNUCash with HBCI and aqofxconnect enabled
  84. [ubuntu] [SOLVED] Whats it mean?
  85. [ubuntu] N00bs Guide: PC Information
  86. [ubuntu] [SOLVED] Screen resolution issue after Hardy upgrade
  87. [ubuntu] Problem with my microphone. Realtek
  88. [ubuntu] [SOLVED] Login gdm theme causing problems
  89. [kubuntu] ntfs accses just stop working accses denide...
  90. [ubuntu] [SOLVED] GnuCash 2.2.5 OFXDirectConnect Parsing Error OFX
  91. [ubuntu] liblame0 and libmp3lame0 won't play nice - again...
  92. [kde] Games in KDE4 with Compositing effects
  93. [ubuntu] System Sounds not working
  94. [ubuntu] Need Help Getting Themes To Work Right
  95. [ubuntu] [SOLVED] pci help
  96. [ubuntu] [SOLVED] ZIP help
  97. [other] [SOLVED] what makes a pc?
  98. [ubuntu] [SOLVED] Can't find Compiz settings
  99. [ubuntu] Where can I find driver for creative VF 0230 webcam?
  100. [ubuntu] [SOLVED] I need help with these
  101. [ubuntu] How to send photo w/ evolution in Digikam?
  102. [kubuntu] Compiz
  103. [other] [SOLVED] mother board help
  104. [ubuntu] Linksys does not work...
  105. [all variants] How to make a disk image in Ubuntu?
  106. [ubuntu] xorg.conf - AllowDeactivateGrabs not working.
  107. [ubuntu] Font installing problem
  108. [ubuntu] AutoCad???
  109. [ubuntu] SDHC cards wont mount, give error
  110. [other] Problem with Emesene
  111. [ubuntu] Understanding Ubuntu (drivers and such)
  112. [ubuntu] Wierd error
  113. [ubuntu] How to auto mount a drive in 8.04
  114. [ubuntu] Graphics driver problem?
  115. [all variants] Need help to extract data from an old mysql db
  116. [all variants] games wont run in 1024x768
  117. [ubuntu] Postfix SendIng mail
  118. [other] [SOLVED] memory slot type help
  119. [gnome] weirdnesses in grep, sort, etc.
  120. [SOLVED] Username Change
  121. [ubuntu] [SOLVED] Can't remove Moblock
  122. [ubuntu] help installing win4lin pro 3.5
  123. [SOLVED] todays update killed the heron
  124. [all variants] E-Mail Scripting
  125. [ubuntu] How to downgrade from 8.10 Alpha 2 to 8.04
  126. [ubuntu] ATI Radeon 9600 - White Screen
  127. [all variants] Going from 22inch CRT monitor to LCD Widescreen questions
  128. [ubuntu] Launching Firefox 2 AND 3 together
  129. [ubuntu] undoing a hack-can't find the original post
  130. [other] I discovered something wierd about AWN
  131. [ubuntu] Conky: 133% battery life :-)
  132. [ubuntu] Python output redirection problems
  133. [kubuntu] Kooka's Galery path
  134. [other] memory socket?
  135. [ubuntu] HOWTO: Install Compiz Fusion from Git with FusionBuild (GUI)
  136. [ubuntu] ubuntu randomly crashes - perhaps network problem?
  137. [ubuntu] metacity --replace
  138. [ubuntu] File naming conventions
  139. [ubuntu] [SOLVED] Which format for external drive?
  140. [ubuntu] Probably a stupid question but....
  141. [ubuntu] TwoFTPd un Ubuntu
  142. [all variants] sort and grep behaviour changes
  143. [SOLVED] compiz fusion help
  144. [ubuntu] help in CCSM!! please
  145. [all variants] question: how to disable pixel shader on ubuntu nvidia
  146. [ubuntu] Update Manager Error - Linux-2.6.24-19-generic
  147. [ubuntu] Missing LVM Tools - vgsync & vgreduce to clean up extent duplication from pvmove
  148. [ubuntu] How to format hard drive?
  149. [ubuntu] Flash player on Opera 9.5
  150. [other] boot from .iso files
  151. [ubuntu] Extreme portability. Took your Ubuntu Box everywhere anywhere
  152. [other] How can i create a bootable DVD from WhiteBox CD's?
  153. [xubuntu] can i run xubuntu?
  154. [ubuntu] Problem compiling ALSA driver
  155. [all variants] hosts.deny file.
  156. [ubuntu] [SOLVED] compiz help
  157. [ubuntu] Ubuntu + Linux problem.
  158. [ubuntu] Problems making a persistent live USB flash drive
  159. [ubuntu] Possible to put home directory on seperate partition and share with another Linux OS?
  160. [gnome] I want to keep my Evolution data consistent across devices
  161. [ubuntu] Flash Drives
  162. [ubuntu] Deleting old ubuntu partition (Hardy Heron)?
  163. [ubuntu] file size limit exceeded (core dumped)
  164. [ubuntu] Does anybody find that XP's volume is just a bit louder?
  165. [ubuntu] Audacity Recording Problems
  166. [ubuntu] cd wont eject
  167. [ubuntu] How to switch between special effects?
  168. [ubuntu] Transmission select download destination folder
  169. [ubuntu] Ekiga - basic help
  170. [ubuntu] Can't Install Ubuntu 8.04
  171. [all variants] Any fundamental differences in Ubuntu and Edubuntu?
  172. [ubuntu] [SOLVED] Change where software installs ...
  173. [ubuntu] [Hardy] Freezes during bootup
  174. [ubuntu] installing on PS3
  175. [ubuntu] Where oh where could my little trash be?
  176. [ubuntu] Dual Boot Screen Help
  177. [ubuntu] Just seems...wrong
  178. [ubuntu] Screen Resolution Help
  179. [ubuntu] How to start X Session without a manager?
  180. [all variants] Re-naming partitions on Desktop
  181. [ubuntu] Emerald Randomly Quitting
  182. [ubuntu] [SOLVED] no menubar and can't access the terminal in hardy
  183. Dell BT mouse and keyboard
  184. [ubuntu] Data recovery from NTFS partition
  185. [ubuntu] customizing the text mode
  186. [ubuntu] Compiz
  187. [ubuntu] Install freezes
  188. [ubuntu] Live CD for Ubuntu ?
  189. [other] Java or not so much?
  190. [ubuntu] Crashing
  191. [ubuntu] Evolution and Thunderbird mail
  192. [ubuntu] Desktop Effects Could Not Be Enabled
  193. [ubuntu] Emacs Modes
  194. [ubuntu] you tube help
  195. [other] [SOLVED] compiz tips
  196. [ubuntu] share printer with Vista laptop
  197. [ubuntu] Load balancing 2 wifi signals with ubuntu?
  198. [kubuntu] How to remove specific screensavers?
  199. [ubuntu] Loading Screen Graphic messed up
  200. [ubuntu] Firefox window borders disappeared, regular borders still fine
  201. [ubuntu] Sound isn't working?
  202. [ubuntu] [SOLVED] boom crash
  203. [ubuntu] How do I roll back these changes?
  204. [ubuntu] Please help! Everything got removed
  205. [ubuntu] old versions of kernel - [B]what to do??[/B]
  206. [ubuntu] [SOLVED] what's happened to su or sudo -
  207. [all variants] [SOLVED] Why won't GCC work?
  208. [ubuntu] Moving folders containing certain file types
  209. [ubuntu] setbackground in ccsm"cube" ?
  210. [kubuntu] Kernel Compile Issue
  211. [kubuntu] Items missing from Advanced Desktop Effects Settings
  212. [all variants] [SOLVED] Can't login (root or user)
  213. [ubuntu] No Audio Using GBT 780g S2H
  214. [ubuntu] desktop changes places
  215. [ubuntu] Computer keeps rebooting (stuck in loop)
  216. Update Manager Error - Linux-2.6.24-19-generic
  217. [ubuntu] Sound Problems
  218. [other] Compiz screenshot plugin off vertically by 500px
  219. [ubuntu] Wheres My Boot Screen?
  220. [ubuntu] X suddenly unresponsive when laptop allowed to idle
  221. [ubuntu] Remove the Top Gnome Panel for All User's
  222. [ubuntu] blog help?
  223. [ubuntu] Live DVD - Where?
  224. [ubuntu] Live Cd >> Grub loading , Error 21
  225. [ubuntu] sharing files between ubuntu and a vm os
  226. [ubuntu] Newer .config for older kernel?
  227. [ubuntu] Blue lines at start up
  228. [ubuntu] Blur doesn't work at all.
  229. [ubuntu] [keyboard]I'll ask one more time...if still no one cares.
  230. [ubuntu] Avant Window Stuff
  231. [ubuntu] [SOLVED] Trying To Install libgtk2.dev
  232. [ubuntu] Cannot copy files
  233. [ubuntu] Machine snaps off
  234. [ubuntu] downgrade from studio to normal ubuntu...
  235. [ubuntu] [SOLVED] Update problem
  236. [ubuntu] Motherboard Diagnosis - software tools in Ubuntu?
  237. [xubuntu] Help on recovering ext3
  238. [ubuntu] How do i install .bin files in Ubuntu?
  239. [ubuntu] [SOLVED] How to change the default boot OS from GRUB?
  240. [ubuntu] Compiz causing flickering?
  241. [ubuntu] Problems with dual-boots
  242. [ubuntu] how to change login window resolution?
  243. [kde] browse directories using desktop
  244. [ubuntu] Do Not Have Permissions
  245. Wubi 8.04 - No wireless/wired network
  246. [ubuntu] while command in Ubuntu
  247. [ubuntu] Emptied recycle bin can I get it back?
  248. [kubuntu] USB problem: last message "waiting for device to settle before scanning"
  249. [kubuntu] Adept manager fails and package installation halts
  250. [ubuntu] Firefox