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] Going to buy Warcraft III tonight., what steps to run on wine?
  2. [ubuntu] firefox ports
  3. [ubuntu] printer problems
  4. [ubuntu] How to Mount Clonezilla Images
  5. [all variants] Mathtype equations in OpenOffice
  6. [ubuntu] Problems with multi-monitor setup.
  7. [ubuntu] Mousepointer problems
  8. [other] [SOLVED] fan help
  9. [ubuntu] Expand /home with free space
  10. [ubuntu] Boot hang just before login
  11. [all variants] Install nvidia geforce2mx 400 in ubuntu with 1024 x 768 resolution to activate compiz
  12. [ubuntu] [SOLVED] Does command line email work in a SSH environment?
  13. [ubuntu] Need to Install Ubu Onto Corrupt HD
  14. [ubuntu] Icons on top panel keep disapearing!
  15. [ubuntu] Ubuntu cannot load graphical interface
  16. [other] [SOLVED] I cannot boot WinXP after resizing partition with gparted
  17. [ubuntu] Need help with display settings
  18. [ubuntu] C++ program
  19. Help!!! Wubi screwed up!!!
  20. [ubuntu] backup and re install
  21. [ubuntu] Shutdown applet pops up constantly!?
  22. [ubuntu] Help!!!!!
  23. [kubuntu] Menu list in KDE4
  24. [ubuntu] strange...GRUB doesnt show up
  25. [other] [SOLVED] will thos memory work together?
  26. [ubuntu] compiz animations
  27. Compiling kernel--nvidia problems + questions
  28. [kubuntu] Kubuntu freezes when log off restart or shutdown
  29. [ubuntu] Error message need help from update manager
  30. [ubuntu] Access to gdmsetup
  31. [other] Need a hand w/ HD upgrade
  32. [all variants] [SOLVED] Live CD cant boot
  33. [ubuntu] File Brouse is Default to LIST?
  34. [ubuntu] Splashy??
  35. [ubuntu] Compiz fusion and a dual monitor display
  36. [ubuntu] [SOLVED] Terminal Command Help
  37. [ubuntu] Ubuntu Splash Logo
  38. [other] WinXP Password Recovery with HH Live CD?
  39. [ubuntu] General info request for 8.04
  40. [all variants] Custom locale
  41. [ubuntu] What applications is this??
  42. [ubuntu] Cairo Dock Effects
  43. Problems with audio and synaptic package manager
  44. [ubuntu] [SOLVED] Icons not appearing in panel anymore
  45. [all variants] Shift+CapsLock to change group changes CapsLock LED
  46. [ubuntu] [SOLVED] Turning off Compiz for Games Script
  47. Oopss
  48. [ubuntu] Keypad vs shift key
  49. [all variants] [SOLVED] ssh mount
  50. [ubuntu] Terminal Services Help
  51. [ubuntu] Wine and Cedega and X
  52. [ubuntu] Upgrade to the Latest Compiz Fusion Release 0.7.6
  53. [ubuntu] help with uninstall
  54. [ubuntu] receiving GPG encrypted e-mail in evolution
  55. [kubuntu] [SOLVED] HELP I really messed up using synaptic.
  56. [other] Were does the fan go?
  57. [ubuntu] What Way Is Better?
  58. [other] [SOLVED] how to take off pcu fan?
  59. [ubuntu] apache2 denies all access
  60. [ubuntu] nvidia card s-video out black and white issue
  61. [ubuntu] Firefox Updated = error on startup
  62. [ubuntu] Compiz Problem
  63. [ubuntu] Getting the latest netbeans?
  64. [ubuntu] NVIDIA GeForce 9600 GSO Driver install help
  65. [ubuntu] White Screen
  66. [all variants] sound on ltsp clients
  67. [ubuntu] Can I download Wine Separately?
  68. [ubuntu] Classpath problem with Oracle XE
  69. [all variants] Maintaining updated software, how?
  70. Run Ubuntu From Wubi - Freezes
  71. [ubuntu] [SOLVED] VNC Error
  72. [ubuntu] [SOLVED] Installing Apache Etc. on Ubuntu Desktop (for development)
  73. [ubuntu] Help with modem motorolasm56 ubuntu7.10
  74. [ubuntu] google earth 2012
  75. [ubuntu] Install Lexmark
  76. [ubuntu] [SOLVED] Chatzilla with XULRunner - sudo
  77. [ubuntu] Virtual Memory
  78. [ubuntu] mount sshfs with script in WICD
  79. [ubuntu] 2 HDDS, one partition?
  80. [ubuntu] Multiple .Rar Archeives
  81. [ubuntu] dpkg: error processing mysql-server (--configure)
  82. [ubuntu] sudo chown not working ?
  83. [ubuntu] How do I increase resolution
  84. [ubuntu] [SOLVED] Mail notification icon-click actions
  85. [ubuntu] nVidia CUDA
  86. [ubuntu] Which flash plugin to get?
  87. [ubuntu] trying to attach Evolution to Exchange
  88. [all variants] SSHFS Permissions on Hardy
  89. [ubuntu] [SOLVED] no programs/files will install
  90. [kubuntu] [SOLVED] 3d cube
  91. [ubuntu] Ubuntu/windows booting order ???
  92. [all variants] Disabling emerald theme
  93. [ubuntu] [SOLVED] NO 3D Cube with Compiz Fusion
  94. [ubuntu] Pyback CD/DVD backup
  95. [all variants] Howto "remove" grub with Vista
  96. [ubuntu] Evolution SMTP not working
  97. [ubuntu] [SOLVED] Grub Error 17
  98. [ubuntu] "Hardware Drivers" won't open
  99. [ubuntu] White Screen when trying to run Compiz, 8.04
  100. [ubuntu] Temp Readings from lm-sensors, whats with the alarm?
  101. [ubuntu] Partitioned drive won't boot.
  102. [ubuntu] laptop hangs on startup drive scan
  103. [ubuntu] help setting up synergy with xp and ubuntu
  104. [ubuntu] Synaptic Package manager ignores .fonts.conf
  105. [ubuntu] Ubuntu cannot print to XP hosted printer
  106. [ubuntu] Essential Offline Programs
  107. [SOLVED] Wubi install problem
  108. [ubuntu] User account doesn't appear in Users and Groups
  109. [ubuntu] X corruption (i think) PLEASE HELP!
  110. [ubuntu] [SOLVED] Ubuntu works bad after overheating
  111. [ubuntu] Qwakkeddup gets a beat-down, Help!
  112. [ubuntu] Installing anim8or in WINE ?
  113. [ubuntu] Some Chinese chars not displayed in uxterm
  114. [ubuntu] ntpd synchronization problem
  115. [ubuntu] Bluetooth disappears
  116. [ubuntu] Compiz Black Desktop
  117. [all variants] [SOLVED] Using 'cat' and 'split'
  118. [ubuntu] Compiz Black Desktop
  119. [ubuntu] [SOLVED] Setting up timers
  120. [gnome] window bling
  121. [ubuntu] [SOLVED] app check
  122. [ubuntu] Persistant, unwanted upgrades
  123. [ubuntu] Changing Desktop Icons
  124. [all variants] /var/log/messages getting flood with esata drive errors?
  125. [all variants] Secure-delete (sfill) duration?
  126. [xubuntu] Nvidia Driver Help
  127. [other] New mouse and keyboard...
  128. [ubuntu] Moving to pure Ubuntu
  129. [ubuntu] Max Volume or Mute
  130. [ubuntu] [SOLVED] how to tell an app to start on boot
  131. [all variants] How to: Repairing Your Filesystem
  132. [ubuntu] Error in Transmission when downloading a file.
  133. [all variants] Dual boot, shared partitions and hibernation?
  134. [other] [SOLVED] cpu temp and hard drive temp programs
  135. [ubuntu] [SOLVED] Which way to install
  136. [other] NTLDR is missing
  137. [ubuntu] [SOLVED] Can't change cube wallpaper
  138. [ubuntu] Back to 8.04?
  139. [ubuntu] No Audio / "beeeeee" sound
  140. [ubuntu] Dual Screen help
  141. [ubuntu] Monitor driver help
  142. [ubuntu] [SOLVED] Reformatted Deluge download drive. Now Deluge won't open.
  143. [ubuntu] Disc sometimes won't mount
  144. [kde] [SOLVED] KDE's Cursors
  145. [ubuntu] Installer file for a program is a .bin, but I am unable to open it
  146. [kubuntu] Is there any way to set mouse wheel to scroll one screen at a time?
  147. [gnome] How to change the second color on title bars
  148. [all variants] Second hard drive issue (less gb than should)
  149. [ubuntu] Problem with \ and |
  150. [ubuntu] Atheros ar5007eg drivers help
  151. [ubuntu] Can I Install Ubuntu ?
  152. More problems with Wubi.
  153. [ubuntu] usb thumb drive won't mount
  154. [kubuntu] Change IMAP to disconnected IMAP (kmail)
  155. [gnome] [SOLVED] KDE Icons in Gnome
  156. [ubuntu] Login Window Editor Won't Open
  157. [ubuntu] Mouse/PC Freezes While Using Firefox
  158. [kde] Change "Move to Trash" to "Delete"
  159. [all variants] [SOLVED] Recover from bad Compiz settings
  160. [other] [SOLVED] Can Firefox be run using Qt?
  161. [ubuntu] Firewall Questions
  162. [kubuntu] Compiz & Expo
  163. [all variants] new hardware advice
  164. [ubuntu] driver problem
  165. [ubuntu] Looking for a JumpWin equivalent for Ubuntu (dual monitor window switcher)
  166. Ubuntu freezes during first startup following Wubi install
  167. [ubuntu] MDADM raid 1 array rebuild always crashes/freezes system
  168. [ubuntu] Strage window top bar bug in dual screen setup
  169. [ubuntu] Ubuntu ATTENTION
  170. [ubuntu] Keyboard Shortcuts
  171. [all variants] Permission Denied on removable drives, even as root
  172. [ubuntu] Picture boxes VB express
  173. [ubuntu] [SOLVED] re writing Grub
  174. [ubuntu] Compiz Is A Hog
  175. [ubuntu] how to tell grub to make my Windows default boot system
  176. [xfce] Teething Problems
  177. [ubuntu] HDD Temperature
  178. [ubuntu] [SOLVED] New Plugins??
  179. [ubuntu] XFS 2 GB maximum filesize ?
  180. [ubuntu] Using abnormal amount of memory and 2 Xorg?
  181. [ubuntu] [SOLVED] Evolution not starting anymore after system crash
  182. [other] HDPARM overriding settings
  183. [ubuntu] apt-get remove uninstalled hal, gnome-desktop and other pachages
  184. [ubuntu] Brightness persistence problem after screensaver
  185. [ubuntu] bitorrent transmission
  186. [ubuntu] partition problems
  187. [ubuntu] Keyboard Layout
  188. [ubuntu] [SOLVED] Start up script on screen shows errors
  189. [ubuntu] SWAP partition not being used, even when RAM is loaded
  190. [all variants] Postfix wont install completely
  191. Unable to create folder - problem with rights
  192. [ubuntu] Slow disk performance
  193. [all variants] Trados translation software for linux, and others?
  194. [ubuntu] mic issue
  195. [other] Blueprints in Launchpad
  196. [ubuntu] screen resolution problem
  197. [other] [SOLVED] (how to?) symbolic link to /home/user
  198. [other] linux on xbox
  199. [ubuntu] desktop windows shadow after closing
  200. [ubuntu] Two small compiz problems
  201. [all variants] iWeb alternative
  202. [ubuntu] oo.org dictionary inusable
  203. [all variants] [SOLVED] Installed VMWare for existing XP install - can no longer mount NTFS partitio
  204. [ubuntu] Linux Cds
  205. [edubuntu] using zlilo etherboot image
  206. [ubuntu] DIA the VISIO side of the freedom choice
  207. [ubuntu] System Monitor showing incorrect bandwidth usage
  208. [ubuntu] ubuntu crashes and won't shut down neither sometimes
  209. [other] Need to hook up the case power switch to the mobo
  210. [ubuntu] lassekongo83's GTK2 themes -> error on sudo/gksu
  211. [ubuntu] Ubuntu on a XP laptop?
  212. [ubuntu] [SOLVED] vim question
  213. [ubuntu] Using OSS - no sound in games or flash
  214. [ubuntu] Rotate Cube / Desktop cube
  215. [ubuntu] Problem when installing OpenLDAP
  216. [ubuntu] How do you restart the xserver through terminal
  217. [ubuntu] help! official nvidia driver install failure
  218. [other] Is there any danger in buying used computer games off of ebay?
  219. [gnome] Need help with a login script.
  220. [ubuntu] ubuntu update broke java in firefox
  221. [ubuntu] apt-get and purging configuration
  222. [ubuntu] Best webcam & headset for Hardy?
  223. [ubuntu] Uninstall Ubuntu on Windows-Ubuntu machine?
  224. [ubuntu] Can beryl be used on ubuntu
  225. [all variants] Bash autocompleting directories only
  226. [ubuntu] Install software problem?
  227. [ubuntu] Ubuntu hardy firefox 3 bizarre caching problems
  228. [ubuntu] Tracker in menu?
  229. [ubuntu] cannot record any audio using sound recorder
  230. [ubuntu] Gnome-do keyring issues on login
  231. [all variants] [SOLVED] Command Line Help Please
  232. [xubuntu] New Language Support
  233. [ubuntu] [SOLVED] Dual Boot problems, again
  234. [ubuntu] simple database in Ubuntu
  235. [ubuntu] Autostart applications as root without root password dialog
  236. [ubuntu] Middle Mouse Button not working properly Scrool
  237. [xubuntu] Disable power button in Xubuntu Hardy?
  238. [kubuntu] Lost ability to print
  239. [ubuntu] Uninstalling Ubuntu in Vista
  240. [ubuntu] Lost Root Password
  241. WSOD : White screen of death after removing needed files
  242. [ubuntu] user invisible to who, w and whowatch?
  243. [ubuntu] Ubuntu no longer recognizes Sony Cyber-Shot
  244. [ubuntu] linux friendly laptop
  245. [ubuntu] what do i need to know
  246. [ubuntu] [SOLVED] how to uninstall wine and all its componets
  247. Wubi/ubutnu Hardy Heron Problems
  248. [ubuntu] text editor with utf8 without BOM on ubuntu 8.04
  249. [ubuntu] Reinstalled Vista and now Ubuntu wont load
  250. [ubuntu] [SOLVED] font sharpeness