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] Xubuntu won't load or reinstall
  2. [ubuntu] Automatically Load Specified Partition
  3. [SOLVED] Problems with adding a user named "admin"
  4. [xubuntu] Freezes during Synaptics Package Install
  5. [gnome] Rotate PDF
  6. [ubuntu] Need help with monitor
  7. [ubuntu] Error 13 after update.
  8. [ubuntu] Have a strange problem
  9. [ubuntu] How to wipe ubuntu partition?
  10. [all variants] apt broken: files list contains empty filename
  11. [ubuntu] MeMaker avatars scaled poorly
  12. [ubuntu] Proxy problem to access internet with browser
  13. [ubuntu] HELP with a sony Vaio
  14. [ubuntu] Someone please explain this
  15. [ubuntu] Logical Names of Mounted Partitions
  16. [kubuntu] is it safe to run win system restore with linux installed?
  17. [all variants] Locked partitions!!!!
  18. [ubuntu] Moving from Ubuntu to Kubuntu
  19. [ubuntu] Home Server - To VM or Not
  20. [all variants] ~<dir> system wide shortcuts
  21. [SOLVED] Plasma Python Widget manual installation
  22. [ubuntu] "you are not the owner so you can't change these permissions"
  23. [ubuntu] limit ls to only 1 return
  24. [ubuntu] changing tomcat6 port
  25. [kubuntu] turn off kopete notifications
  26. [ubuntu] Daemons that affect power
  27. [ubuntu] how To increase ram size
  28. [ubuntu] After intalling Virtualbox and python2.3, only command line mode
  29. [ubuntu] Controlling Notifications in Jaunty
  30. [all variants] how do you know what X extensions are available?
  31. [all variants] amd turion heat
  32. [ubuntu] how not to show directories with ls?
  33. [ubuntu] How to open an ip in ubunto
  34. [SOLVED] read console output of tty7
  35. [ubuntu] Manually download vlc
  36. [all variants] Usplash isn't changing...?
  37. [all variants] Launch icon command in terminal window
  38. [ubuntu] AM_GLIB_GNU_GETTEXT not found
  39. [ubuntu] Can't read data from Pioneer DVR 108
  40. [xubuntu] Network: device not managed
  41. [all variants] Netbook Remix - now or the 23rd ???
  42. [ubuntu] How to change Drive in terminal?
  43. [ubuntu] Problems with BenQ FP202W LCD screen
  44. [ubuntu] miro and network
  45. [ubuntu] ubuntu distribution 9.04
  46. [ubuntu] emesene log size
  47. [all variants] How do I get tomcat to work on port 80?
  48. [ubuntu] I'm almost afraid to ask what I just did...
  49. [ubuntu] save selection to html
  50. [ubuntu] Qemu
  51. [ubuntu] is there any download manager?
  52. [ubuntu] John the ripper
  53. [other] backtrack 3
  54. [ubuntu] DVD burning problems in 8.10
  55. [ubuntu] nvidia fonts problem
  56. [ubuntu] connecting to server remotely using putty?
  57. [ubuntu] How can I solve this Problem
  58. [ubuntu] Fix Screen Resolution in Jaunty
  59. [ubuntu] Printers via Samba
  60. [ubuntu] Help with 'Partitioning"
  61. [ubuntu] no sound
  62. [ubuntu] I am a noob in need of help
  63. [ubuntu] Help me please!!! Its urgent
  64. [ubuntu] Disk Usage Analyzer Wrong
  65. [all variants] bash completion with aliases?
  66. [ubuntu] Suspend Problem
  67. [ubuntu] GRUB Error 17 :'(
  68. [ubuntu] Howto convert binary file to ASCII
  69. [ubuntu] compiz messes with screenshots and media player
  70. [ubuntu] Cant Access Seconday Hard Drive - Noob Question
  71. [ubuntu] Does deleting partition change designation of other partitions?
  72. [ubuntu] Questions about Grub
  73. [ubuntu] Toolbar with no Icons
  74. [ubuntu] cant start mercury messenger in 904rc...
  75. [ubuntu] where to download yahoo messenger?
  76. [ubuntu] Host own domain name FREE
  77. [ubuntu] how to enable sound on click?
  78. [ubuntu] How to get this background
  79. [ubuntu] Can't repartition drive!
  80. [other_os] Debian lenny bootup, dropped to a shell.
  81. [ubuntu] ATI Catalyst 9.4 + Compiz to slow
  82. [ubuntu] Systems locks up after switching virtual desktops
  83. [ubuntu] No such file or directory
  84. [ubuntu] Windows mobile
  85. [ubuntu] using lp command to print a web page
  86. [ubuntu] Empty Boxes instead of Letters
  87. [ubuntu] Resolution is to low
  88. [ubuntu] Every time i enter disk desktop file dissapears
  89. [ubuntu] Upgrading to a new Hard Drive.
  90. [ubuntu] Enabling Beryl on Dell Vostro 1510
  91. [ubuntu] swap file overkill?
  92. [ubuntu] desktop launcher exec not working
  93. [ubuntu] cube wont rotate on middle mouse
  94. [ubuntu] I really need your help...
  95. [ubuntu] Ubuntu 1 Time Crash to BusyBox on Boot and Problem that Makes me say WTF.
  96. [mythbuntu] video-source link to windows share
  97. [ubuntu] How to install themes??
  98. [all variants] Why "write failed" when merely blanking dvd+rw?
  99. [ubuntu] About Shell Scripting
  100. [all variants] Machine locks up when copying lots of files
  101. [ubuntu] Out of disk space + "Some contents not readable" in /var
  102. [ubuntu] network manager not showing in corner
  103. [ubuntu] Ubuntu Netbook Remix
  104. [ubuntu] Open Office
  105. [ubuntu] stupid ?
  106. [ubuntu] what is the difference
  107. [kubuntu] drive encryption error
  108. [ubuntu] Synce Error and synce-pls weird behaviour
  109. [ubuntu] How to share?
  110. [all variants] Alternative to mc for FTP client under CONSOLE (no X)
  111. [gnome] gnome-terminal new tab path
  112. [ubuntu] trying to install operating system .ISO FROM my ipod
  113. [ubuntu] I tryed to instal ubuntu on my windows computer - crashed
  114. [xubuntu] Zip drive doesn't write immediately
  115. [ubuntu] VirtualBox with XP, need to move files!
  116. [xubuntu] Failed to eject "Floppy Drive"
  117. [ubuntu] how do i tell if i am in kde or gnome for 8.10
  118. [ubuntu] Several critical problems in Jaunty 9.04
  119. [mythbuntu] samba, mythtv, input/output errors
  120. [ubuntu] Removing Windows
  121. [ubuntu] Firefox Freezes - Opera Doesn't Like WebCT
  122. [ubuntu] Managing Startup Splashes in 8.10
  123. Someone help with the update notifier icon.
  124. [ubuntu] Microsoft-ds
  125. [ubuntu] eog won't open
  126. [ubuntu] Torrent software with timer
  127. [ubuntu] Tangerine on Jaunty
  128. [ubuntu] File system using aufs on usb flash drive
  129. [ubuntu] Customizing login screen?
  130. [ubuntu] how do i get my ipod to be READ as a CD/DVD
  131. [ubuntu] Restoring GUI boot
  132. [ubuntu] Installing without cmake
  133. [ubuntu] VPN says on, but no actions possible
  134. [ubuntu] migrating evolution inbox contents to new install
  135. [all variants] Portable OS and internet tracks
  136. [all variants] Will 9.04 be worth upgrading to?
  137. [ubuntu] C Script, Count current users and display lowest count
  138. [ubuntu] Help on copying hard disk?
  139. [ubuntu] password for deleting trash?
  140. [all variants] Intel driver 2.7.0: possible?
  141. [ubuntu] creating new users with same settings
  142. [ubuntu] How can I give a user permission
  143. [ubuntu] NAS Permissions
  144. [ubuntu] biolab simulation
  145. [ubuntu] Put GRUB on seperate partition
  146. [ubuntu] Help with grub
  147. [other] Spoof Ipod MAC Address?
  148. [ubuntu] Reboot automatically
  149. [ubuntu] My time program acts strange
  150. [other] what the f*** do i do with a dead hdd???
  151. [SOLVED] Permissions to read directory contents
  152. [ubuntu] Ubuntu Partner Repo Doesn't Work on Jaunty 64
  153. [ubuntu] can't access large directory on an NTFS external hard drive
  154. [ubuntu] I don't find the usb-serial.h????help!!!!!!!!!!!!!!!
  155. [ubuntu] problems doing partial upgrades
  156. [ubuntu] help with pe builder type program
  157. [xubuntu] How do I use sudo in GUI on the xfce environment?
  158. [ubuntu] General question
  159. [all variants] Under Heavy Load
  160. [ubuntu] im new to ubuntu need help
  161. [xubuntu] Xubuntu Jaunty Beta
  162. [ubuntu] checksum mismatches
  163. [ubuntu] Installing Ubuntu 8.04 on Acer Aspire One AOD150
  164. [ubuntu] Noob Guide?
  165. [xubuntu] not recognizing IDE Hard disk
  166. [all variants] whats the difference...
  167. [ubuntu] Installing Ubuntu 8.04 on Acer Aspire One AOD150
  168. [ubuntu] Another syncing problem with Barry
  169. [ubuntu] screen resolution problems
  170. [ubuntu] Mounting Hard drive help.
  171. [ubuntu] Is tcp port 4242 a trojan?
  172. [ubuntu] Installing Ubuntu problems [Newbie]
  173. [ubuntu] Wubu work if Windows is borked?
  174. [ubuntu] open a .rar file?
  175. [kubuntu] Problem with cd command
  176. [gnome] Start main menu from terminal
  177. [other_os] Bios issue...
  178. [ubuntu] "Status" fie in dpkg corrupted?
  179. [all variants] Jaunty 9.04 Final - Which NVIDIA 180 version is included?
  180. [ubuntu] Administrative Password Problem
  181. [ubuntu] i have a CD-RW/DVD+RW drive... BUT I CAN'T BURN DVD'S?!?!?!? HELP!
  182. [ubuntu] ps2 mouse doesn't work
  183. [ubuntu] Bugzilla help
  184. [ubuntu] Exactly What is In The New Ubuntu
  185. [other] not entirely Ubuntu-related, but...
  186. [ubuntu] Installing 8.10/9.04 with old nv driver
  187. [ubuntu] Fancy looking GRUB?
  188. [ubuntu] Open Office Word prints the printing program
  189. [ubuntu] Need help with Conky
  190. [all variants] dual boot?
  191. [ubuntu] CPU frequency scaling unsupported 9.04
  192. [ubuntu] map software ie street atlas
  193. [ubuntu] Problems turning on my pc
  194. [ubuntu] abiword help
  195. [ubuntu] Jaunty usplash on Hardy - possible?
  196. [ubuntu] Cannnot Start the X Server + fsck problem
  197. [ubuntu] Empathy/Google Talk
  198. [ubuntu] Gnome Hardy Heron Nvidia 8400gs PCI Hang Crash
  199. [ubuntu] how to get "bass" sounds on computer?
  200. [ubuntu] Changing libnotify theme in Jaunty
  201. [gnome] An idea to sync epiphany bookmarks
  202. [ubuntu] How I boot to a liveCD in a XP PC?
  203. [ubuntu] Installing AIR and Twhirl... having bit of trouble
  204. [all variants] vim switch to command mode changed from escape to alt + escpe
  205. [ubuntu] CheckGmail saving
  206. [ubuntu] How do i pause the ls command
  207. [ubuntu] Issues with Fullscreen Internet Video in Jaunty
  208. [ubuntu] cant install 64-bit ubuntu
  209. [ubuntu] psp is read only file system?
  210. [ubuntu] Intrepid bug? Gnome Panel doing strange things
  211. [ubuntu] Gnome vs Flux
  212. [all variants] Will Wubi be available for Jaunty?
  213. [other] Thunderbird + Google Calendar + SMS questions
  214. [ubuntu] Problem Playing Valve's Portal
  215. [ubuntu] debian help
  216. [ubuntu] Compaq D510 SFF
  217. [ubuntu] Today's PAM update broke my login, will not accept my password. HELP!
  218. [ubuntu] Need help "tracker Applet"
  219. [ubuntu] Looking for Adobe Air repository.
  220. [ubuntu] .deb install error (what)
  221. [ubuntu] Audio help!
  222. [ubuntu] LiveCD keeps freezing
  223. [ubuntu] Telnet in a bash script
  224. [ubuntu] Ubuntu Error
  225. [ubuntu] Restart/Shutdown buttons in 9.04?
  226. [ubuntu] AVI files unplayable using totem
  227. [ubuntu] add windows XP
  228. [ubuntu] Firefox CPU hog using DownloadThemAll
  229. [ubuntu] Ubuntu Won't Boot! Help!
  230. [ubuntu] Ram Information Need
  231. [ubuntu] No Boot after restore from Backup
  232. [ubuntu] How do I mount a .img file containing backup
  233. [SOLVED] Remove line breaks from plain text
  234. [ubuntu] Clarification of CLI syntax...
  235. [ubuntu] installing virtualbox with USB capabilities
  236. [ubuntu] Epiphany launcher
  237. [ubuntu] disable composite.
  238. [all variants] Insufficient permissions when logging on to ssh server
  239. [ubuntu] Problem in canon ip 1200 printer
  240. [all variants] Is the XFS filesystem corruption problem fixed yet?
  241. [ubuntu] Microsoft Xbox 360 Wireless Controller Help!
  242. [ubuntu] Java to use?
  243. [ubuntu] vnc server
  244. [ubuntu] Automatically restarting / forgetting settings?
  245. [ubuntu] Question about Cron/Backups
  246. [ubuntu] Installing apps outside synaptic
  247. [ubuntu] [ASK]browsing web problem in ubuntu 8.10
  248. [ubuntu] BIG PROBLEM with dual boot. xp/ubuntu
  249. [ubuntu] Gimpshop Nightmare
  250. [ubuntu] How to automaticaly close a session