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

  1. [ubuntu] [SOLVED] Dissappearing splash screen after resizing partitions
  2. [ubuntu] [SOLVED] sharing /home
  3. [kubuntu] help installing firefox 3.0.1
  4. [ubuntu] will ubuntu work on eee pc 1000 ?
  5. [ubuntu] No Sudo Password/Prompt
  6. [ubuntu] how to active universe repository
  7. [gnome] From - HOW TO: Correct Gnome Error (GNOME Settings Deamon)
  8. [all variants] how to active universe repository
  9. [kubuntu] Ignore broken packages?
  10. [ubuntu] Verified by Visa & Firefox Problems
  11. [ubuntu] Launcher for Firefox popup
  12. [ubuntu] [SOLVED] Dual Booting the wrong way round
  13. [all variants] Mirror Text Tool Online or program?
  14. [ubuntu] List Folder and File names in separate index file
  15. [ubuntu] wireless internet problem.
  16. [kubuntu] [SOLVED] no windows in tray
  17. [kubuntu] vmware server bt3
  18. [ubuntu] problem with world of warcraft please help!!
  19. [ubuntu] File viewer - display date photo/picture taken as column
  20. [all variants] supplemental vs supplementary vs [regular] groups
  21. [ubuntu] Can't see all files on DVD RW
  22. [ubuntu] Panel
  23. [ubuntu] Share folder on 1 computer between 2 users
  24. [all variants] How do I mount LogVol?
  25. [ubuntu] No Privileges in phpMyAdmin (MySQL) running LAMP & webmin
  26. [other] Partition table was changed unintentionally
  27. [ubuntu] Sudden "No signal" message from monitor
  28. [ubuntu] Problem with WoW in windowed mode need help!
  29. [ubuntu] how do you conect nokia 5310 to hardy herron using usb cable
  30. [ubuntu] no desktop change on mouse scroll
  31. [xubuntu] Firefox and Evince
  32. [ubuntu] need some help
  33. [ubuntu] Fcsk Problem
  34. [ubuntu] Video problems
  35. [all variants] [SOLVED] /etc/crontab doesn't change cron.daily time
  36. [ubuntu] do i need medibuntu?
  37. [ubuntu] Some Problems.
  38. [ubuntu] Gnome Color Chooser
  39. [ubuntu] [SOLVED] CD Poker on Ubuntu Hardy
  40. [ubuntu] [SOLVED] P2P File Sharing
  41. [ubuntu] xmodmap - fifth keyboard level doesn't work on some keys
  42. [ubuntu] need help reasble raid 5 array
  43. [kubuntu] [SOLVED] update manager error
  44. [ubuntu] Setup (external) vertical screen
  45. [ubuntu] automatic backup
  46. [all variants] wine with 3dmark
  47. [ubuntu] shutdown window doesn't show up
  48. [ubuntu] Problem: Screen just goes black (randomly).
  49. [kubuntu] Content Filtering
  50. [ubuntu] Content Filtering
  51. [ubuntu] [SOLVED] Ctrl F grabs window
  52. [ubuntu] Tests found a problem! help!
  53. [ubuntu] Change Splash Error,no resume image ...
  54. [ubuntu] How to Sync Evolution w\ WM6 in Hardy
  55. [ubuntu] DOSBox help
  56. [ubuntu] lircrc file help
  57. [SOLVED] Re: Installing Flash from .tar.gz
  58. [ubuntu] module doesn't show in /proc/ioports
  59. Restoring Wubi after format my pc
  60. [ubuntu] After upgrading from 8.04 to 8.04.1 renders compiz and desktop effects unusable
  61. [ubuntu] Restoring to flash player 9
  62. [ubuntu] avant navigator won't load up
  63. [ubuntu] SATA II transfer rates very slow?
  64. [all variants] XFS file system and many MANY fragments... normal?
  65. [ubuntu] Warcraft 3
  66. [ubuntu] Get Avant (awn) to use custom folder icons/emblems
  67. [ubuntu] Changing the Ubuntu Icon next to the "applications" menu
  68. [other] Google Uninstall
  69. [ubuntu] I think I broke something
  70. [ubuntu] NTP - open port
  71. [all variants] Crontab fails to execute script properly
  72. [ubuntu] Cant mount NTFS partition
  73. [ubuntu] mouse isn't working
  74. [ubuntu] [SOLVED] Help! Cannot Login to Gnome!!!
  75. Accessing windows after space increase
  76. [ubuntu] non-expanded panel has ugly endings
  77. [ubuntu] gcdemu MIA
  78. [ubuntu] cannot configure firestarter/firewall
  79. [ubuntu] Problem Restarting X-Server
  80. [ubuntu] [SOLVED] Compiz stopped working
  81. [ubuntu] Games in fullscreen kill monitor & keyboard
  82. [ubuntu] How do you stop Music Player from auto running?
  83. [all variants] Getting familiar with Linux
  84. [ubuntu] USB Drive mount consistency
  85. [all variants] Pidgin Plugins
  86. [ubuntu] Laptop boots up to blank screen. Seems fine but no display. Think it may be hard disk
  87. [ubuntu] [SOLVED] How much disk space for extra users?
  88. [all variants] General question about linux boot
  89. [ubuntu] [SOLVED] sshfs and apache
  90. [all variants] Folding@home giving an error
  91. [ubuntu] Help Me Pimp My Desktop! (Screen shots Provided)
  92. [ubuntu] Smooth/anti-aliased versions of fonts
  93. [xubuntu] [SOLVED] Need a good GUI FTP client for Xubuntu
  94. [ubuntu] Serial port redirector
  95. [ubuntu] Encrypted Drive Password Prompt Taking Forever to Show
  96. [ubuntu] Update manager problems and slow system
  97. [all variants] exit from terminal
  98. [ubuntu] Blitting compiz
  99. [ubuntu] firewall script, gmail acess
  100. [ubuntu] Hard Drive constantly making noise
  101. [ubuntu] Compiz hiding desktop?
  102. [ubuntu] Laserjet 6L printing garbage
  103. [ubuntu] [SOLVED] Extra Storgae Space
  104. [ubuntu] VirtualBox help
  105. [ubuntu] Take ownership of documents and settings
  106. [ubuntu] Deformation of the cube stopped functioning
  107. [ubuntu] Easy to install and use key-logger?
  108. [other] Japanese input problem: Anthy won't convert kana to kanji
  109. [ubuntu] Ventrilo, Teamspeak, etc....
  110. [ubuntu] Text field color
  111. [ubuntu] usb mouse not working
  112. [ubuntu] How do i find System info?
  113. [ubuntu] rc.local not executing on bootup
  114. [all variants] Is there a cover designer like Nero Labeler?
  115. [ubuntu] Cant login
  116. [xubuntu] Xubuntu and an old PC. How will it work?
  117. [ubuntu] [SOLVED] conky vairiables
  118. [ubuntu] Freeze when open or saving from application
  119. [ubuntu] making the volume louder than max?
  120. [ubuntu] Menus are messed up
  121. [ubuntu] HUGE problem!
  122. [ubuntu] iptables question
  123. [ubuntu] Questions about ubuntu.
  124. [ubuntu] Can't access local machines on LAN by name
  125. [ubuntu] GParted Live Help
  126. [ubuntu] [SOLVED] Laserjet 6 not printing
  127. [ubuntu] lost video on update to .19 kernel
  128. [ubuntu] Installing Clam AV
  129. [ubuntu] how to install a script command
  130. [ubuntu] Ownership
  131. [ubuntu] [SOLVED] gnome save session
  132. [ubuntu] Trouble!
  133. [ubuntu] Desktop CPU Power Management
  134. [ubuntu] how to run a c script?
  135. [all variants] Open Office Question
  136. [ubuntu] [SOLVED] How to exit from an error log
  137. Wubi autoinstall option for permanent Ubunbu?
  138. [ubuntu] TrueCrypt Question
  139. Can I safely delete /host/ubuntu/install/installation.iso?
  140. [all variants] Double root?!
  141. [all variants] Sending mail with mail
  142. [ubuntu] Update Error
  143. [ubuntu] last octet if this ip??
  144. [ubuntu] [SOLVED] Text Files will not open in editor
  145. [ubuntu] Webcam Hotplug Fails/Hangs on Second Attempt
  146. [ubuntu] Vim won't jump to last position
  147. [ubuntu] starting Intranet with multimedia files
  148. [ubuntu] snort logs, how can i view it?
  149. [all variants] Tool to complete downloads when I am logged out?
  150. [ubuntu] Browser Recommendation (sort of)
  151. [ubuntu] [SOLVED] emerald
  152. [ubuntu] Video mode not supported
  153. [ubuntu] [SOLVED] Firefox 3.0 Uses 2.0 Skin in Ubuntu?
  154. [ubuntu] Desktop Install w/apache???
  155. [ubuntu] box.net davfs permission denied
  156. [ubuntu] [SOLVED] The Best Dock
  157. [all variants] [SOLVED] need help getting a file to play on PS3
  158. [xubuntu] Help needed with xfce panel icons
  159. [ubuntu] Problems using DrScheme---Incomplete package???
  160. [all variants] Command line torrent creator
  161. [all variants] Application Launchers
  162. [ubuntu] Pam
  163. [all variants] [SOLVED] Change owner on a folder not working
  164. [ubuntu] Intel X3100 integrated graphics
  165. [ubuntu] Having problems powering on vmware
  166. [ubuntu] [SOLVED] splash screen
  167. [ubuntu] oracle 10g installation
  168. [ubuntu] date in shell script, this format 0720108
  169. [ubuntu] stop it from going blank screen every 15.min
  170. [ubuntu] Permissions of "drive" could not be determined
  171. [all variants] Usplash Won't Work on Shutdown
  172. [ubuntu] Can't add new printer through cups
  173. [all variants] Braindead app, boinc manager
  174. [ubuntu] Can't start X
  175. [ubuntu] /home/user/ folders showing on desktop
  176. [ubuntu] Default admin password for Ubuntu Server?
  177. [ubuntu] [SOLVED] Aliases and Exports not Recognized
  178. [all variants] Kernal Problem
  179. [ubuntu] terminal not opening past one directory...
  180. [ubuntu] I can't find anything about this error message
  181. [ubuntu] pcsx problems
  182. [ubuntu] [SOLVED] Problems installing or updating programs/updates
  183. [ubuntu] Menu Config Not Saving
  184. [ubuntu] [SOLVED] Help, cant delete a file
  185. [kubuntu] Insert Key on Mac Keyboard?
  186. [all variants] gimp-svg package missing in hardy
  187. [SOLVED] Can I install Wubi to a dedicated partition, but keep the windows bootloader
  188. [ubuntu] Home Partition
  189. [ubuntu] Error message in bootup (picture)
  190. [ubuntu] Segmentation Fault in Firefox 8.04.1
  191. [ubuntu] Deluge kills my internet <_<
  192. [SOLVED] trouble installing gimp
  193. [ubuntu] Script that runs when user is created
  194. [all variants] PC not responding
  195. [ubuntu] help, booting trouble!!!
  196. [ubuntu] Alsa-to-OSS... back to Alsa. I messed up. Help?
  197. [gnome] How to get programs into the menu
  198. [ubuntu] Fix for Main Menu Icon
  199. [ubuntu] how to install csh on Ubuntu 8.04 ?
  200. [ubuntu] A Newbies Question!
  201. [ubuntu] how to create password less than 6 characters?
  202. [ubuntu] Application does not auto start even though its in Startup Programs
  203. [ubuntu] anyone here use hd-parm?
  204. [ubuntu] Freezing :[
  205. [ubuntu] File saved in ubuntu invisible in windows partition
  206. [ubuntu] [SOLVED] lamp + media codecs add-on cd
  207. [ubuntu] mysql, unicode, MySQL Query Browser and the console
  208. [ubuntu] "Nice"
  209. [ubuntu] [SOLVED] All Firefox addons stopped working
  210. [ubuntu] I cannot install anything
  211. [gnome] Help, Compiz plugins hosed my Gnome
  212. [ubuntu] cube bounce??
  213. Giving Ubuntu more capacity
  214. [ubuntu] key problems
  215. [kubuntu] Use of CPU & Memory Resource
  216. [ubuntu] sound gone after update...
  217. [all variants] Windows XP wont boot
  218. [ubuntu] help to install poser 7
  219. [all variants] Firefox 3 crashes with Deviant Art 6
  220. [all variants] How to stop a package from updating?
  221. [other] AGPvidio card
  222. [ubuntu] cannot record sound
  223. [other] Ubuntu MID and Intel Atom
  224. [ubuntu] Users and Groups reset
  225. [ubuntu] Sharing map rights ubuntu 8.04
  226. [kubuntu] setting up raid1 using dmraid
  227. [kubuntu] [SOLVED] Basic compiz question
  228. [ubuntu] Hardy changes my time in the BIOS.
  229. [ubuntu] Shift key doesnot work. Please help
  230. [ubuntu] Scheduleing Transmission
  231. How to use Wubi with a different distro?
  232. [ubuntu] can't download python2.5-dev and/or python-dev
  233. [ubuntu] Hard drive filled up in less than 1 hour
  234. [ubuntu] Good looking default fonts?
  235. [xubuntu] why do things keep autostarting...
  236. [ubuntu] Mac OS
  237. [ubuntu] Hibernate doesn't work, suspend does.
  238. [ubuntu] Installed Ubuntu Hardy for a friend
  239. [ubuntu] Programs don't update to latest versions
  240. Boot Kubuntu in safe mode?
  241. [all variants] installing fedora9 made ubuntu unreachable
  242. [ubuntu] How to make Ubuntu look nicer?
  243. [all variants] What is the best distro for this PC?
  244. [ubuntu] Sluggish Ubuntu!
  245. [ubuntu] Conky - showing signal strength for USB modem
  246. [ubuntu] window stacking?
  247. [other] boot loader problem
  248. [ubuntu] Stopping DHCP on startup - terminal server 8.04
  249. [kubuntu] OKULAR: can't print 3 times the same doc
  250. [ubuntu] Top Panel not chaning colors