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] Podcasts wont download
  2. [ubuntu] Need help with Ekiga 3.0 h263 codec
  3. [ubuntu] Boot.Kernal Order problem
  4. [ubuntu] Google Custom Search Engine for other Ubuntu sites?
  5. [ubuntu] Im REALLY in need of advice.
  6. [ubuntu] How to find firefox extention on corrupted install
  7. [ubuntu] Data recovery software
  8. [ubuntu] Videos not available at youtube error.
  9. [ubuntu] Script file
  10. [all variants] Best filesystem for Linux-only external drive?
  11. [ubuntu] Boot order of Xp / Ubuntu 8.10
  12. [ubuntu] [SOLVED] Ubuntu installed but not working
  13. [ubuntu] Dualboot on a laptop with Vista
  14. [ubuntu] commands at startup
  15. [ubuntu] Menu Problem
  16. [ubuntu] NFS - cant' connect port 32770
  17. [ubuntu] permissions for external hard drive
  18. [all variants] RemasterSys and proprietary drivers - Just want to know why
  19. [ubuntu] [SOLVED] Unstable Firefox
  20. [all variants] Firefox Processes not shutting down after i close it
  21. [xubuntu] performance xubuntu,compile, 300mhz
  22. [xubuntu] Nvidia drivers not working after updates (!?)
  23. [ubuntu] possible xorg failure? sort of....
  24. [all variants] problems with chroot
  25. [ubuntu] Screen keeps greying out!
  26. HOWTO: Intrepid Ibex and tp_smapi on a Thinkpad T60
  27. [ubuntu] Can I update my BIOS through VirtualBox XP?
  28. [ubuntu] Intel DG965RY and Samsung Spinpoint F1
  29. [xubuntu] [SOLVED] Automate commands in Terminal?
  30. [ubuntu] [SOLVED] Nautilus issues? Can I start over plz?
  31. [ubuntu] Java Help
  32. [all variants] I should know this, but I don't... how to upgrade GnuCash?
  33. [ubuntu] [SOLVED] Applications/Add/Remove will not show any software and menu bar
  34. [ubuntu] Battery always shows 0%
  35. [ubuntu] Search by tags with Tracker?
  36. [ubuntu] apt-get upgrade failure
  37. [ubuntu] ubuntu/linux distro for Pentium MMX 166MHz
  38. [ubuntu] no menu text in Scribus
  39. Developing websites on Apache 2
  40. [all variants] Are there Extra Plugins for Evolution & Thunderbird not available through Synaptic?
  41. [ubuntu] File Sharing problems.
  42. [all variants] cant append "bash: sudo: Permission denied"
  43. [ubuntu] format gone in nautilus?
  44. [gnome] Moving sys tray direction
  45. [SOLVED] 8.10 Pulseaudio crash after update
  46. [ubuntu] Firefox uses WAY TOO MUCH RAM (~1GB!)
  47. [ubuntu] White screen on resume.
  48. [ubuntu] alt.os.linux.ubuntu on the web?
  49. [ubuntu] dissapearing taskbar
  50. [ubuntu] Real Hardware Requirements
  51. [ubuntu] taksbar problems
  52. [ubuntu] [SOLVED] GNOME not starting (I think). No root privelages?
  53. [ubuntu] Lenovo T400 problem!!!
  54. How do I use the dedicated ubuntu's GRUB and not the wubi one?
  55. [ubuntu] Wsearch.net keeps popping up
  56. [ubuntu] graphics driver probem in Ubuntu 8.10 + VB8001
  57. [all variants] (some of) my hard drive has gone missing!
  58. [SOLVED] Internal ext3 drive gone mia
  59. [ubuntu] amarokapp libGL.so.1: wrong ELF class: ELFCLASS32
  60. [ubuntu] symbolic link to '.'
  61. [ubuntu] how to update to the developing kernel
  62. [ubuntu] Is windows still on my hard drive?
  63. [ubuntu] Make Epiphany titlebar != web page title ?
  64. [gnome] Gnome file dialog very slow
  65. Sticky Notes: Way Uncool...
  66. [ubuntu] module version mismatch
  67. [ubuntu] comp wont see sd card
  68. [ubuntu] Any Dark Icon Set?
  69. [xfce] How-to: Expand/Collapse the Xfce menu with the Windows key
  70. [ubuntu] ubuntu acting werid on startup
  71. [ubuntu] easy switching between resolutions. not working
  72. [ubuntu] [SOLVED] e-mail size
  73. [kubuntu] Firefox's address bar in Kubuntu 8.10 with KDE4.2beta2 acts funny.
  74. [ubuntu] [SOLVED] Newest nvidia driver upgrade does not work.
  75. [ubuntu] Dual Monitor
  76. [ubuntu] changing onwership
  77. [ubuntu] Shared folder problem
  78. [ubuntu] Swatch install and config
  79. [ubuntu] trying to get desktop to look like a mac os theme
  80. [ubuntu] Changeing Screen Res
  81. [ubuntu] Audacious Auto Starts
  82. [kubuntu] SIngle-quote key doesnt work since upgrade to 8.10
  83. [ubuntu] Runtime error in Python
  84. [ubuntu] How do I open Shell Scripts?
  85. [ubuntu] [SOLVED] GRUB Error, Please Help!
  86. [ubuntu] Showing more that 5 bookmarks in places
  87. [ubuntu] VirtualBox Error
  88. [ubuntu] Looking for some suggestions on tweaking 8.1 just "right"
  89. [ubuntu] pidgin dies error "too many open pipes"
  90. [ubuntu] AOC 7Vlr 17" CRT
  91. [ubuntu] Compiz help for a linux vet gone senile?
  92. [ubuntu] Geting my Gfroce 7300gt to install on 8.10
  93. Need Help
  94. [ubuntu] How to modify Open With setting in Console Terminal?
  95. [ubuntu] How to boot from a second disk drive?
  96. [ubuntu] I couldn't install Ubuntu in my new ASUS
  97. [ubuntu] [SOLVED] Home Folder Permissions
  98. [ubuntu] sudo or synaptic starting is slow
  99. [kubuntu] KDE 4 crashes on resolution change
  100. [ubuntu] Special Translation for Ubuntu
  101. [ubuntu] how to install .linux files ?
  102. [gnome] Launching 'application name' on task bar
  103. [ubuntu] Cannot install Ubuntu 8.10 / Windows Vista; buffer I/O error
  104. [ubuntu] Music videos as wallpaper
  105. [ubuntu] Ubuntu 8.10 (i386 and 64 bit) unable to mount
  106. [all variants] Cannot fully remove Adobe Reader Firefox plugin
  107. [ubuntu] Midori keeps using flash player 9
  108. [ubuntu] Multiple boot and NTFS problems -- Vista, Ubuntu/GRUB, CHKDSK
  109. [all variants] No reboot after Ubuntu running 16hours
  110. [ubuntu] What does 'run as root' mean, how's it done?
  111. [ubuntu] [SOLVED] Some programs can only be opened from the terminal!!
  112. [ubuntu] how to capter ALT+TAB in vncviewer
  113. [ubuntu] [SOLVED] compiz problem
  114. [ubuntu] Corrupted files / file system
  115. [all variants] Virtualbox guest addons
  116. [ubuntu] [SOLVED] Cups problem
  117. [ubuntu] Help with GRUB please
  118. [all variants] ubuntu studio italian?
  119. [ubuntu] Odd text problem
  120. [ubuntu] Weird Shutdown on ubuntu??
  121. [all variants] Ubuntu Ultimate Guide
  122. [ubuntu] Lock Screen- question, USA to question mark.
  123. [ubuntu] Emerald not working
  124. [all variants] Bash: which command would you use to burn a folder (<=4Gb)
  125. HOWTO: Send/Receive Comcast Email Using Evolution
  126. [ubuntu] Problem with Mathematica 6 under Ubuntu 8.04
  127. [ubuntu] [SOLVED] A question about vim (vi)
  128. [ubuntu] Ubuntu Features
  129. [ubuntu] How do I add more software to Synaptic, namely updated Scipy, Numpy and Matplotlib?
  130. [ubuntu] Bluetooth passkey, where to enable disable
  131. [ubuntu] Ubuntu 8.10 , Avant window navigator and Windows
  132. [gnome] gtk-theme-switch2 broke theme switcher
  133. [xubuntu] Kernel update destroyed my screen resolution
  134. [ubuntu] XChat-Gnome keeps closing.
  135. [ubuntu] ffmpeg help
  136. [ubuntu] window layout like terminator?
  137. [ubuntu] How to change automount point of usb hdd?
  138. [all variants] Multiple precision "spreadsheet"
  139. [ubuntu] 8.04.1: Screensaver/Power Saving Crash after kernel upgrade to 2.6.24-23-generic
  140. [all variants] Memory allocation failed ?? Can't convert images.
  141. [other] Good software for sailing navigation
  142. [ubuntu] yacc and system calls
  143. [ubuntu] [SOLVED] question about gparted
  144. [ubuntu] Need Help With Downloading Stuff With Ubuntu
  145. [ubuntu] BasKet fonts messed up after KDE install
  146. [kubuntu] Problems installing ATI drivers and Intel 3945 Wireless
  147. Computer unexpectedly shutdown, can no longer access kubuntu,
  148. [ubuntu] 2-D Low-resource Screensavers?
  149. [ubuntu] Problem with ATI, Error when trying to install fglrx
  150. [ubuntu] Gparted Question
  151. [ubuntu] Boot-up offers too many kernal choices, how to dump some?
  152. [ubuntu] unison cannot write to pendrive
  153. [ubuntu] 8.10 - Windows Lock up
  154. [kubuntu] Kmail Auto Send/Receive on Startup
  155. [ubuntu] Where can I download......?
  156. [ubuntu] nVidia 8400 GS cat get desktop effect to work
  157. [ubuntu] how do i rename keyboard layouts?
  158. [ubuntu] SVN repository HELP PLEASEEeeeee
  159. [ubuntu] How to add a virtual or emulated Floppy drive in Ubuntu
  160. [all variants] Pioneer 216 fail burn for DVD-R
  161. [ubuntu] [SOLVED] edit master boot record to use an existing grub install
  162. [ubuntu] fs-cache code
  163. [ubuntu] General Laptop Help Needed
  164. [ubuntu] HELP NEEDED! Can't Install ATI Driver !!!!
  165. [ubuntu] [SOLVED] messed up top panel
  166. [all variants] Question regarding Wine/Ubuntu
  167. [ubuntu] Update bios => grub error 13
  168. [ubuntu] Windows from one user session shown as blank in another
  169. [ubuntu] [SOLVED] how to get pidgin-panel-icon back after deleting by accident?
  170. [ubuntu] Jailbroken iPod touch: SSH » Host key verification failed.
  171. [ubuntu] Wallpaper Stuck??
  172. [xubuntu] Only boots from recovery mode
  173. [ubuntu] Run script that needs root rights when a non-sudoer usere logs in.
  174. [ubuntu] Files copied from a cdrom are write-protected
  175. [ubuntu] [SOLVED] Need root access to mount Vista partition
  176. [ubuntu] Partition Won't Automount
  177. [ubuntu] [SOLVED] grub does not show one of my operating systems
  178. [ubuntu] help on virtual box
  179. [ubuntu] where do i find internet radio
  180. [ubuntu] Radeon HD2600 Help
  181. [ubuntu] How do I compile Yahoo Flock?
  182. [ubuntu] Edge flip not working
  183. [ubuntu] Script to restart server on first day of month
  184. [ubuntu] [SOLVED] Partition and File System Questions
  185. [all variants] [SOLVED] How to stop automatic hyperlinking in OpenOffice?
  186. [ubuntu] Intalling Java Developer Kit
  187. [ubuntu] How to Obtain Permission to Delete Files
  188. [ubuntu] has anyone installed/used Nix, the package manager? Results?
  189. [ubuntu] Not really sure....??
  190. [ubuntu] Internal Bluetooth Support in VirtualBox Windows XP
  191. [ubuntu] [SOLVED] How do I get a screenshot of a GDM theme?
  192. [ubuntu] Ubuntu Install Problem
  193. [ubuntu] Directory Disappeared
  194. [ubuntu] Graphics Cards??
  195. [other] Identifying and using non-standard keys
  196. [ubuntu] Ubuntu 8.10 Open Office Strange Menu
  197. [all variants] Ubuntu killed my cellphone
  198. [ubuntu] How do I change an icon on my desktop
  199. [ubuntu] SUCCESS syncing Treo 500 with Evolution in Ubuntu 8.10
  200. [other] Bash script I just cant get to work... logic flaw?
  201. [ubuntu] Firefox scroll lag after zoomming in.
  202. [ubuntu] Any way to improve the look/font rendering of QT-based applications (Opera, Skype?)
  203. [ubuntu] Error in pdflatex
  204. [ubuntu] Ubuntu touchpad not working propoerly
  205. [ubuntu] Samba log.smbd error
  206. [ubuntu] Emerald set to load on startup?
  207. [ubuntu] dmcrypt - why am i missing /etc/conf.d/ folder?
  208. [ubuntu] Visual Effects - stopped working
  209. [ubuntu] [SOLVED] Ubuntu 810 - Thunderbird - WinXP
  210. [all variants] RAID-1 /home on running system
  211. [all variants] Bash Script: Help with preserving complex command line aruments
  212. [ubuntu] Is there a way to schedule Azureus to start/stop every day?
  213. [ubuntu] Ubuntu partition manager to dual boot vista
  214. [ubuntu] medibuntu packages not showing in synaptic
  215. [ubuntu] Firefox sounds coming from internal speakers on laptop
  216. [ubuntu] Wordpress index.php
  217. [ubuntu] Linux Ubuntu desktop....?
  218. [ubuntu] problem with executing crontabs - syncevolution
  219. [ubuntu] Ubuntu case mod/paint
  220. [all variants] Hey everybody, I have like five problems?
  221. [ubuntu] Can Ubuntu use a partition that it is out of the MBR for /home?
  222. [ubuntu] How do I install?
  223. [ubuntu] Boot Loader problem
  224. [ubuntu] nVidia NX8400GS question
  225. [ubuntu] Freeing up disk space
  226. [ubuntu] windows too big for screen
  227. [ubuntu] usb stick recommend
  228. [ubuntu] /proc/sys/sunrpc/nfsd_debug - permission denied
  229. [ubuntu] Monitor switching to analog mode
  230. [gnome] default x11 cursor
  231. [kubuntu] Easiest way of theming?
  232. [ubuntu] Evolution: Set the "sender name" in bold
  233. [ubuntu] Lost access to grub
  234. [ubuntu] Package of all Ubuntu Wallpapers
  235. modem
  236. [ubuntu] compiz fusion plugins?
  237. [ubuntu] Movie Player Audio
  238. [ubuntu] File shareing between computers
  239. [ubuntu] Network Manager maxing out cpu usage
  240. [ubuntu] [SOLVED] sshfs mp3fs server flac mp3 ipod etc
  241. [ubuntu] x bar (close botton) is missing
  242. [ubuntu] NVIDIA-Linux-x86-180.22
  243. [ubuntu] Unknown errors in syslog causing system freeze?
  244. [ubuntu] External Harddrive - Okay on XP, not on Ubuntu
  245. [ubuntu] How do you get pulse audio to work?
  246. [ubuntu] mounting partitions RW at boot
  247. [ubuntu] Multiple Xorg processes error!!!!
  248. [ubuntu] black label background in cairo dock
  249. [ubuntu] calling all pan users
  250. [ubuntu] [SOLVED] How to remove mounted drives from desktop