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. [xubuntu] system freezes with Synaptic & add/remove
  2. [SOLVED] DualBoot WinXP/Ubuntu : Grub hard disk error
  3. [all variants] Neglected Firefox on Linux
  4. [ubuntu] nohup command
  5. [ubuntu_mobile] start up issues for neophites.
  6. [ubuntu] Question on home folder permissions and sharing!
  7. Migrating Wubi install to external HD
  8. [ubuntu] Change encrypted boot prompt
  9. [ubuntu] How do I get better link quality?
  10. [kubuntu] No sound in Kubuntu 8.04 after kernel recompile
  11. [ubuntu] Dual Screen Games Issue
  12. [ubuntu] Text Disappears!
  13. [ubuntu] Cannot Boot
  14. [ubuntu] Saved playlist doesn't work when moved.
  15. [ubuntu] Postfix Mail Server Configuration
  16. [ubuntu] No "Visual Effects Tab" Preferences>Appearance
  17. [ubuntu] Lose Top & Bottom taskbars in 8.10
  18. [ubuntu] Good real-time backup utility?
  19. [ubuntu] 100% cpu usage from Java ?
  20. [ubuntu] Having set a root password, can I then un-set it?
  21. [all variants] Mutt - Run command on new message
  22. [ubuntu] So I deleted some files from my external harddrive and it didnt free up space...
  23. [ubuntu] Apparmor create profile error
  24. [ubuntu] Ubuntu on an ASUS Eee Top
  25. [ubuntu] Pidgin help
  26. [kubuntu] konsole input problem
  27. [ubuntu] A simple DOSemu question
  28. [ubuntu] Can't find my .Xresources file.
  29. [ubuntu] update errors??
  30. [ubuntu] More than 1 root partition?
  31. [ubuntu] Where is xorg.conf in ubuntu 8.10??
  32. [ubuntu] ipod & videos
  33. [ubuntu] sysytem locked up
  34. [ubuntu] Conky: Display Banshee Album Art
  35. [ubuntu] Just enabled magnifier and stuck in continuous logout
  36. [ubuntu] HELP! My Mouse wheel has stopped controlling my Virtual desktops :(
  37. [ubuntu] help me set up RAID for first time please
  38. [ubuntu] Firefox is not windowed anymore
  39. [SOLVED] X.org + RAM
  40. [all variants] Whiptail inputbox help
  41. [ubuntu] Logitech SBF-96 3 Button Optical USB Mouse
  42. [ubuntu] Enable DRI
  43. [ubuntu] strange problem UDP
  44. A wubi install to a dedicate partition
  45. [ubuntu] Secure Delete Trash
  46. [kde] KDE Compiz
  47. [other] Gimp 2.6 help
  48. [ubuntu] Dual Video Cards to improve performance?
  49. [ubuntu] Help with sudo
  50. [ubuntu] pandora issue
  51. [ubuntu] Intel GEM driver for kernel 2.6.28.5
  52. [other] error partitioning
  53. [other] MBR Disappeared
  54. [ubuntu] firefox save dialog doesn't move to new folder after cretae new folder
  55. [ubuntu] reformatting usb hard drive
  56. [ubuntu] How to open a file using an .exe in Wine
  57. [ubuntu] Cron will now work on its own
  58. [xubuntu] Integrating autologin, VNC ?
  59. [ubuntu] Compfiz Hellraiser Cube
  60. [ubuntu] Adobe Reader
  61. [other] Anyone know of a good emulator for DOS programs?
  62. [ubuntu] Adding a Program to Launch on startup
  63. [ubuntu] sharing music from a NTFS xp partion? is it possible?
  64. [ubuntu] Missing file 'kcmshell4 fileshare', where can I get it from, need to find it quick
  65. [ubuntu] Help me plz!!!
  66. [ubuntu] Installing Ubuntu in my External Harddisk
  67. [gnome] Monitor has no signal!
  68. [ubuntu] Boot Problems
  69. [all variants] [USB] Portable sliming/securing?
  70. [ubuntu] Volume
  71. [ubuntu] Google Desktop VS Gnome-Do
  72. [ubuntu] Updating Firmware for Blackberry
  73. [ubuntu] 7.04 Repositories
  74. [ubuntu] If anyone can help please do!!!
  75. [ubuntu] what do you mean by yast?
  76. [ubuntu] Google Earth 5 startup issue
  77. [ubuntu] Google Earth 5 startup issue
  78. [ubuntu] Webcam.
  79. [ubuntu] Does not resume from sleep
  80. [ubuntu] how to install virtualbox closed version on ubunt? and unistall ose version
  81. [kubuntu] New kubuntu user, completly lost
  82. [ubuntu] Desktop Version dose not have Server control panel ?
  83. [ubuntu] Slowness / hanging gecko apps / X.org eating 90% CPU
  84. [ubuntu] Compiz has problems with resolution 1360x768
  85. [ubuntu] Multimedia keys aren't recognized by xbindkeys
  86. [gnome] tool like scribus to create html page>?
  87. [ubuntu] External HDD stopped mounting automatically
  88. [ubuntu] Cairo-Dock stopped working
  89. [ubuntu] Orange Box games Using Wine (Performance Issues - Unplayable)
  90. [ubuntu] HELP! I'm trapped in a little bitty resolution and can't get out.
  91. [SOLVED] Ubuntu works great till you install updates
  92. [ubuntu] Virtualbox: crackling Sound - VMware: broken sound
  93. [all variants] ext3 data partition
  94. [ubuntu] Ubuntu Server 8.10 (LAMP inst): PHP5 not working
  95. [ubuntu] bash date script: for i in (every sunday)
  96. [ubuntu] Backup Skype configuration
  97. [ubuntu] Cairo-dock crash
  98. [ubuntu] Making copies of important files on a fresh install!
  99. [kubuntu] I can't install IDLE python 3.0?
  100. [all variants] Ubuntu Studio 8.04.2
  101. [kubuntu] Remove kernel module
  102. [ubuntu] Mouse click problem
  103. [all variants] dell latitude c400 boot up
  104. [ubuntu] xp vs ubuntu
  105. [ubuntu] Booting pproblem?
  106. [ubuntu] "z" in keyboard is not working
  107. [kubuntu] How to set ASCII encoding in Kate
  108. [gnome] Autohide panel _completely_?
  109. [ubuntu] Won't load login screen after nvidia-settings upgrade
  110. [ubuntu] Mouse stops working
  111. [all variants] how to show more history in the command line interface
  112. [ubuntu] PCI CardBus Controller
  113. [ubuntu] Boot Management , Usb Capabilities for grub ? ubuntu ?
  114. [ubuntu] Nmap
  115. [all variants] monitor problem
  116. [ubuntu] NTFS partition problem
  117. [ubuntu] Updating menu.lst to current kernel version
  118. [all variants] Frets on Fire 1.3.110
  119. [ubuntu] GUI Launcher Icons - change, find, make your own...
  120. [ubuntu] Windows access to linux file system
  121. [ubuntu] 8.10 server hangs during boot at Configuring Network Interfaces
  122. [ubuntu] :Lexmark x5100 Printer-How do i set it up?
  123. [ubuntu] Change list from 8.04 to 8.10 ?
  124. [ubuntu] I have lost all my firefox bookmarks!!!!!!!!!!!!!!!!!!!
  125. [ubuntu] Ubuntu on bootable USB. With Encryped home.
  126. [all variants] force dc++ to download directly to other partition
  127. [ubuntu] Google Earth not working in 8.10
  128. [ubuntu] usb
  129. [ubuntu] radeon 9200SE not showing up
  130. [ubuntu] Clean House
  131. [ubuntu] compiling code for utf8 big endian support
  132. [ubuntu] vino server help
  133. [ubuntu] Won't go into suspend / lose network + tvcard
  134. [all variants] libc6 won't install
  135. [ubuntu] Screensaver app
  136. [ubuntu] sudo and su
  137. [ubuntu] GRUB help
  138. [ubuntu] ttys are blank on ubuntu 8.10 64bits
  139. [kubuntu] System SUSPEND (to disk & ram) DISABLED after update
  140. [ubuntu] Cannot install any packages anymore!
  141. [gnome] Add/Remove GNOME DO docky , the proper version is missing !
  142. [ubuntu] Program for drawing ascii art?
  143. [all variants] usb mouse freezes upon restart
  144. [ubuntu] Samba not assigning proper permissions.
  145. [ubuntu] Samba - Intrepid - Windows Vista
  146. [ubuntu] Multiple Disc install in Wine [QuickVerse 2005]
  147. [ubuntu] bug in console resizing, ubuntu 8.04 guest on vmware 2.0.0 on Windows XP
  148. [ubuntu] no sounds after disabling Xorg autostart
  149. [ubuntu] pidgin
  150. [ubuntu] old problem and still is ....[no wifi ]
  151. [ubuntu] Unetbbotin Live CD 8.10
  152. [ubuntu] Need help booting up with vesa.
  153. [ubuntu] fsck.ext3: Device or resource busy while trying to open /dev/sda5
  154. [gnome] Gnome terminal problems
  155. [all variants] Working with possible schedule combinations
  156. [ubuntu] problem installing b43- wifi
  157. [ubuntu] ProFTPd HELL!!!
  158. [ubuntu] Proxy for kTorrent???
  159. [kubuntu] CompizFusion rain & lock session
  160. [ubuntu] apache2 anonymous issue
  161. [ubuntu] Impression Theme
  162. [ubuntu] How can I change recently-used.xbel back to a file from a directory?
  163. [ubuntu] Vlc and YouTube
  164. [ubuntu] iDeaS emulator not opening
  165. [ubuntu] XMMS2 issue
  166. [ubuntu] Need a command-line "site crawler"
  167. [ubuntu] Undervolt optimizer hits 0 then stops
  168. [ubuntu] FireFox stops saving my settings at random
  169. [ubuntu] how to restart a startup script process
  170. [ubuntu] Open Xchange and Evolution
  171. [ubuntu] perfect dual boot computer?
  172. [ubuntu] Cache out of control?
  173. [ubuntu] Would there be any adverse effects if I installed 32bit ubuntu on my 64bit machine?
  174. [ubuntu] Resolution help
  175. [ubuntu] Applications, Places System menu has disappeared
  176. [ubuntu] sh or bash - is there a differance?
  177. [all variants] Pb using gtkwave
  178. [ubuntu] Auto-Mounting On Startup
  179. [ubuntu] Composite extension not available...
  180. [ubuntu] My fstab doesn't like Windows 7...
  181. [ubuntu] HOWTO: Preserve workspaces for certain windows between compiz and metacity
  182. [ubuntu] resolution issue
  183. [all variants] Mount phone card with space in label ?
  184. [gnome] how can i attemp this?
  185. [ubuntu] Kdenlive starts up then closes
  186. [all variants] Is it ok for linux to write to NTFS?
  187. [ubuntu] cairo-dock error
  188. [ubuntu] Kernel compile error in adding new system call can't find standard c library stdio.h
  189. [ubuntu] aperture beyond 4gb. Ignoring
  190. [ubuntu] Icons help
  191. [ubuntu] Gnome UI behavior!
  192. [ubuntu] ISO mount program
  193. [ubuntu] not working for me
  194. [ubuntu] Please Help-- Cannot Mount Internal Hard Drive
  195. [ubuntu] xauthority issue.. WON"T LET ME ENTER ROOT!
  196. [ubuntu] World of Warcraft help
  197. [ubuntu] No Audio on new Aspire One 10inch (D150) 9.04
  198. [ubuntu] Gtkpod help!
  199. [ubuntu] how can i get my screeen back to normal
  200. [ubuntu] Gaim 1.5
  201. [ubuntu] Need to Trick Ubuntu
  202. [ubuntu] Problem after trying ubuntu without installing?
  203. [ubuntu] umask on a directory
  204. [ubuntu] How to Install Eclipse Zend PDT?
  205. [ubuntu] Who Said Ubuntu Was a Resource Hog?
  206. [ubuntu] frets on fire
  207. [ubuntu] Remove "Revert to previous version..." from Nautilus right click menu?
  208. [ubuntu] I dont even know what to title this...
  209. [ubuntu] Nostromo n52 Gamepad not working since upgrading to Ibex
  210. Help please?
  211. [ubuntu] Extremely loud login sound
  212. [ubuntu] Firefox hangs when clicking text in Gmail
  213. [ubuntu] Standby does not work in Ubuntu Intrepid, but instead shuts down the computer
  214. [ubuntu] How can I turn off ALL the sound effects?
  215. [ubuntu] SDL + Pulseaudio = choppy sound
  216. [kubuntu] Opening Attachments Evolution Email
  217. [all variants] Download Manager questions
  218. [ubuntu] msttcorefonts offline install
  219. [gnome] GDM mockup possible?
  220. [ubuntu] Website wont load up properly in Firefox.
  221. [ubuntu] Help enabling Visual Effects
  222. [ubuntu] Adding Wine program launchers to AWN bar
  223. [ubuntu] Palm Zire 31 connects but doesn't sync
  224. [gnome] mouse changing desktops
  225. [ubuntu] FreeNX user login issue
  226. [ubuntu] having Audacious issues.
  227. [ubuntu] How Do I Create A Custom Application Launcher To Start Lampp?
  228. [ubuntu] Java 1.4 Installation
  229. [ubuntu] Installing Global menu - No Package Exists
  230. [ubuntu] Openoffice Impress 'Font Effects - Outline' jagged (not anti aliased) on full screen
  231. [ubuntu] Is it possible to get conky in only one workspace?
  232. [ubuntu] Machine becomes unresponsive
  233. [ubuntu] mousi
  234. Major eeebuntu trouble with GRUB/Unetbootin
  235. [ubuntu] skype question
  236. [ubuntu] Stop ATI changing video resolution
  237. the documentation
  238. [kubuntu] Screen wont stop flashing
  239. [ubuntu] Config file for compiz settings in Ubuntu?
  240. [ubuntu] System Shutdown timer
  241. [ubuntu] Adding more to CDs
  242. [ubuntu] Problem with CRON
  243. [ubuntu] How do you change the default text editor?
  244. [other] Super Grub Disk
  245. [ubuntu] X61 LCD Brightness will not adjust
  246. [kubuntu] Upgrading from 6.10 to latest release
  247. [ubuntu] synaptics search not working?
  248. [ubuntu] AWN Notification Daemon
  249. [ubuntu] grub menu.lst disappeared after windows installation
  250. [ubuntu] Can't get NTP to work