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] Tried installing gfxboot, now error 15
  2. [ubuntu] AutoCAD and individual net access?
  3. [ubuntu] Easytag broken in Intrepid
  4. [gnome] Ways to better integrate Office 2003 (wine?)
  5. [ubuntu] Desktop will not shutdown with Nvidia Quardro FX3400 drivers are activated
  6. [ubuntu] Cannot login after uninstalling Pulse audio
  7. [kubuntu] Just installed .deb package, now?
  8. [ubuntu] console command help
  9. [ubuntu] emulator repos
  10. [ubuntu] Won't detect D partition (archive with all music movies etc)
  11. [ubuntu] Dual Boot
  12. [ubuntu] Ultimate Ubuntu ISO too large to save to CD
  13. [gnome] Fonts in Firefox
  14. [ubuntu] backup troubles
  15. [ubuntu] Suspend icon not present
  16. [kubuntu] [SOLVED] apt-get upgrades
  17. [ubuntu] Daisy Chain
  18. [ubuntu] Anyone use PowerPanel for CyberPower UPS?
  19. [ubuntu] games
  20. [ubuntu] New install on external h/d (dual boot)
  21. [ubuntu] Upgrade to 8.10 causes a hang that is fixed by typing exit! Need permanent fix!
  22. [ubuntu] Make Pidgin Start Minimised (ie Hide Buddy List)
  23. [ubuntu] Error opening file 'media/drive/filename.*': No space left on device
  24. [ubuntu] dcp-130c printer prints greyscale only
  25. [ubuntu] x-server restarts? randomly
  26. [ubuntu] problem with fglrx please
  27. [all variants] logging fuse
  28. [ubuntu] Compiz is crashing
  29. [ubuntu] Using udev to Back-Up USB
  30. [ubuntu] Emerald Themes... Basic Questions.
  31. [ubuntu] [SOLVED] Swap memory
  32. [ubuntu] Compiz doesn't auto-start after I install compiz-swtich?
  33. [ubuntu] problem to upgrade from 8.04 to 8.10
  34. wired/wireless problems with wubi on eeepc 1000hd
  35. [all variants] Temperature monitor
  36. [ubuntu] Files being opened by wrong program from within other app.
  37. [ubuntu] problem with rotate desktop
  38. [ubuntu] Flash plugin and legal issues.
  39. [ubuntu] Ubuntu Studio Help
  40. [ubuntu] Trimming "the fat" in the Services
  41. [ubuntu] How to change the Ubuntu bootup logo above statusbar?
  42. [ubuntu] no drives in BIOS, can't get in even in safe mode!
  43. [ubuntu] [SOLVED] Vim: syntax highlighting for bash files
  44. Install Windows IN Linux?
  45. [other] cut the kernel image size down to around 10MB or less
  46. [ubuntu] Windows closing when I click on a menu item
  47. [ubuntu] State of packages after removal?
  48. [ubuntu] Ubuntu Forum keeps logging me out.
  49. will i have problem in recompiling the kernel
  50. [ubuntu] Timezone pet peeve
  51. [ubuntu] kiba-dock and multiple desktops
  52. [ubuntu] Need quick help
  53. [ubuntu] [SOLVED] AWN Settings mistake. Could anyone help me?
  54. [ubuntu] FTP: How do i get it working??
  55. [ubuntu] Lost rights on /
  56. [ubuntu] 360 photography for skydome
  57. [ubuntu] How do I clear my log files? Don't want my custom LiveCD to have my passwords on it!
  58. [ubuntu] Plese quick help on installing amarok 2 beta 3 and mono 2 on ubuntu
  59. [ubuntu] Force reboot?
  60. [all variants] ub 8.1 server
  61. [all variants] [SOLVED] Help with scripting - how to do something for all files in a directory
  62. [ubuntu] prov scrabble
  63. [ubuntu] Firefox 3 bookmarking pages when it shouldn't.
  64. [ubuntu] (Intrepid, possibly Nautilus?) save -> create folder EXTREMELY slow
  65. [all variants] [SOLVED] no logo
  66. [kubuntu] How to display a different motd in SSH
  67. [ubuntu] [SOLVED] Garbage fonts after installing skype
  68. [ubuntu] Minimalistic usplash
  69. [all variants] mkdir: cannot create directory `test': Too many links
  70. [ubuntu] Nautilus thinks my shared partiton is a Picture CD...
  71. [ubuntu] Firefox bug?
  72. [ubuntu] Check Drives on start uo
  73. [ubuntu] virtual OS
  74. [ubuntu] internet in intrepid
  75. [ubuntu] Tangerine+eMac->Ubuntu 8.10
  76. [ubuntu] problem when i open Guitar Pro 5
  77. [ubuntu] the usb start up thinghy
  78. [ubuntu] Hello all
  79. [ubuntu] Keyboard layout for other
  80. [all variants] restrict mouse to area
  81. [all variants] [SOLVED] editing text via shell script?
  82. [ubuntu] Conky/htop dont give same info as top
  83. [ubuntu] No audio
  84. [all variants] Record minimised window
  85. [ubuntu] [SOLVED] what to do after install ubuntu?
  86. [all variants] Reliable filesystem for usb stick
  87. [kubuntu] Firefox 3.1b2 and Java Plugin
  88. [ubuntu] Static noise after unclean shutdown
  89. [ubuntu] Samba share no longer working (after update)
  90. [ubuntu] 8.10...cat command problem
  91. [kubuntu] Hardy suddenly returns to login screen
  92. [all variants] [SOLVED] OpenOffice 3.0 ?
  93. [ubuntu] problem with chown - recursive nightmare
  94. [ubuntu] 8.10...archive gone?
  95. [ubuntu] bzip2 errors
  96. [ubuntu] 8.10...lock/unlock of files?
  97. [ubuntu] Xp wont recognise partion
  98. [ubuntu] nvidia GeForce 6200 no 3d
  99. [ubuntu] Can't enter xwindows with xinit?
  100. [ubuntu] Can't get NVIDIA graphics to install
  101. [ubuntu] [SOLVED] Finding a list of software
  102. [ubuntu] only two resolution option are there in ubuntu 8.10
  103. [ubuntu] Running out of memory and crashing :(
  104. [xubuntu] elfclass
  105. [ubuntu] Printer not working
  106. [ubuntu] Master Boot Record Error - Press a Key
  107. [ubuntu] sparc support discontinued?
  108. [ubuntu] what do I need do to Live CD boots on a Windows Vista Acer laptop?
  109. [SOLVED] How to make Ubuntu default when booting up
  110. [other] call of duty 4 won't load
  111. [ubuntu] Mounting Problems
  112. error downloading/randomise download location?
  113. [ubuntu] How do I remotely log on to an 8.04 desktop?
  114. [ubuntu] [SOLVED] Should I reinstall?
  115. [kde] Change User Name
  116. [ubuntu] Uninstalling Kubuntu and Xubuntu
  117. [ubuntu] apport doesn't start
  118. [kubuntu] hide plasmoids?
  119. [kde] i turned off my computer and now my desktop is all messed up...
  120. [all variants] dual core processors
  121. [ubuntu] Hibernation Fails on ThinkPad T42 after unplugging and plugging again power cord
  122. [ubuntu] .local
  123. [ubuntu] problem with windows in version 8.10...
  124. [ubuntu] "Create a USB Startup Disk" works but I have partitioning problems with the installer
  125. [ubuntu] Help Xscreens 2 monitors
  126. [ubuntu] [SOLVED] Surf filesystems through root
  127. Wubi CraZy
  128. [ubuntu] [SOLVED] Transparency
  129. [ubuntu] [SOLVED] two screen problem
  130. [ubuntu] Cronjobs aren't working any idea?
  131. [all variants] Find out which distro you're using
  132. [ubuntu] remastersys frozen at 99%. any ideas?
  133. [ubuntu] Apache2 and CGI busy kickin me around
  134. [ubuntu] Ubuntu 8.10 GDM screen doesn't show up.
  135. [ubuntu] fcsk error booting error on unmounted partion
  136. [kubuntu] kde 4 desktop effects broken
  137. [ubuntu] Trouble using external FAT32 drive
  138. [ubuntu] where do i find the iso file to burn to cd
  139. [ubuntu] Adobe Reader missing certificate - Help!
  140. [gnome] updated last night- suddenly my whole system is changegd
  141. [ubuntu] [SOLVED] /dev/video0 gone???
  142. [ubuntu] Unable to add existing Users after upgrade
  143. [ubuntu] UnDelete file in WINE?
  144. LVPM. Now what?
  145. [ubuntu] Recent Update Killed my Restricted Drivers
  146. [ubuntu] Decorating Ubuntu for the Holidays
  147. [ubuntu] Can't boot with wi-fi card on...
  148. [ubuntu] Autoboot freezes
  149. [ubuntu] Original Gnome effects
  150. [ubuntu] help me try to mimic this guys desktop
  151. [ubuntu] Can't get Cube Atlantis to work!
  152. [ubuntu] User Permissions for Home directory
  153. [other] Has Anyone EVER Managed To Launch LXDE With Slim?
  154. [ubuntu] Share CPU load across network
  155. [ubuntu] Misunderstanding between apps and system for screen resolution !?!
  156. [ubuntu] Compiz segmentation fault
  157. [ubuntu] Full Screen YouTube Choppy and Laggy
  158. [all variants] Default Umask
  159. [kubuntu] Switching from LILO to GRUB
  160. [kubuntu] How do I get an external drive auto mounted at startup?
  161. [ubuntu] using USB Flash to boot CD image
  162. I can't get to WUBI.
  163. why wubi can not shutdown vista ????
  164. [ubuntu] hp-systray appears on desktop - not on panel
  165. [ubuntu] Why is the Helvetica font bitmapped only
  166. [ubuntu] How do I know if my SSH is encrypted?
  167. [ubuntu] trying to install printer software
  168. [ubuntu] Windows don't maximize to full screen
  169. [all variants] Burning multiple CDs at once
  170. [ubuntu] Setting up playlists on a VX8350 phone
  171. [all variants] Increasing root partition size
  172. [ubuntu] [SOLVED] How do I speed this up?
  173. [other] Autostart on Openbox and Rhythmbox question
  174. [ubuntu] whats a good printer for ubuntu 8.04?
  175. [ubuntu] [SOLVED] Compiz theme
  176. [ubuntu] disable password to power off pc
  177. [all variants] Sync Music on multiple Pc's
  178. [ubuntu] How to automatically start wicd after resume from suspend?
  179. [all variants] [SOLVED] OpenAFS client will not compile correctly with module assistant
  180. [ubuntu] [SOLVED] a newb question
  181. [xubuntu] Flashing Screen
  182. [all variants] Fresh Install from 8.04 to 8.10
  183. [ubuntu] How do I fix this? (system mail)
  184. [ubuntu] What is the recommended size for swap
  185. [ubuntu] Virtualbox Xp Advice
  186. [ubuntu] how to use alltel software on my ubuntu machine
  187. [ubuntu] [SOLVED] Just installed Ubuntu - No floppy or front USB
  188. [ubuntu] Problems with the JRE
  189. [ubuntu] compiz is running really slow
  190. [ubuntu] Compiz desktop switching problem
  191. [SOLVED] Can't get transparent window frames wit CompizConfig
  192. [ubuntu] Grub hangs after installing additional sata controller
  193. [ubuntu] Help! Screen resolutions!!
  194. [ubuntu] how to configure ubuntu not to show icon for auto-mount drives
  195. [ubuntu] Compiz keeps crashing
  196. [ubuntu] locks up after unlocking screen
  197. [ubuntu] Nvidia GeForce2 GTS/GeForce2 Pro problem
  198. [ubuntu] change what automatically runs
  199. [ubuntu] Trash file directory loop error
  200. [ubuntu] Virtualbox problem
  201. [ubuntu] winfast DTV2000
  202. [ubuntu] Basic Questions - Formatting, flash drives, etc.
  203. [ubuntu] gscan2pdf and cyrillic book
  204. [ubuntu] [SOLVED] mounting trouble
  205. [ubuntu] Getting russian characters to work in Rosetta Stone / Wine
  206. [gnome] Theme Disappears
  207. [ubuntu] cairo-dock setting of autohide...
  208. seeing files on partition that wubi is installed on
  209. [ubuntu] 2 Unbuntus!?
  210. [ubuntu] Issue with AWN please read.
  211. [ubuntu] Fresh Install of 8.10, Crashes at Login.
  212. [ubuntu] Compiz, ATI 8.11, ATI HD 4850 and sleep
  213. [ubuntu] speech-to-text?
  214. [ubuntu] [SOLVED] in firefox, ctrl + shift + left or right arrow --> doesn't select, changes t
  215. [ubuntu] Horizontal Scrolling Is Backwards
  216. [ubuntu] Fast User Switch Applet does not Always Display Power Options
  217. [ubuntu] My printer wont work
  218. [other] How To Keep Application From Appearing in AWN
  219. [xubuntu] [SOLVED] How to restore pre-8.10 CD/DVD automount behavior?
  220. [ubuntu] Multiple Windows auto loading - Help
  221. [ubuntu] Terminal screen not refreshing properly
  222. [all variants] Sharing files between XP and Ubuntu
  223. [ubuntu] kdenlive 0.7 crashes on startup
  224. [ubuntu] Multiple, unmatched harddrives with a dual boot
  225. [ubuntu] My printer wont work
  226. [all variants] [SOLVED] ttf-mathematica 4.1 errors
  227. [ubuntu] vmware problem in 8.10
  228. [ubuntu] while i was sleeping
  229. [ubuntu] Installing Icons
  230. [ubuntu] Cannot log onto Virtualbox.org Forum
  231. [ubuntu] why midgnight commander does not remember directories? (Ubuntu 8.10)
  232. [gnome] [SOLVED] condense menu
  233. [ubuntu] [SOLVED] Ubuntu doesn't recognize the swap
  234. [ubuntu] 8.04, ubuntuzilla, firefox 3.0.4, now get eula every time
  235. [ubuntu] [SOLVED] Customizing the Terminal
  236. [ubuntu] /etc/init.d doesn't run on startup
  237. [all variants] Startupmanager lost features after intrepid upgrade
  238. [ubuntu] Captions in Firefox with Ubuntu 8.10
  239. how to run from RAM, please?
  240. [ubuntu] INFO: Resources on Speech-to-Text Applications
  241. [all variants] Need kdialog options
  242. [all variants] ' in a terminal
  243. [kubuntu] full screen flash
  244. [ubuntu] system info
  245. [ubuntu] "Dual Booting" iTunes
  246. [gnome] Turned on Compiz bicubic sampling - Now unusable
  247. [ubuntu] Cube effect
  248. [ubuntu] Accessibility-Clicking with Keyboard
  249. [ubuntu] Skype audio problems - constant white noise
  250. [all variants] Moved Wubi to dedicated partition, won't boot