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] Time/Date issues - really strange
  2. [all variants] Help getting T-Mobile WebnWalk working (Using K850i as modem)
  3. [other] opinions of ubuntu ultimate edition
  4. [ubuntu] Compiz corruption, 8.10
  5. [other] OpenOffice Graphics Problem
  6. [all variants] Mjbookmaker
  7. [all variants] What are the neccasity softwares after a new installation/new computer?
  8. [mythbuntu] [SOLVED] Any one tried?
  9. [ubuntu] 8.04 can't upgrade kernel 2.6.24-19
  10. [ubuntu] Backup DVDs on Ubuntu (Not Ubuntu's Fault?)
  11. [ubuntu] i need help with codes
  12. [kde] KDE3 /usr/share/sounds in KDE4
  13. [ubuntu] warp2 -> boot under 3sec
  14. [ubuntu] ubuntu displays doesn't display available disk space with NTFS tool
  15. [kubuntu] List of Codes
  16. Script to report total folder sizes
  17. [ubuntu] Sound on acer aspire one 8.10
  18. [ubuntu] Ever since I installed Ubuntu, this computer turns on by itself sometimes.
  19. [ubuntu] Unable to nfs mount
  20. [ubuntu] Fixing Windows through Ubuntu Live CD
  21. [ubuntu] Screwed up Ubunutu... HELP ME!!!!!!!!!!!!!!!!!!!
  22. [ubuntu] I finaly got here
  23. [gnome] Can't get max widescreen resolution
  24. [ubuntu] Ping keeps going...
  25. [ubuntu] Changing the color of icons?
  26. [ubuntu] Howto edit kde3 settings in gnome?
  27. [ubuntu] how to
  28. [ubuntu] [SOLVED] Windows XP no longer loading thru GRUB
  29. [gnome] Dim display on AC-Power when idle seems to be random
  30. [all variants] WARNING: untrusted versions of the following packages will be installed! OOo3
  31. [other] Bourne Shell - Get Full Path of Script
  32. [ubuntu] Download .deb from apt-get
  33. [ubuntu] list of problems with dell xps m1330, need help
  34. [ubuntu] [SOLVED] GNOME App / Places / System Problem
  35. [ubuntu] Rhythmbox can't access remote files?
  36. [ubuntu] ati 9600 problems
  37. [ubuntu] [SOLVED] Ubuntu boots with drives mounted in read-only mode
  38. [ubuntu] How to handle paths with spaces in nautilus-actions?
  39. [gnome] [SOLVED] Opening Windows (applications) place and size
  40. [other] Palm sync with evolution losing data
  41. [ubuntu] Any ideas?
  42. [ubuntu] VirtualBox OSE and Ubuntu 8.10
  43. [ubuntu] 8.10 No Sudo Password not working
  44. [ubuntu] [SOLVED] Failed to initialize HAL!
  45. [other] Bourne Shell String Replace or Pattern Matching
  46. [SOLVED] Two Things.
  47. [ubuntu] [SOLVED] Very frustrating slowdown and sluggishness
  48. [ubuntu] Is there something changed/wrong with the 'make' command?
  49. [ubuntu] Intrepid font smoothing in Hardy?
  50. [all variants] LVM Woes
  51. [ubuntu] ubuntu and editors
  52. [ubuntu] Compiz will not enable
  53. [ubuntu] Dual boot shortcut
  54. [all variants] Epson Printer CX7400
  55. [ubuntu] Ubuntu Fatally crashes upon trying to Mount discs.
  56. [gnome] How to start gnome from command line?
  57. [ubuntu] Getting Ubuntu to Recognize Headphones?
  58. Wubi installs 100% then crashes
  59. [ubuntu] Un-dual boot
  60. [ubuntu] [SOLVED] want lastlog to track more logins
  61. [ubuntu] Slow updates
  62. [ubuntu] Darkfix for Firefox
  63. [ubuntu] Booting a DIFFERENT OS from USB stick on an Ubuntu system
  64. [ubuntu] desktop cube noob question
  65. [ubuntu] tried giving myself full permission.. goofed up..
  66. [all variants] slow file transfer to sata hdd
  67. [ubuntu] [SOLVED] Can someone suggest an External HD to me?
  68. [ubuntu] Raid0 driver (nForce) for Ubuntu 8.10
  69. [all variants] I made vista partition larger and Linux partition smaller
  70. [ubuntu] Enable Visual Effects
  71. Install stops at checking battery state
  72. [ubuntu] [SOLVED] Getting more recent versions of GIMP and Blender?
  73. [ubuntu] What are the minimum packages required to run Hardy?
  74. [all variants] NTFS partition wrong size
  75. [ubuntu] cpufreq-selector hangs - intrepid
  76. [ubuntu] Tracker going on an indexing rampage
  77. [xubuntu] Low resolutions screens and configuration windows.
  78. [ubuntu] 2 Ubuntu versions + Win XP
  79. [other] [SOLVED] Attaching files
  80. [ubuntu] oh where, oh where have my desktop effects gone?
  81. [ubuntu] Kontact crashes when opening settings
  82. [ubuntu] Libnotify stops working after a while for some programs
  83. [ubuntu] [SOLVED] FStab mounting help
  84. [ubuntu] How can I zip files?
  85. [all variants] using tar xvzf to install a program
  86. [ubuntu] Desktop Effects won't start
  87. [ubuntu] display problems
  88. [ubuntu] kismet not compiling?
  89. [ubuntu] msn messenger file sharing
  90. [ubuntu] Multiple desktops one screen - very weird
  91. [ubuntu] All kinds of issues...really could use some help...
  92. [ubuntu] [SOLVED] Using bittorrent via SSH
  93. [ubuntu] recovering grubb
  94. [other] drop characters from each line of 'tail'ed log file
  95. [ubuntu] GTK: style the window list applet
  96. [ubuntu] Firefox history and bookmark problems
  97. [ubuntu] Conky Stop Text Moving
  98. [ubuntu] Is setting up a Liveboot from an ipod 6G possible?
  99. [ubuntu] My Ubuntu crashed irretrivably but i need the files
  100. [ubuntu] Static IP
  101. [all variants] Is Compiz stable for you?
  102. [ubuntu] Starting programs, executing commands on start-up
  103. [xubuntu] 8.10 - Compiz Fusion just wont work
  104. [ubuntu] Speaker Problem
  105. [ubuntu] Cannot Mount Volume
  106. [ubuntu] How to change key functions?
  107. [ubuntu] Ubuntu 8.1 - Firefox 3.0.4 spelling suggestions?
  108. [ubuntu] Burning Knoppix_v5.3 de.iso failure
  109. [SOLVED] Fullscreen flash videos/movies randomly lag and dither
  110. [ubuntu] Text based system monitor
  111. [ubuntu] Evolution Checks Spelling of All Words as Wrong
  112. [all variants] ntfs-3g mount issue
  113. [ubuntu] Configure ftp to use a particular IP address
  114. [ubuntu] Sound problem with ubuntu 8.10
  115. [ubuntu] [SOLVED] my fstab is gone, cant get into gui now!
  116. [ubuntu] DeSmuMe Won't Start
  117. [ubuntu] New user - windows gone? Say it ain't so
  118. [ubuntu] OpenOffice 3 messes up Firefox
  119. [ubuntu] Problem with Firefox.
  120. [ubuntu] 4870 underscaling/underscan
  121. [ubuntu] How to install programs from a cd
  122. [ubuntu] lost my ubuntu and vista please help
  123. [ubuntu] Odd XP screen flashing at Ibex boot time
  124. [ubuntu] Inability to play media files, DVDs, etc.
  125. [ubuntu] down loading a file to a mapp
  126. [ubuntu] Alt+Tab kill my machine
  127. [ubuntu] Running sudo commands in sessions, what's the best method for me?
  128. [ubuntu] DrJava + Eclipse in Gutsy issue
  129. [ubuntu] I really need Suspend/Hibernate to work
  130. [kubuntu] Help - changing from Ubuntu to Kubuntu
  131. [all variants] [SOLVED] Starting an application from terminal yet "detached"
  132. [all variants] Zen-Sources Kernel
  133. [ubuntu] System crashes in Firefox Intrepid
  134. wireless
  135. CrossOver
  136. [xubuntu] How to modify the LiveCD so that it boots to desktop immediately?
  137. [ubuntu] Re-allocating hard drive space to Windows partition
  138. [ubuntu] [SOLVED] Time Tracker Widget
  139. [ubuntu] Desktop Effects 8.10 nvidia fx5700le 256mb trouble
  140. [ubuntu] converting .rpm to deb
  141. [kubuntu] changeing from ubuntu to kubuntu
  142. [ubuntu] Joining OGV files
  143. [ubuntu] Cloning windows access types in Linux
  144. [ubuntu] Uninstalling Ubuntu
  145. [ubuntu] in what log should I look for...
  146. [ubuntu] trash corrupted in hardy
  147. [ubuntu] Installing Ubuntu help
  148. [all variants] isp capping broadband, help please........
  149. [ubuntu] Right ALT+Back key occasionally not working.
  150. [ubuntu] Disable Graphical Login
  151. [ubuntu] trouble with connecting to wacom bluetooth tablet
  152. [ubuntu] When I install NVIDIA drivers, what exactly is changed so that it boots correctly?
  153. New project: Jim's First Time Script
  154. [ubuntu] Can't modify places in main menu
  155. [ubuntu] Compiz Extra Effects
  156. [ubuntu] Dream Cheeky USB Missile Launcher
  157. [all variants] ushare: multiple folders from command line
  158. [ubuntu] Partition Help Needed
  159. [ubuntu] wvdial help
  160. [ubuntu] Problem loading Ubuntu 8.04
  161. [kubuntu] Make kde panels black
  162. [ubuntu] How to make 1 DVD iso from 4 CD isos?
  163. [all variants] File Permissions (Samba with uTorrent in Wine)
  164. [ubuntu] [SOLVED] 'who' command shows me logged in multiple times
  165. [ubuntu] Need help
  166. [ubuntu] Sudo Nautilus (UbuntuStudio)
  167. [ubuntu] kind of very importand question
  168. [ubuntu] Window Maxized... only half?
  169. [ubuntu] No sound
  170. [ubuntu] Flash bug
  171. [ubuntu] [SOLVED] Kmymoney 0.9.2 reconcile broken?
  172. [ubuntu] disappearing text in menus
  173. [ubuntu] Cannot see any titlebar in any window, including Firefox (Ubuntu 8.10)
  174. [ubuntu] Bridged Network VirtualBox and Host
  175. [ubuntu] [SOLVED] hiding files
  176. [ubuntu] CVS (drug store) Picture Disk and Digital camera bug? Cannot upload...
  177. [ubuntu] no sound capture
  178. [all variants] Using Alt key and Firefox
  179. [ubuntu] Can't Log In to 8.04...
  180. [ubuntu] using previous versions of g++
  181. [all variants] What can be used besides wine to install windows programs?
  182. [ubuntu] deleting bottom panel with gconf/terminal
  183. [ubuntu] help needed to compile ngplant
  184. [ubuntu] annoying desktop movement
  185. [ubuntu] Guest account sees entire administration menu
  186. [ubuntu] [SOLVED] Sd card not showing up in /dev/
  187. [ubuntu] Acer problems need assistance please
  188. [ubuntu] Palm Centro Sync
  189. [ubuntu] [SOLVED] Back up?
  190. [ubuntu] [SOLVED] Ubuntu 8.10 - where is cupsys?
  191. [ubuntu] How do I install a .patch file? (for my wireless NIC)
  192. [kubuntu] Win2K3 Terminal Server & Printing
  193. [ubuntu] [SOLVED] How do I check (Using Terminal) if package/app installed?
  194. [ubuntu] [SOLVED] opengl window weirdness
  195. [ubuntu] Conky weather bug
  196. [ubuntu] network manager is erasing my network mask field
  197. [ubuntu] Controlling a Mac with Ubuntu
  198. [other] Urgent problem with GRUB
  199. [ubuntu] Applets not working for AWN in Intrepid
  200. [ubuntu] Help installing Mesa drivers
  201. [ubuntu] Keyboard shortcuts for metacity/Gnome
  202. [ubuntu] [SOLVED] ctrl S
  203. [ubuntu] problem with desktop effects
  204. [ubuntu] gurb lost my boot file?
  205. [ubuntu] Pulseaudio is a train wreck. Has anyone had success reverting to ESD?
  206. [ubuntu] USB Mouse won't move - Intrepid
  207. [gnome] custom keyboard shortcuts
  208. [ubuntu] VirtualBox 2.04, Ubuntu got IP 10.x.x.x, shared folder not working
  209. [kubuntu] DVD-R mounting issue
  210. [ubuntu] Keyboard suddenly stop working in Opera
  211. GRUB problem...
  212. [all variants] [SOLVED] Transfering files from remote to local over SSH
  213. [all variants] "sudo bash" losing the HOME environment
  214. [ubuntu] USB drives no longer mount and log output
  215. [ubuntu] Can't Start Up XP after Resizing and Install: Ubuntu
  216. [all variants] can't add/edit/delete contact photo after sync with gmail
  217. [all variants] Circular Scrolling on Intrepid (8.10)
  218. [ubuntu] Question
  219. [xubuntu] Gnome-Schedule "Dangerous Parse", not adding tasks
  220. [ubuntu] Program startup help
  221. [ubuntu] AWN Dual Monitors
  222. [xubuntu] Keyboard layout
  223. [ubuntu] alignment / screenlets output box / ubuntu 8.10
  224. [kubuntu] ps2pdf problem
  225. [all variants] Open Office 3.0 vanishing quickstart solution
  226. [ubuntu] speed up resume from hibernate?
  227. [ubuntu] Proprietary Drivers have literally vanished!
  228. [SOLVED] Suggestions for a backup solution...
  229. [ubuntu] Command line: getting all files via http in a remote directory(?)
  230. [ubuntu] Network Setting is not working
  231. [ubuntu] someone please help with mounting a drive
  232. [all variants] Problems booting 2.6.22 kernels on Kubuntu 7.10
  233. [ubuntu] gedit highlight mode for conkyrc
  234. [all variants] Possible deluge bug?
  235. [ubuntu] braserp 0.8.1
  236. [all variants] cannot find -lpcre
  237. [ubuntu] Resizing terminals with wmctrl
  238. [other] Need help changing resolution on Fluxbuntu.
  239. [all variants] Kernel does not build modules anymore
  240. Wubi maximum size
  241. [ubuntu] Swaping ubuntu hdd between machines
  242. [SOLVED] Duel Grub Menus
  243. [ubuntu] Problems localhost/mysql Not Found
  244. [all variants] Is there a simple way to limit network speed?
  245. [all variants] [SOLVED] Conky Battery discharge status is messed up
  246. [xubuntu] Huge letters
  247. [ubuntu] How to improve look of the Fonts in Intrepid.
  248. [ubuntu] installing synaptic programs
  249. [ubuntu] [SOLVED] can I re-install kernel or recover files from live cd?
  250. [ubuntu] Sudden appearance of "soft lockup - CPU#0 stuck for 11s"-induced freezes