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. [all variants] why does ubuntu complains when i create "user.name"?
  2. [ubuntu] sftpd server configuration problem
  3. [ubuntu] FireFox Page size Problem.:(
  4. [ubuntu] Super slow Internet Explorer 9.04
  5. [ubuntu] dzen2 status bar script
  6. [ubuntu] how do i "change" my ip?
  7. [ubuntu] Websites not opening
  8. [ubuntu] Resolution changes after reboot
  9. [ubuntu] Typing on a facebook text box brings cpu usage to 100%
  10. [kubuntu] mount image
  11. [ubuntu] Cannot find CVS
  12. [other_os] Boot hangs at GRUB
  13. [all variants] Compiling a program using g++
  14. [ubuntu] Business Software
  15. [ubuntu] Deleteing Ubuntu
  16. [ubuntu] Issues with my xfce4-keyboard-shortcuts.xml file
  17. [ubuntu] Log out "mount error" message
  18. [ubuntu] Animated Minimize but not Maximize?
  19. [ubuntu] Install Drivers for Ubuntu?
  20. [ubuntu] moving installed packages
  21. [ubuntu] Windows Too Big.:(
  22. [ubuntu] Can't login when press CTRL + ALT + F1
  23. [kubuntu] Massive problems with usability
  24. [ubuntu] tar+gzip source code
  25. [kubuntu] Noob questions-Part 2
  26. [ubuntu] Nautilus tree panel - folders not selectable ??
  27. [ubuntu] Music Box suggestions
  28. [ubuntu] Set maximum user memory allocation
  29. [kubuntu] lost all desktop control
  30. [ubuntu] can't access port 9000
  31. [ubuntu] Accessing Wubi installed Ubuntu
  32. [ubuntu] How To scp, ssh and rsync without prompting for password
  33. [all variants] another awk question
  34. [ubuntu] im trying to mount fallout 3 to no avail
  35. [ubuntu] Wubi won't let me delete files forever
  36. [ubuntu] Update & DL issues from Ubuntu's default setting
  37. [ubuntu] Mounting C:\ drive
  38. [ubuntu] Kindle 2 woes
  39. [ubuntu] ubuntu (normal generic kernel) imaging qustion
  40. [ubuntu] Wireless Problem
  41. [all variants] Vista in virtualbox
  42. [ubuntu] Help with screen resolution!
  43. [ubuntu] How do I get Ubuntu back?
  44. [xubuntu] Xubutnu and FSCK on boot
  45. [ubuntu] Evolution mail filter not working correctly
  46. [ubuntu] Uninstalling Ubuntu(help!)
  47. [ubuntu] Difficulty printing to HP1410 over wireless network
  48. [ubuntu] Problems with Firefox
  49. [ubuntu] Some sort of bug in Compiz Fusion [new laptop]
  50. [ubuntu] MIME types are unrecognized (everything is considered 'text/plain')
  51. [ubuntu] GRUB to boot Vista, Windows 7, and Ubuntu
  52. [other] About User's Data!
  53. [ubuntu] Firefox comes up with a error when i try to go to a webpage
  54. [ubuntu] NetworkManager Missing?
  55. [ubuntu] New to all this and no clue
  56. [ubuntu] Unable to boot Ubuntu following installation of ATI drivers
  57. [ubuntu] questions about bum
  58. [ubuntu] merging files
  59. [ubuntu] New PDF printing system is useless
  60. HOWTO: Fix GPG errors for bad/deleted keys
  61. [ubuntu] OpenOffice.org Writer Text Rendering Problem
  62. [ubuntu] Visual Effects Problem.
  63. [all variants] Lite weight Linux?
  64. [ubuntu] How would I duplicate a bootable USB Flash disk?
  65. [all variants] Does Banshee rename directories/files?
  66. [ubuntu] hulu videos will not play
  67. [SOLVED] My External Drives Won't Show in VLC?
  68. HOWTO: Install Kernel updates on Ubuntu without rebooting! (yay!)
  69. [ubuntu] ettercap
  70. [ubuntu] ACER6920 - Ubuntu 9.04 64bit - Brightness not working
  71. [ubuntu] Shell script wont work at startup, but will work if clicked on in file manager
  72. [ubuntu] CD Burning Difficulty
  73. [ubuntu] problem of connecting to the internet
  74. [ubuntu] Dual Boot Vista and Ubuntu
  75. [ubuntu] screen resolution is too small to fully display a dialog window. Fix???
  76. [ubuntu] No Sound in Wine
  77. [ubuntu] Using all-in-one fax question.
  78. [ubuntu] System Update doesn't get Firefox 3.5x ?
  79. [all variants] Downloading entire directory with wget
  80. [ubuntu] visual effect cant apply
  81. [ubuntu] Kile and Acrobat Reader as default document viewer
  82. [ubuntu] Audio Problems
  83. [ubuntu] 3 questions. (9,04)
  84. [ubuntu] Blender hosed my graphics card
  85. [ubuntu] problem in vnstat!!
  86. [ubuntu] Grub errors abound. Tried various fixes, none worked.
  87. [ubuntu] installing qt!!
  88. [SOLVED] Which Ubuntu version???
  89. [ubuntu] help running a .sh file
  90. [ubuntu] Moved HDs to new computer and now problems.
  91. [ubuntu netbook remix] Netbook Remix 9.04. Touch Screen Calibration Issues
  92. [ubuntu] partition help
  93. [ubuntu] system efficiency!!
  94. [ubuntu] Optimizing CPU Usage
  95. [ubuntu] vnstat!!
  96. [ubuntu] Session - option - Secure Remote Connection
  97. [ubuntu] fstab options different when running mount
  98. [ubuntu] I hope to access infected windows files -
  99. TIP SSD users
  100. [ubuntu] installation tutorial
  101. [ubuntu] Need help making an alias permanent
  102. [ubuntu] Video Problems switching users, Problems logging off
  103. [ubuntu] plz help!!
  104. [ubuntu] Bluepath and ganycontrol
  105. [ubuntu] Are UUID listings in fstab needed for a partition to auto load to the desktop on boot
  106. [ubuntu] Smart q 5
  107. [ubuntu] Recommended Music Players for Jaunty?
  108. [ubuntu] Jaunty problem with ATI HD2600
  109. [ubuntu] Dual boot....
  110. [ubuntu] Unable to install updates!
  111. [ubuntu] svg icons creation??
  112. [ubuntu] Midori browser
  113. [ubuntu] Permission problem with fonts
  114. [ubuntu] Trash automatically deletes
  115. [other] Gnome's cpu freq applet in docker
  116. [kubuntu] i've totally lost my wireless connection.
  117. [ubuntu] Songbird error message and Webcam question
  118. [ubuntu] cant get on windows 7 off grub
  119. [ubuntu] How to disable some standard users
  120. [ubuntu] crashing noob
  121. [all variants] Viewing PDF and PS file in greater than 400% zoom
  122. [ubuntu] ttf-mscorefonts-installer installation help
  123. [ubuntu] I think I overwrote my /etc/modprove.d/options file
  124. [ubuntu] StickAm not working right!
  125. [ubuntu] Firefox 3.5 & Hotkey issye
  126. [ubuntu] I nees a USA free proxy server.....
  127. [ubuntu] Computer froze during installation of acroread
  128. [ubuntu] view gui
  129. [ubuntu] rsync help
  130. [ubuntu] windows data erased
  131. [ubuntu] Cannot login in Ubuntu 9.04 - flashing log in screen and desktop
  132. [ubuntu] Partition full, but not full?
  133. [ubuntu] explanation
  134. [ubuntu] Partition problems
  135. [ubuntu] ssh accept host keys automatically
  136. [all variants] Changing 'default' application
  137. [ubuntu] youtube vids lag in full screen
  138. [ubuntu] wary
  139. [ubuntu] Error when installing/unistalling programs
  140. [ubuntu] how to install GPG key
  141. [ubuntu] Firefox crashes in some pages
  142. [ubuntu] Burning videos to play on dvd player
  143. [ubuntu] Can ubuntu remember what drives are mounted?
  144. [ubuntu] Splitting Ubuntu drive
  145. [ubuntu] disturbing noise from speakers
  146. [ubuntu] Creating a script shortcut?
  147. [all variants] Root password Help
  148. [ubuntu] set firefox3.5.2 back to 3.5.1
  149. [ubuntu] How to revert to standard xorg packages?
  150. [ubuntu] Terminal: Telnet error when using different font
  151. [all variants] Opera Unite automatic startup
  152. [SOLVED] Eclipse Galileo PDT installation issue ?
  153. [ubuntu] 2 conky problems - need suggestions
  154. [kubuntu] [SOLVED] accidentally delete /etc/fstab.. what should i do?
  155. [ubuntu] cannot write to home dir
  156. [wubi] Wubi boot.disk and root.disk have gone!
  157. [ubuntu] Tying multiple terminals to one program?
  158. [ubuntu] Ubuntu 9.04 - Cant Get module to Blacklist
  159. [ubuntu] Failed to check for installed and available applications
  160. [ubuntu] Awstats reports US traffic is first on all webhosts for a belgian server!
  161. [ubuntu] Make Prism open links with FF3.5
  162. [ubuntu] jaunty 9.04 + nvidia twinview + make primary option
  163. [all variants] Grub Help
  164. [ubuntu] I want to be the boss: tracker/locate/sched keep sending me for coffee
  165. [ubuntu] Ping.fm
  166. Boinc on /home to work from each OS
  167. [ubuntu] Uprgades
  168. [ubuntu] https connection was refused
  169. [ubuntu] Thunderbird reply header instructions for windows not working in ubuntu -- help?
  170. [ubuntu] get error message in update Manager
  171. [ubuntu] Churning
  172. [kde] How Can I Resize Lancelot Launcher?
  173. [ubuntu] Extend fsck log
  174. [all variants] Download Help
  175. [all variants] Evolution vs. Thunderbird
  176. [ubuntu] Totem dont work
  177. [ubuntu] comfigure remote desktop viwer
  178. [ubuntu] How To: Setup DOD Common Access Card (CAC) for service portals
  179. [all variants] SQL Question
  180. [all variants] How do i disable Grub?
  181. [all variants] PC-BSD + WinXP + Ubuntu
  182. [ubuntu] New updates -> no cut-n-paste
  183. [ubuntu] Evolution won't connect to exchange server
  184. [ubuntu] What's wrong with my tv display? [with pictures]
  185. [ubuntu] portability of /etc/passwd, /etc/groups, /etc/shadow?
  186. [ubuntu netbook remix] windows too tall for screen
  187. [all variants] fstab, exec on windows partition
  188. [ubuntu] big issues with "no space left on device"!
  189. [ubuntu] Thunderbird loads when resuming from standby
  190. [ubuntu] Resize partition, UUID changes?
  191. [ubuntu] What files are touched by a program?
  192. [ubuntu] Guest Additions on VirtualBox
  193. [kde] Kernel Failure in Fedora11....Why?
  194. [ubuntu] Firefox acting... wierd
  195. [all variants] Boot Manager on Flash Drive
  196. [all variants] zip - issue with large archives
  197. [ubuntu] Video Screen Capturing program?
  198. [ubuntu] Mozilla Prism on system tray - How?
  199. [ubuntu] Lampp error: "Another mysql daemon is already running"
  200. [ubuntu] Booting from USB Flash Drive
  201. [ubuntu] Lightweight for VirtualBox?
  202. [ubuntu] moved to openbox, really pleasent but where did all my mounts go.
  203. [all variants] launcher terminal Q
  204. [ubuntu] 9.04 Shut down Fails
  205. [ubuntu] Using Ubuntu to Backup Windows
  206. [ubuntu] Freeze from time to time
  207. [ubuntu] how can i find how much i have downloaded in the past days? it is important
  208. [other_os] Vista restarts automatically, after installing UBUNTU
  209. [ubuntu] No more blank screen!
  210. [ubuntu] firefox bug!
  211. [ubuntu] Change Dual Boot Order
  212. [all variants] Firefox gnome-vfs related hang
  213. [ubuntu] Can't paste images into Thunderbird message body
  214. [ubuntu] Ogle crashes upon startup/opening of video.
  215. [ubuntu] Fade Timer
  216. [gnome] Nautilus file properties
  217. [SOLVED] Ubuntu 9.04 not shutting down
  218. [all variants] ntfs equivalent
  219. [ubuntu] Undeletable file !!!
  220. [ubuntu] How do you setup a Mail Server with a Dynamic IP?
  221. [ubuntu] Toshiba Satellite and processor Fan.
  222. [ubuntu] Custom size papers on CUPS
  223. [wubi] Downloading stops [ubuntu-9.04-desktop-amd64.iso]
  224. [ubuntu] real iPhone VS. fake iPhone
  225. [ubuntu] fsck error - can I trust the OS now?
  226. [ubuntu] System failure in Hardy 8.04
  227. [ubuntu] WINE problems- test simulation software
  228. [ubuntu] Windows not unmounting Ubuntu drive correctly
  229. [ubuntu] problem with mergelist
  230. [kubuntu] Amarok and Firefox Conflict?
  231. [ubuntu] update manager and syaptic cannot initialize
  232. [ubuntu] Setting virtual terminal resolution
  233. [ubuntu_studio] How to connect new TV to PC
  234. [ubuntu] Shell scripting and apt-get command - how to force "Yes" ( when installing pckgs ) ?
  235. [ubuntu] Anyway to get applets?
  236. [ubuntu] Mouse pointer is a square
  237. [all variants] Editing iso???
  238. [ubuntu] Dual-Booting question.
  239. [ubuntu] Increase Partition Size
  240. [ubuntu] boot hangs for awhile at loading hardware drivers
  241. [ubuntu] Run Application dialog app shortcuts?
  242. [all variants] VirtualBox - USB Doesn't Work.
  243. [ubuntu] Ubuntu based pda's
  244. [ubuntu] Triple boot questions and problems
  245. [ubuntu] shutdown command does not work properly (Jaunty)
  246. [ubuntu] Bochs Development Setup
  247. [all variants] Scripts -- how to cd from a list
  248. [ubuntu] hard freeze after viewing webpage...
  249. [ubuntu] Broken Lamp stack, can't reinstall PHP - HELP
  250. [kde] KDE Theme application