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] [SOLVED] Keyboard not working, WiFi disconnected, and more problems.
  2. [ubuntu] VirtualBox
  3. [ubuntu] How to use Wine to access Windows XP?
  4. [ubuntu] alarm clock applet
  5. [all variants] merging cells in openoffice spreadsheet
  6. [ubuntu] Wine....
  7. [kubuntu] [SOLVED] How to permanently mount HPFS/NTFS?
  8. [ubuntu] New Home Partiton now a Nightmare - please help.
  9. [ubuntu] ubuntu as file server.....
  10. [ubuntu] ssl + apache2 to access subversion problem
  11. [ubuntu] [SOLVED] I messed up my video settings can anyone help?
  12. [kubuntu] [SOLVED] Can't get mail, how can I find the problem?
  13. [xubuntu] much frustration and anger =/
  14. [all variants] [SOLVED] Terminal command help
  15. [ubuntu] Ubuntu won't even boot
  16. [ubuntu] Insufficient permissions for opening some CDs
  17. [other] Partition
  18. uninstalling
  19. [kubuntu] Slected compiz fusion effects don't work
  20. [other] [SOLVED] OOPS! accidental parted mklabel on wrong drive
  21. [ubuntu] Trying to get my flash card to work...apparently I have several issues.
  22. [ubuntu] Trouble with Compiz-Fusion in Ubuntu 7.10
  23. [ubuntu] Possible to use different window decorations for different apps?
  24. [ubuntu] capturing rtsp stream and pipe it to /dev/video1
  25. [ubuntu] Pass sound from virtual ubuntu box to hosted on XP
  26. [ubuntu] BusyBox v1.1.3: How do I get passed it?
  27. [ubuntu] java 5/6 versions and eclipse and firefox3 plugin
  28. [ubuntu] Printer sometimes unavailable
  29. [ubuntu] update problems
  30. [ubuntu] package installation
  31. [ubuntu] Ubuntu 8.04 random 'log out' crash
  32. [ubuntu] To get passed Busy Box?
  33. [ubuntu] ubuntu and XP not discovering disk drives
  34. [other] multicast routing in iptables?
  35. [kubuntu] Driver Manager thingy...
  36. [ubuntu] Need help getting cron to mail my backup for me
  37. [gnome] gnome SlideShow Desktop creater
  38. [kubuntu] The Clock is wrong...
  39. [ubuntu] Reading Chinese/Japanese filenames in Ubuntu Server
  40. [ubuntu] A (hopefully simple) Colour related problem.
  41. [all variants] [SOLVED] Bash script: how to display rows which appears only ones in file?
  42. [ubuntu] System crash when using torrents
  43. [ubuntu] Compiz on hardy, Issues with Netbeans
  44. [all variants] Quick easy VPN?
  45. [other] Busybox!!!!!!!!!!!!!!!!!!!!!!
  46. [xubuntu] [SOLVED] spellcheck doesn't recognise british
  47. [ubuntu] Am i a moron?
  48. [ubuntu] cairo dock warning : (cairo-dock-keybinder.c:cd_keybinder_bind:301)
  49. [all variants] [SOLVED] Mount RAM as disk
  50. [xubuntu] is this bad?
  51. [all variants] [SOLVED] Can Grub recognize WinXP automatically?
  52. [all variants] [SOLVED] How can I download .debs from the repos?
  53. [ubuntu] Some problems with Ubuntu
  54. [ubuntu] [SOLVED] Recovering deleted and/or corrupt data from NTFS?
  55. [ubuntu] Problam with locales
  56. [ubuntu] gnome terminal randomly crashes
  57. [ubuntu] Need to clean up the system an other various problem of Hardy Heron installation.
  58. [ubuntu] A Gnome-mag problem
  59. [ubuntu] Audio Issues, Intel HDA/Plantronics USB
  60. [ubuntu] AWN wont stay
  61. [ubuntu] Something like Yep?
  62. [ubuntu] Gparted Live USB & Syslinux
  63. [ubuntu] Change the terminal used by Hugin
  64. [all variants] vmgl
  65. [ubuntu] [SOLVED] Does someone know how to fix Grub error 22?
  66. [ubuntu] [SOLVED] Gimp won't open anything from the internet
  67. [ubuntu] gui control panel for intel graphics
  68. [other] A/A USB Connection
  69. [ubuntu] PDF to OpenOffice Conversion with Diacritic Signs
  70. [ubuntu] Enable Romaming mode? Static IP issue on brand new installation
  71. [ubuntu] too much ram usage
  72. [ubuntu] Partition marked as unallocated space
  73. [ubuntu] Please help with wireless connectivity at school
  74. [ubuntu] [SOLVED] Printer prints every other page.
  75. [ubuntu] Change Temperature which fan turns on
  76. [SOLVED] Looking for a script to open Nautilus as Root
  77. [ubuntu] [SOLVED] word processor problem
  78. [ubuntu] can't get into ubuntu
  79. [ubuntu] [SOLVED] Looking for a script to open Nautilus as Root
  80. [ubuntu] [SOLVED] Only 200mb memory... Increase swap file for better performance?
  81. [ubuntu] [SOLVED] Copying locked files
  82. [ubuntu] Installing DVD2HDD in Ubuntu 8.04
  83. [ubuntu] OpenOffice 3.0 install
  84. [ubuntu] Power Issues
  85. [ubuntu] Pidgin? And MSN???
  86. [ubuntu] change permissions
  87. [all variants] [SOLVED] spawn command
  88. [ubuntu] updated windows jump between workspaces
  89. [all variants] Can't install Vdrift
  90. [ubuntu] Debug HID module : How??
  91. [ubuntu] kernel problem need help?
  92. [all variants] Steal icon from WINE application
  93. [ubuntu] [SOLVED] cannot ad new tasks in tbird/lightning
  94. [ubuntu] can't see mount point
  95. [ubuntu] One install handles firefox plugins differently, spec. Smart Bookmarks Bar
  96. [ubuntu] Back up files from live CD
  97. [ubuntu] Now I can not connect to internet help me
  98. [ubuntu] Mounting IPOD
  99. [ubuntu] [SOLVED] cannot add new tasks in tbird/lightning
  100. [ubuntu] Suspend not working
  101. [ubuntu] iphone and linux
  102. [ubuntu] Suspend Button doesn't appear on my desktop
  103. [ubuntu] <deleted>
  104. [ubuntu] VMware and Ubuntu
  105. [all variants] Nice Alternatives for KDE and Gnome?
  106. [ubuntu] [SOLVED] Importing thunderbird emails to evolution
  107. [ubuntu] nautilus doesn't start / ubuntu going crazy on me
  108. [ubuntu] VMWare, Ubuntu and VNC remote issue with keyboard layout (norwegian)
  109. [ubuntu] No Sound (PCM ?)
  110. [kubuntu] Java problem (firefox, azureus)
  111. [ubuntu] apache2 - redirect http to https
  112. [ubuntu] xorg issue?
  113. [gnome] [SOLVED] Export from evince (pdf reader)
  114. [ubuntu] No ntfs
  115. [all variants] How to marge disk partitions in ubuntu
  116. [other] GRUB Issue Fedora 9 Windows Vista Dual Boot
  117. [ubuntu] Customizing Ubuntu Problems
  118. [ubuntu] [SOLVED] Two KDEs??
  119. [ubuntu] logitech quickcam deluxe for note books problem in ubuntu 7.10
  120. [ubuntu] ATI dual monitors of different sizes
  121. [ubuntu] (ATI) dual monitors with right (second) desktop as primary
  122. Need help teaching UBUNTU Linux!!
  123. [ubuntu] Cannot Print Anything on Hardy
  124. [ubuntu] Installing aMSN skins and plugins
  125. [ubuntu] [SOLVED] Internet connection problem, help!
  126. [ubuntu] Ubuntu refuses to shutdown
  127. [ubuntu] Runescape 2 Private Server HELP!!!
  128. [ubuntu] [SOLVED] How to make panel bar be semi-transparent
  129. [xubuntu] pdf viewer and best instant messenger?
  130. [other] Correct DPI Setting @ 1920x1080?
  131. [xubuntu] How to change time from Military???
  132. [kubuntu] logging out freezes the system
  133. [ubuntu] Making a full time cut to Linux desktop...suggestions?
  134. [other] [SOLVED] terminal control volume
  135. [ubuntu] iPod Touch
  136. [ubuntu] how to divide my hard drive?
  137. [ubuntu] [SOLVED] full hard drive
  138. [other] Can i have AMP (apache mysql php) under BusyBox ?
  139. [xubuntu] Hugin feezing on Xubuntu 8.04
  140. [ubuntu] No sound in virtualbox ose
  141. Capture and Deploy Bual-Boot Image
  142. [ubuntu] Firefox Hotkey problem?
  143. [ubuntu] Sun Java browser plugin on amd64
  144. [ubuntu] LInux DC help
  145. [ubuntu] Tab Completion with gnuplot
  146. [ubuntu] Ubuntu being all weird on me =[ problem with GuildWars
  147. [all variants] Let an application to run after llogout
  148. [ubuntu] linux-headers uname -r couldn't be found
  149. [ubuntu] Blackberry Question
  150. [other] (Compiz) Burning fire on menus
  151. [ubuntu] many segfault error
  152. [ubuntu] Unable to reinstall packages list using dpkg
  153. [ubuntu] Completely remove deleted data
  154. [ubuntu] the "right way" to do file permissions?
  155. [gnome] The panel encountered a problem....
  156. [all variants] [SOLVED] Goal!
  157. [ubuntu] ltsp login problme (and it's not ltsp-update-sshkeys)
  158. [ubuntu] spell check multiple text documents
  159. [ubuntu] Installing Bonic
  160. [ubuntu] Move partitions
  161. [ubuntu] [SOLVED] Nautilus Error while moving photos to a folder
  162. [all variants] [SOLVED] Authentication problems with 3rd party repos
  163. [ubuntu] ubuntu noob with resolution probs
  164. [ubuntu] Preloading certain apps of my choice
  165. [kubuntu] [SOLVED] How can I know what version of kubuntu I am using?
  166. [other] Tag Specific RSS Feed
  167. [ubuntu] commands
  168. [ubuntu] Keyboard shortcuts
  169. [ubuntu] Gyach 1.1.48 autogen problem
  170. [ubuntu] All music was suddenly moved to Trash?!
  171. [ubuntu] [SOLVED] Need help with Adobe Flash Player installation
  172. [ubuntu] Photoshop CS3 Extended
  173. [other] help installing Debian
  174. [other] Need confirmation with all the windowing terms...
  175. [ubuntu] My session suddenly terminates without warning
  176. [all variants] moveing an extended pation to the primary
  177. [kubuntu] looking for an archive manager with gui that supports...
  178. [ubuntu] [SOLVED] /usr/bin/compiz.real (core) - Fatal: No GLXFBConfig for default depth, this
  179. [ubuntu] Update Manager - Error
  180. [ubuntu] Multiple Work space help!!!
  181. Busybox after Wubi 8.04.1 Installation
  182. [ubuntu] Middle mouse button stopped working
  183. [all variants] Different startup scripts for different users/sessions
  184. [gnome] Abstract Title Bar placement
  185. [ubuntu] how do i uninstall kiba-dock in 8.04
  186. [ubuntu] Hash Sum mismatch, What to do?
  187. [ubuntu] add/remove programs freezes, as does update manager
  188. [other] Pidgin--complete newbie question about protocols
  189. [kubuntu] Help accessing user accounts
  190. [ubuntu] Audacity with Audigy 2 ZS problem
  191. [ubuntu] [SOLVED] Problem Shutting Down / Restarting
  192. [ubuntu] Need help with WN111 Netgear USB wireless adapter
  193. [ubuntu] 804.LTS certified on T2000?
  194. [ubuntu] Help Please?
  195. [ubuntu] conky: current CPU frequency?
  196. [ubuntu] Memory usage very strange
  197. [ubuntu] Google Docs offline access halfway working
  198. [ubuntu] Too many open files.
  199. Problems uninstalling
  200. [ubuntu] iPhone Tether to Ubuntu?
  201. [all variants] Simple Backup Modifies Destination
  202. [kubuntu] strange case behavior
  203. [ubuntu] How to install this driver?
  204. [ubuntu] Squid 3.1 Transparent Proxy
  205. [ubuntu] CTRL TAB equivelent?
  206. [ubuntu] Web based download manager
  207. [ubuntu] Grub won't boot default entry
  208. [other] Ubuntu 8.10 question
  209. [SOLVED] Install 8.04 64 bit on drive that now has XP with 2nd drive Ubuntu 32 bit
  210. [ubuntu] Help using built in microphone with Skype.
  211. [ubuntu] Startup sound hiss
  212. [ubuntu] finding application that causes high iowait [not firefox]
  213. [ubuntu] Lampp installation Help please
  214. [ubuntu] [SOLVED] restore a few days?
  215. [ubuntu] google earth and flashing screen
  216. [ubuntu] Screen resolution reverts back
  217. [ubuntu] X windows crashes
  218. [ubuntu] How to: Ubuntu and Windows on the Same Hard Drive
  219. [ubuntu] Cant get rid of the choose OS to boot message after live CD
  220. [ubuntu] Downloading UBUNTU?
  221. [ubuntu] Groups
  222. [ubuntu] Dual Boot Help!
  223. [ubuntu] Does AWN's lastfm applet work?
  224. [ubuntu] Trouble with missing or currupt packages
  225. [ubuntu] Newbie with error problem
  226. [ubuntu] Removing GUI
  227. [ubuntu] System Freezing
  228. [ubuntu] [SOLVED] PulseAudio Problems
  229. [ubuntu] OpenOffice 3 icon
  230. [xubuntu] persistant live usb clone?
  231. [ubuntu] Launcher to start service
  232. why ubuntu-8.04.1 hang when reboot
  233. [ubuntu] Help getting wine 1.1.2
  234. [ubuntu] [SOLVED] Difference between apt-get and aptitude?
  235. [ubuntu] Login Window is At a Really Bad Resolution
  236. [ubuntu] [SOLVED] Conky
  237. [xubuntu] Viewing Battery Information
  238. [ubuntu] Migrating to Ubuntu Studio using the DVD
  239. [ubuntu] Emerald doesn't work
  240. [ubuntu] Missing Firefox Icons
  241. [ubuntu] Aptitude Blocked after install language-pack-es-base
  242. [ubuntu] trying to install phun on v.8.04
  243. [ubuntu] Cannot Access Hard Drives
  244. [ubuntu] Open Office Tool Tips
  245. [ubuntu] Unable to Update?
  246. [ubuntu] Vista. Ubuntu and Samba
  247. [ubuntu] How to remove gimpshop
  248. [all variants] Resolution does not return to standard after exiting program
  249. [ubuntu] Ubuntu 8.04 login slows to a crawl, hdd spinning mad
  250. [ubuntu] Enable graphic Login screen