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. [kubuntu] Kubuntu KDE4 remix 8.04 annoying issue...
  2. [ubuntu] g++ install problem
  3. [ubuntu] Really need help with this problem
  4. [ubuntu] Need to make Rhythmbox NOT open when I plug an ipod in
  5. [ubuntu] Picture folder freezing
  6. [ubuntu] Gimp Boot error 21
  7. [gnome] rdesktop - ignore certain key combinations
  8. [ubuntu] Firefox & FLASH
  9. [ubuntu] Compiz Screensaver?
  10. [ubuntu] Desktop Effects Tab Not Showing Up Under Appearence
  11. [ubuntu] KQemu Not Found?
  12. [ubuntu] Cannot apt-get remove libhsqldb-java, help please
  13. [ubuntu] Emails In Purgatory??
  14. [gnome] How to remove the second desktop panel?
  15. [ubuntu] Help please
  16. [ubuntu] Flash Player out of sync
  17. [ubuntu] Best Way To Remove KDE4
  18. [ubuntu] Evolution playing "Login" sound
  19. [ubuntu] gnome-color-chooser
  20. [other] Install over LAN
  21. [ubuntu] Bad Disk?
  22. [ubuntu] Setting Up USB Mic in Ubuntu 8.04?
  23. [ubuntu] Change the home dir
  24. [ubuntu] how to make a network drive
  25. [ubuntu] Azureus Text scrambled...
  26. [ubuntu] Why isnt there a "Move file" function like in windows?
  27. [all variants] [SOLVED] Looking for ascii text generator
  28. [ubuntu] uninstalling wow...then installing it the right way
  29. [ubuntu] stopping gnome-panel
  30. [kubuntu] Tried updating KDE4 4.0.3 to 4.1.2...BIG PROBLEM!
  31. [ubuntu] Problem with gnome
  32. [ubuntu] [SOLVED] Terminal transparency
  33. [ubuntu] Firefox - many pages, some words completely invisible
  34. [all variants] Cleaning up Ugly Themes
  35. [kubuntu] windows minimize randomly (mouse problem?)
  36. [ubuntu] trouble with grub dual boot fresh install
  37. [other] OK , I Goofed!!!!
  38. [ubuntu] e-Sword and Wine Problem
  39. [ubuntu] Printing to PDF - without headers or footers
  40. [ubuntu] Possible to install clonezilla within the OS?
  41. [ubuntu] Permissions
  42. [ubuntu] replacing apps color for DarkRoom theme
  43. [ubuntu] Cant install theme :/
  44. [ubuntu] Computer freezes with COMPIZ and Ubuntu 8.04
  45. [ubuntu] Oracle 10g XE on Ubuntu 8.04 Server
  46. [other] strange system noise
  47. [ubuntu] Will Compiz work on dual screens?
  48. [ubuntu] matrix control panel and locating webroot
  49. [all variants] Ubuntu/Debian package of a Java application
  50. [ubuntu] [SOLVED] gnome won't start, loads only a white screen
  51. [ubuntu] Screen Periodically Goes Black
  52. [all variants] Party Shuffle in Ubuntu
  53. [other] Hardware issues.. please help!
  54. [ubuntu] [SOLVED] Locking Thunderbird
  55. [other] accessibility software advice
  56. [gnome] I need a really nice, dark theme for Ubuntu...
  57. [ubuntu] How do I resize my Ubuntu partition?
  58. [ubuntu] Possible to play cod4?
  59. [ubuntu] [SOLVED] Python GTK Issue
  60. [ubuntu] 191 FATs?
  61. [ubuntu] Hanging / Pausing / Slow system updates
  62. [ubuntu] Restoring points using sysres
  63. [all variants] clusters for noobs?
  64. [ubuntu] Programming help...
  65. [other] Network server Help ! ?
  66. [all variants] Stop Command Line from Blacking out at Idle
  67. [other] ubuntu/windows help
  68. [ubuntu] Trouble with Rosegarden and Jack
  69. [ubuntu] Stability issues-- faulty install?
  70. [kubuntu] error message when running any application
  71. [ubuntu] CAN'T reply to forum messages...
  72. [kubuntu] [SOLVED] FAT32 and NTFS drives not loading at boot: Kubuntu Hardy 8.04.1
  73. [ubuntu] Help needed: duplicating Ubuntu 8.04 CD
  74. [gnome] [SOLVED] aurora smooth emerald theme Problem
  75. [ubuntu] Updated + Fixed wireless, now I can't boot latest kernel?
  76. [ubuntu] [SOLVED] Easy way to transfer FF3.0 Settings/Plugs from xp to linux
  77. [ubuntu] 8.04 no sound please help
  78. [all variants] Trouble with installing Epic Irc Client
  79. [ubuntu] can't mount my 4G USB flashstick
  80. [ubuntu] NX Client and "Composite Extension" error message
  81. [ubuntu] How to update wine
  82. [ubuntu] Hard Drive is "Filesystem"?
  83. [ubuntu] [SOLVED] only copy png files with alpha transparency in terminal
  84. [ubuntu] External drive cannot change permissions, unusable
  85. [ubuntu] Help with Conduit
  86. [ubuntu] anjuta help
  87. [ubuntu] I can mount two 1T drives but cannot move files to them
  88. [ubuntu] [SOLVED] read-only usb stick ???
  89. [ubuntu] [SOLVED] Unison problem, Assertion failed
  90. Wubi interferes with PVR on Windows?
  91. [other] Error fetching tar... emerald GPL themes
  92. [kubuntu] Kubuntu and/or compiz not working well
  93. [SOLVED] Problem with wubo
  94. [ubuntu] Editing files in JOE creates another file
  95. [xubuntu] Problem With Session in XUbuntu
  96. [ubuntu] google earth fonts, what the?
  97. [other] [SOLVED] Desktop Cube isn't a Cube
  98. [ubuntu] to many boot options
  99. [xubuntu] [SOLVED] Questions on rsync
  100. [ubuntu] Ubuntu bug reporting question
  101. [ubuntu] virtualbox ose
  102. [ubuntu] How can i prevent screen from blinking/flashing when switching between X session?
  103. [ubuntu] Password Entering for everything
  104. [ubuntu] standbye and wake on lan
  105. [ubuntu] Modem software install
  106. [other] [SOLVED] What are your favourite / top 3 free online storage sites?
  107. [ubuntu] help reseting passwd
  108. [ubuntu] Deluge wont refresh GUI
  109. [ubuntu] How to activate LFS support in Hardy i386 (32bit)
  110. [ubuntu] Bought a hard drive enclosure but not mounting
  111. [ubuntu] Permissions
  112. [ubuntu] No sound is Zsnes
  113. [ubuntu] programs not working?
  114. [ubuntu] [SOLVED] CONSTANT hard drive activity
  115. [ubuntu] Can't start Firefox with shared profile
  116. [ubuntu] [SOLVED] An easy way to remove KDE apps?
  117. [ubuntu] [SOLVED] Where does kalarm store its data?
  118. [ubuntu] How to free disk space and clear cache
  119. [ubuntu] [SOLVED] Adobe AIR now in beta for linux - but twhirl disappears
  120. [ubuntu] Need help!!!
  121. [ubuntu] [SOLVED] Ubuntu became uglier but much faster
  122. [ubuntu] Ctrl, Alt, Del
  123. [ubuntu] [SOLVED] Volume buttons have stopped working - HELP
  124. [other] NTFS to FAT32 total wipe HELP!!
  125. [ubuntu] add hard disk - what format
  126. [ubuntu] boot loader question
  127. Twin Ubuntus! (Can I kill one of them?)
  128. [all variants] Redirect output from running processes - how?
  129. [ubuntu] ahci causing kernel panic
  130. [ubuntu] Dual booting (Wubi) between Vista and Ubuntu: Ubuntu shows this:
  131. [ubuntu] Get beta now or wait 8 days?
  132. [ubuntu] Xine problems
  133. [ubuntu] [SOLVED] SSH key authentication
  134. [xubuntu] [SOLVED] Is it possible to..
  135. [ubuntu] help needed to uninstall ubuntu 8.04.1 LTS desktop edition!!!
  136. [ubuntu] Installing PyQt/SIP
  137. [ubuntu] Installing Campcaster to Ubuntu Studio 8.04.1
  138. [all variants] DevC++ Alternative
  139. [ubuntu] Gdm amarok xine conflict
  140. [ubuntu] Openchrome instaled now mouse is screwy
  141. [ubuntu] Lock Screen and showing the background desktop
  142. [all variants] How to file a bug against a ppa?
  143. [ubuntu] where ar the files I download going?
  144. [kubuntu] Input/Output Redirection Problems in Terminal
  145. [ubuntu] Avant Window Naviagotr
  146. [ubuntu] Any way of speeding up ubuntu??
  147. [ubuntu] uninstall ubuntu from a dual windows os
  148. [ubuntu] [SOLVED] Unable to start the settings manager 'gnome-settings-daemon'
  149. [ubuntu] openoffice slide distortion (not pics; slides)
  150. LVPM Resize-Help!
  151. [ubuntu] Last update broke Firefox and Pidgin.
  152. [ubuntu] mount mac os x install disc in linux
  153. [gnome] [SOLVED] Window list icons
  154. [ubuntu] [SOLVED] scim doesn't work in gtk apps anymore
  155. [ubuntu] [SOLVED] system sounds and flashsounds on second soundcard, please!
  156. [ubuntu] Need File Browser to open in Full Screen
  157. [ubuntu] Can't start most programs after updates
  158. [ubuntu] I am using Asus P5K-E Wifi/AP motherboard's on board sound.
  159. Wubi Risks
  160. [kubuntu] KDE4 Alt+Tab
  161. [ubuntu] cannot burn iso image
  162. [all variants] Bug reporting??? I find Launchpad hard to follow:(
  163. [ubuntu] Installing OpenSSH 5.1 on Ubuntu
  164. [ubuntu] Compiz Fusion not working anymore in 8.10
  165. [ubuntu] [SOLVED] Remove drum sounds from login.
  166. [ubuntu] Extra Repos?
  167. [ubuntu] Queries about Ubuntu Studio 8.04
  168. [ubuntu] Ubuntu Server Shutdown Settings
  169. [all variants] Wireless USB Skype
  170. [ubuntu] Timeout when sending Evolution email with attachments
  171. [ubuntu] How to duplicate bootable memory stick under ubuntu?
  172. [ubuntu] Utility or cmd to show physical drives?
  173. [other] Password HDD
  174. [SOLVED] Cleartype and Antialiasing for Calibri?
  175. [ubuntu] unwanted reboots
  176. [ubuntu] grub loader error
  177. [other] Live USB for System Tools?
  178. [ubuntu] [SOLVED] Alt Key Problems
  179. [ubuntu] kile quick preview bottom bar...
  180. [all variants] RT Patches with 2.6.27
  181. [ubuntu] Adobe Reader (pdf CMYK colours)
  182. [all variants] /home/userfolder Missing, presumed dead.
  183. [ubuntu] Want to put an Eject icon either on my desktop or the taskbar
  184. [all variants] [SOLVED] Install Ubuntu from USB?
  185. [ubuntu] Printing Paper Size --- Error Letter instead of A4
  186. [ubuntu] Firefox Crashes.
  187. [ubuntu] Weird cube shaped letters
  188. [ubuntu] ssh key problem "host key verification failed"
  189. [ubuntu] Sukodu Error
  190. [other] Migrating to Ubuntu server edition from CentOS, cannot resize centos root
  191. [gnome] Needs gnome/gtk/ubuntu UI for OpenOffice.org 3.0
  192. [ubuntu] Rhg2
  193. [ubuntu] Cant install on VIGLEN MPC-l, kernel panic
  194. [ubuntu] question about rysnc + cron
  195. [other] [SOLVED] default compiz setting for 'initiate window picker' doesn't close windows
  196. [ubuntu] Multiple Desktop Desks
  197. [ubuntu] Java problems
  198. [other] VirtualBox Seamless XP FAIL
  199. [ubuntu] scanner install
  200. [ubuntu] [SOLVED] Why does my computer clock change with Linux?
  201. [ubuntu] Database advice sought: Please explain more about BASE functionality
  202. [ubuntu] My Journey Through Linux.. beginnings
  203. [ubuntu] Boot Liveusb with bootstrap CD??
  204. [ubuntu] Disk Space
  205. [ubuntu] Serial connection not working?
  206. [ubuntu] Alacarte throwing a Python error when I change menu entries
  207. [ubuntu] [SOLVED] Microsoft Wireless Laser Mouse 6000 Side Buttons Not Workign
  208. [ubuntu] Did my hard drive die?
  209. [all variants] ssl certificate with lftp.
  210. [ubuntu] mdadm volumes not persistent after reboot
  211. [ubuntu] AWN won't run.
  212. [ubuntu] Theme keeps reverting back to default Argh!
  213. [ubuntu] How do you mount a SDHC card in a ZEN
  214. [other] [SOLVED] merge 2 computers.
  215. [ubuntu] Low Graphics Mode
  216. [ubuntu] [SOLVED] Panel Menus - Make Transparent?
  217. [ubuntu] Amarok Shortcuts with Multimedia Keyboard
  218. [ubuntu] Fatal: Failed test: texture_from_pixmap support compiz error
  219. [ubuntu] Evolution - Character Encoding / HTML issues
  220. [ubuntu] Array in MySQL
  221. [ubuntu] hardy heron
  222. [ubuntu] Add a Floppy Drive in Hardy Heron
  223. [other] LaTeX question - How do I create a new style?
  224. [all variants] LTSP like server
  225. [xubuntu] Installing *.jar *.jad files into Samsung E250V (E256) with linux
  226. [ubuntu] [SOLVED] GDM locks on boot in kernel 2.6.24-21
  227. [ubuntu] Compiz cube issue
  228. [all variants] Weird LINUX problem.
  229. [ubuntu] Google Earth - blank screen, can't login to server
  230. [all variants] Changing file permissions originating from OS X
  231. [ubuntu] Boot Disk Check Error
  232. [other] Bitchx won't start after removing theme
  233. [ubuntu] Window Placement Issue
  234. [ubuntu] why is my screen screwed up?
  235. [ubuntu] [SOLVED] Kernel Update Problem
  236. [all variants] Why does mdadm detect a Deleted RAID?
  237. [ubuntu] mysql error - ahh
  238. [ubuntu] Error
  239. [ubuntu] Alternative for Tecplot
  240. [ubuntu] A maybe 500GB folder shows as 1117GB when my disk is only 1000GB....?
  241. [ubuntu] Virtual Harddrive Mounting
  242. [all variants] changing the arrow in awn
  243. [ubuntu] Cursor size not consistent between applications
  244. [ubuntu] Scripting help please
  245. [ubuntu] Mysterious Disk Writes
  246. [ubuntu] Lexmark 4200 Series Problems
  247. [all variants] Drivers wiped after crash
  248. [ubuntu] What's a good STABLE dock that looks like Mac os X
  249. [ubuntu] Hardy Heron + ASUS A8V-XE = fail
  250. [ubuntu] Need help with installing Nvidia driver and fixing this in General