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. [all variants] Is It Still (Nearly) Impossible To Log Boot Messages?
  2. [ubuntu] [SOLVED] CD ROM Boot problems
  3. [ubuntu] [SOLVED] NVidia restricted drivers or official drivers?
  4. [ubuntu] Simple SMTP
  5. [ubuntu] lirc setup
  6. [ubuntu] Firefox suddenly slow to close
  7. [ubuntu] Wiped Boot Partition, encripted 7.10 file system
  8. [ubuntu] Windows Vista Iconset nuoveXT-aero.tar.gz
  9. [gnome] Drag-and-drop?
  10. [ubuntu] Problem mounting NTFS partitons
  11. [ubuntu] New free space not recognized
  12. [ubuntu] Gscan2pdf Problem
  13. [ubuntu] Nvidia lengency drivers work with compiz?
  14. [ubuntu] Won't Recognize Hard Disk
  15. [ubuntu] compiz help please
  16. [ubuntu] How to get best performance for Radeon 9250? (256mb, PCI version)
  17. [ubuntu] Menu Configuration Files: Backup & Manual Config
  18. wubildr.mbr Status: 0x000000e
  19. [ubuntu] [SOLVED] In antivirus needed/supplied with Ubuntu?
  20. [ubuntu] Why am I sharing print$ ???
  21. [ubuntu] how to decompress .exe file?
  22. [other] [SOLVED] I don't know how to install Qt4 style
  23. [ubuntu] I Can't find MY TRASH?
  24. [ubuntu] Boot problems
  25. [all variants] Adding new drives
  26. [all variants] Brigding with ubuntu
  27. [ubuntu] What was the command again to re-install installed apps
  28. [xubuntu] [SOLVED] Just a tiny bit of custom needed
  29. [kubuntu] giFT filesharing - how do you get it to work
  30. [kubuntu] Echo Konsole
  31. [ubuntu] System freezes at logo boot screen (how can i diagnose?)
  32. [ubuntu] Grub error 17 / uninstall ubuntu
  33. [SOLVED] Desktop effects could not be enabled
  34. Errors after black splash screen... never gets to login.
  35. [ubuntu] Nvidia 6200 Card - When the restricted manager fails, then what?
  36. [ubuntu] proprietary driver not in use after reboot.
  37. [ubuntu] Getting Amarok as the Default Player
  38. [ubuntu] [SOLVED] a bunch of problems
  39. [all variants] Showing keywords to hidden links in color
  40. [all variants] Huh?? Why Can't I Burn Files Larger than 4Gb to DVD?? (I could before!)
  41. [ubuntu] Syncing Palm TX with Hardy?
  42. [all variants] File Permissions Command.
  43. [ubuntu] cant sudo with NOPASSWD
  44. [all variants] [SOLVED] Ubuntu user #
  45. [all variants] [SOLVED] /usr in Trash
  46. [gnome] How can I find my exteral IP address
  47. [ubuntu] I am stuck in ubuntu prompt.
  48. [ubuntu] Compiz Help
  49. [all variants] What's the new sudo dpkg-configure xserver-xorg
  50. [ubuntu] Help with eKiga incoming call (pulseaudio, network problem?)
  51. [ubuntu] Eye of Gnome and gthumb default image viewer for hardy
  52. [ubuntu] Problem running commands at startup
  53. [ubuntu] How do I update Google Earth?
  54. ubuntu loads to busybox after hard-reset, need help
  55. [ubuntu] Display Problem - Fractured Display
  56. [ubuntu] [SOLVED] VirtualBox firefox crashes when using flash media
  57. [ubuntu] Compiz and MATLAB figure displays
  58. separate partition for ubuntu??
  59. [all variants] Automate using shell script
  60. [ubuntu] [SOLVED] Desktop effect not getting enabled
  61. [ubuntu] Help a newbie?
  62. [ubuntu] How to get 4 different wallpapers?
  63. [ubuntu] code help please
  64. [gnome] Icon themes
  65. [ubuntu] newbie question: Problems with adding a new user
  66. [ubuntu] Tibia Client
  67. [other] installing from source i got this error, help?
  68. [all variants] I Broke Apt
  69. [ubuntu] Frequent Crashes and Instability Issues
  70. [ubuntu] Loading stops right before log on
  71. [ubuntu] Need help with async in ubuntu?
  72. [ubuntu] Virtualbox problem
  73. [ubuntu] [SOLVED] compiz problems
  74. [kubuntu] Screwey Keyboard Shortcuts
  75. [ubuntu] Gcursor still broken. Using Emerald.
  76. [ubuntu] Snapscan folder missing
  77. Does Wubi need to be uninstalled before actual install?
  78. [ubuntu] Simple Black&White screenlets/widget that display your comp. status
  79. [all variants] graphics card drivers?
  80. [ubuntu] Brand new
  81. [all variants] xscreensaver / xlock and ldap auth
  82. [ubuntu] [SOLVED] Grub/Bootloader, please help
  83. [ubuntu] Console Keyboard Layout and Vim Shortcut
  84. [ubuntu] Problem when cleaning Grub Boot Menu
  85. [ubuntu] Please help - can I reverse CHMOD error
  86. [ubuntu] Problems with icons in System > Preferences > Appearances
  87. [gnome] Delete Screenlet But Comes Back After Restart
  88. [ubuntu] booting to root
  89. [xubuntu] I need help!
  90. [ubuntu] How to execute script when I insert a PCMCIA card?
  91. [ubuntu] grub lost
  92. [ubuntu] Using dpkg to remove multiple packages
  93. [ubuntu] putting mp4 and avi onto ipod
  94. [ubuntu] How to auto-turn off the Compiz on battery.
  95. [ubuntu] [SOLVED] Share files between two Ubuntu computers
  96. [ubuntu] Samba still broken
  97. [ubuntu] Tor & Privoxy on 8.04/FF3
  98. [all variants] Sparcbook 3GX
  99. Scale window picker, minimized windows
  100. [ubuntu] XServer not working
  101. [ubuntu] All was fine yesterday... today? X Serve?
  102. [other] nexuiz error
  103. [all variants] fsck won't fix errors - usb drive stays locked
  104. [ubuntu] Moving space on Hard Drive to another Partition
  105. [ubuntu] Cannot unlock screensaver
  106. [ubuntu] Trying to break my Microsoft shackles.
  107. [all variants] Google Gadgets 0.10 [DEB]
  108. [ubuntu] New to Ubuntu; some basic questions...
  109. [ubuntu] I changed mount options, now won't mount
  110. [ubuntu] Icons top panel
  111. [ubuntu] Loud fan
  112. [ubuntu] HH + DLink DP301P+ +Sharp AR-M160 Printer/Copier
  113. [ubuntu] webpage not loading right =/
  114. [ubuntu] [SOLVED] cant see my address bar in firefox?
  115. [ubuntu] Iptables & Transparent Squid
  116. [other] [SOLVED] Not all external HD space being shown as usable.
  117. [ubuntu] I don't understand htmldoc and need help
  118. [ubuntu] Mozilla and terminal starting everytime i boot ubuntu.
  119. [ubuntu] Nvidia TwinView- Can I maximize a window to the size of one screen? [8800GT]
  120. [ubuntu] [SOLVED] Trying to move ubuntu to my main drive
  121. [ubuntu] How can i connect to the internet on startup?
  122. [ubuntu] keyboard layout changes on every startup
  123. [ubuntu] how do i get rid of the bottom panel
  124. [ubuntu] command for visiting webpage..
  125. [ubuntu] About the panels
  126. [ubuntu] [SOLVED] Group Permissions
  127. [ubuntu] applications refuse to load
  128. [ubuntu] what do you recrommend?
  129. [all variants] Executing a program on an NTFS partition.
  130. [other] dust in case - how to keep it out?
  131. [ubuntu] Installing Ubuntu for the first time problems
  132. [kubuntu] Frequent Lockups
  133. [ubuntu] help with Adaptec Gamebridge
  134. [kubuntu] Problem with boot after distro upgrade fail
  135. [ubuntu] Print Screen Problem
  136. [ubuntu] Freevo Error Need Help
  137. [ubuntu] Firefox crashes when Runescape tab is closed
  138. [all variants] Hiding last panel idea!
  139. [ubuntu] hci_scodata_packet
  140. [ubuntu] Ubuntu Shut down problem
  141. [ubuntu] [SOLVED] xorg.conf incomplete ?
  142. [ubuntu] bootchart grub entry drops to busybox prompt
  143. [ubuntu] Background behind cube?
  144. [all variants] amule connected but won't find anything
  145. [ubuntu] [SOLVED] Filesystem boots read only after crash
  146. [ubuntu] Gparted - hard disk not recognised
  147. [ubuntu] GRUB Error 17
  148. [ubuntu] [SOLVED] Conky + lm-sensors
  149. [all variants] clustering question
  150. [ubuntu] [SOLVED] Going Back to 7.10
  151. [kubuntu] Can no longer use keyboard shortcut keys on Inspiron 1420
  152. [ubuntu] Yum failure
  153. [ubuntu] [SOLVED] Server not visible from internet
  154. [ubuntu] Do I have a virus?
  155. [ubuntu] [SOLVED] GRUBs everywhere!
  156. [gnome] AWN Swiftfox launcher doesn't work right
  157. [ubuntu] Where does the list of installed apps (from the "Applications" menu) live?
  158. [ubuntu] Screen resolution
  159. [ubuntu] Ubuntu 8.04: How to change clearlooks colors?
  160. [ubuntu] Switiching between utorrent and ktorrent
  161. [ubuntu] Annoying Screen brightness problem
  162. [ubuntu] How to get a tablet to work
  163. [all variants] setting permissions on new files
  164. [ubuntu] Compiz
  165. [ubuntu] vga to tv help
  166. [all variants] Changing Date Display Format
  167. [ubuntu] [SOLVED] little screen
  168. Kernel 2.6.24.20 b0rks nvidia card!
  169. [other] How to download movies on youtube videos?
  170. [ubuntu] cairo dock not starting?
  171. [ubuntu] Window movements seems to need Vsync
  172. [ubuntu] Remove XP icon from desktop but allow other devices?
  173. [ubuntu] can't access windows files through Ubuntu anymore
  174. [ubuntu] [SOLVED] Grub Error 22 in Stage 1.5
  175. [ubuntu] should we be concered at all with the latest news about DNS flaw?
  176. [ubuntu] cairo glitz doesn't clear old frame
  177. [other] Enviroment paths?
  178. [ubuntu] Sharing confusion and how best to do it
  179. [SOLVED] Windows Boot Loader Always Defaults to Windows
  180. [ubuntu] compiz help with maybe graphics card?
  181. [ubuntu] [SOLVED] conky not working
  182. [ubuntu] [SOLVED] syncronizing music libraries with rsync
  183. [all variants] A conky question (IP related)
  184. [ubuntu] no write privileges hardy to vista
  185. [ubuntu] Ubuntu Login Sound For Ringtone
  186. [ubuntu] Boot Problem
  187. [ubuntu] Changing PC Name
  188. [all variants] Compare Local to FTP?
  189. [ubuntu] WINE and Add/Remove Missing Fresh Install
  190. [other] [SOLVED] Adding Medibuntu gpg key to sources
  191. [gnome] ? On How To Change Panel Backgrounds
  192. [ubuntu] Startup Script
  193. [kubuntu] [SOLVED] administrative hell
  194. [xubuntu] Freeze need reset on lshw @ PCI (sysfs)
  195. [ubuntu] Help me, Please! Firefox Bookmarks Broken
  196. [ubuntu] what else can i do with linux
  197. [ubuntu] Need Some Pro Advice
  198. [all variants] "reinstalling" a disk array (RAID1) after hardy upgrade
  199. [ubuntu] getting opacity back in compiz
  200. [ubuntu] Need Some Pro Advice
  201. [all variants] [SOLVED] converted fat32 music collection to ext3...now have problems with special ch
  202. [kubuntu] Alfresco cifs in Dolphin
  203. [ubuntu] Problems with connecting to a website
  204. [ubuntu] QQ acting strange
  205. [ubuntu] [SOLVED] All my files became text files.
  206. [ubuntu] How best to partition my disk?
  207. [ubuntu] [SOLVED] Firefox or Thunderbird
  208. [ubuntu] Unable to create file
  209. [ubuntu] 8.04 Won't Go To Login Screen
  210. [all variants] Errors with message bus daemon
  211. [ubuntu] [SOLVED] Kernel fails to boot after latest updates
  212. [ubuntu] anyone with compiz and a INTEL graphics card
  213. [ubuntu] epiphany redirects to https instead of http ? :(
  214. [ubuntu] how can i see the icon on desktop after install the nautilus
  215. [ubuntu] [SOLVED] At Shutdown Network Manager Warning
  216. [ubuntu] Compiz-Fusion window decoration oddity
  217. [all variants] Need a friendly but powerful backup app
  218. [ubuntu] Desktop colours question
  219. [xubuntu] panel problem
  220. [ubuntu] virtualising server 2008
  221. [all variants] what are the advantages of zen kernel??
  222. [ubuntu] Top and Bottom Bars Missing
  223. [ubuntu] Upgrading Computer Soon, Compiz Fusion?
  224. [other] [SOLVED] partition used for 50 percent without seeing any files/folder
  225. [ubuntu] compiz problem
  226. [ubuntu] can i use more than one package managers?
  227. [ubuntu] NXserver help, can't log in
  228. [ubuntu] [SOLVED] simple question
  229. [ubuntu] Create a rescue DVD of current setup
  230. [ubuntu] the built in iptables firewall question
  231. [ubuntu] forcing closure
  232. [ubuntu] xp install deleted /boot
  233. [ubuntu] Repositories Not Displaying Software?
  234. [ubuntu] Installed wrong ubuntu...
  235. [other] Dual Booting, Grub Error 17, Need to Remove Grub, Fixmbr not working?
  236. [ubuntu] Deleted Stuff out sessions preferences
  237. [xubuntu] Sound problems and other questions
  238. [ubuntu] boot splash not changing
  239. [ubuntu] Where's ms-sys?
  240. [SOLVED] Bluetooth keyboard/mouse not working
  241. [ubuntu] parental controls akin to the ones present in Windows Vista
  242. [ubuntu] Lenovo Y510
  243. [ubuntu] Walk through
  244. [ubuntu] Remote Web-based Monitoring
  245. [ubuntu] ubuntu won't boot after upgrading kernel
  246. [gnome] An empty desktop without icons
  247. [ubuntu] grub truble
  248. [ubuntu] Task Bar and Freezing
  249. [ubuntu] Google Gears help
  250. [ubuntu] Cant unlock screensaversin 8.04