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] Help Computer Problems after attempt at updating
  2. [ubuntu] [SOLVED] Compaq Presario 1400 drivers
  3. [ubuntu] Setting up graphics card...
  4. problem with something, read on...
  5. [ubuntu] Annoying login problem
  6. [ubuntu] Able to read, but not write Fat32 Partition
  7. [ubuntu] X Server no support XRandR extension
  8. [kubuntu] Samba stopped working
  9. [ubuntu] Evolution, Hotmail and Dansguardian
  10. [ubuntu] Wine Problem
  11. [xubuntu] synaptic package manager failure?
  12. [ubuntu] Need help installing F4L (from .tar.gz or .deb)
  13. [ubuntu] Can i install .net on wine?
  14. [ubuntu] [SOLVED] "Desktop effects could not be enabled"
  15. [ubuntu] how to generate a new modprobe.conf
  16. [ubuntu] pgi compiler can not be installed in version 8.04
  17. [all variants] Gmail spam being pulled in Thunderbird
  18. [ubuntu] [SOLVED] install tint2 but i have a problem.
  19. [gnome] Opening gedit from a terminal window
  20. [ubuntu] Sound Blaster Audigy...How Do I get sound?
  21. [ubuntu] testdisk warning
  22. [kubuntu] [SOLVED] thunderbird fails to launch
  23. [ubuntu] BIG Problem
  24. [ubuntu] installing steam on hardy
  25. [ubuntu] DATA LOSS - Accidently started install on Backup Ext Drive - How to Recover?
  26. [ubuntu] Compiz to Start up without fusion-icon
  27. [ubuntu] [SOLVED] desktop is locking up
  28. [ubuntu] replacement for beagle
  29. [other] python and gtk issues
  30. [ubuntu] [SOLVED] Can't Add files
  31. [ubuntu] Problem with DPKG while trying to install software.
  32. [ubuntu] How do i find out what video card i have?
  33. [ubuntu] Standby Issues
  34. [ubuntu] Boot from second hard drive!
  35. [ubuntu] Mount Windows Drives
  36. [ubuntu] Conky customization
  37. [ubuntu] [SOLVED] Updates not installing (error:Broken Count >0)
  38. [ubuntu] help!! bad lag in games
  39. [other] Keeping the folder hierarchy for Packages intact?
  40. [ubuntu] Ubuntu live cd on Mac - copy file to PC - error
  41. [ubuntu] Well... [game and Skype problem]
  42. [ubuntu] [SOLVED] Annoying characters in terminal
  43. [all variants] Wireless Wep
  44. [kubuntu] Different font hinting for QT and GTK apps
  45. [all variants] Playing music over the network
  46. [ubuntu] How do i Install beryl?
  47. [ubuntu] Sound doesn't work for totem/ mozilla - Hardy
  48. [ubuntu] Emerald and Custom Icons
  49. [ubuntu] Skype hangs on signon
  50. [ubuntu] Problems installing Airsnort
  51. [xubuntu] Ultra1: xserver running but nothing on screen
  52. [kubuntu] vim ignores "vi:" directives
  53. [ubuntu] [SOLVED] Which DVD Burner Would You Buy?
  54. [ubuntu] Desktop is empty and cannot access my folders
  55. [ubuntu] Lost fonts and wont boot to desktop
  56. [gnome] [SOLVED] Run a bash script without Terminal
  57. [xubuntu] [SOLVED] Theme only works if apps are run as root
  58. [ubuntu] PNG to Usplash??
  59. [all variants] How to disable skype red flag
  60. [ubuntu] Setting up linebreaks in gedit@ubuntu
  61. [ubuntu] [SOLVED] Glib critical hash message on shutdown.
  62. [ubuntu] Backup before install Hardy
  63. [ubuntu] Edit Menu problem
  64. [ubuntu] Problem installing MySQL -- HELP!!!
  65. [gnome] Problem with Pcman file manager
  66. [all variants] Script to chmod / create directories / files
  67. [ubuntu] Is usplash in hardy different?
  68. [all variants] Try out the Futurelooks 3 Alpha!
  69. [ubuntu] upgreade when badly wrong
  70. [all variants] BASH quoting (character escaping)
  71. [ubuntu] [SOLVED] 911:my system boots to grub prompt!
  72. [ubuntu] Ubuntu HowTo
  73. [ubuntu] Problem with Firefox
  74. [ubuntu] gscan2pdf doesn't create pdf
  75. [ubuntu] S-viedo to TV vith nVidia Geforce FX 5200
  76. [ubuntu] Todays 2.6.24-20 Kernel update buggy ?
  77. [ubuntu] [SOLVED] how to change default mail program?
  78. [ubuntu] System start problem......
  79. [ubuntu] Sound completely disappears
  80. [gnome] Ever heard of a CPU leak?
  81. [ubuntu] how can i format an unallocated ex-hdd
  82. [ubuntu] 1 click backup/restore
  83. [all variants] how to convert a logical partition to a primary ?
  84. [all variants] [SOLVED] renaming a group of files
  85. [ubuntu] Command line installation
  86. [ubuntu] free Conexant softmodem driver no speed limit?
  87. [ubuntu] v8.04 Keyring with evolution
  88. [ubuntu] Palm E2
  89. [ubuntu] ssh freezes after login
  90. [ubuntu] jruby 1.1.3 install
  91. [all variants] Logging off the console user remotely?
  92. [ubuntu] my new scanner doesn't work in Ubuntu
  93. [ubuntu] Deskbar Addons for Google, Wikipedia, and others
  94. [ubuntu] Ubuntu hangs after logon
  95. [other] games dont work in 1024x768
  96. [ubuntu] [SOLVED] How to mount automatically at reboot?
  97. [ubuntu] How to add new items into the desktop menu?
  98. [ubuntu] Is it possible to create a hyperlink to you email inbox?
  99. [all variants] software to cover up desktop??
  100. [ubuntu] Unable to login
  101. [ubuntu] Gmail smtp server don't work in thunderbird and evolution
  102. [ubuntu] [SOLVED] Make a list over my programs?
  103. [ubuntu] How do I write Linux (in this case ubuntu alternate) to a disk?
  104. Install UbuntuStudio on ubuntu
  105. [all variants] [SOLVED] Avant digital clock getting smaller and smaller
  106. [ubuntu] Debian is missing in action!
  107. [other] Video podcast on Ubuntu?
  108. [ubuntu] Latex hyperref package warning; bad bookmark in pdf;
  109. [ubuntu] another iptables question
  110. [ubuntu] Noob Help Me Please
  111. [ubuntu] mouse configuration
  112. [all variants] [SOLVED] startx broken!!!1
  113. Problem uninstalling Ubuntu 8.04 from windows
  114. [ubuntu] [SOLVED] vidalia problems: cant find relays
  115. [gnome] Any way to make panels transparent?
  116. [ubuntu] Grub error when upgrading to larger drive.
  117. [ubuntu] Cannot write to new EXT3 Partition
  118. [ubuntu] clipboard copy-paste glitch
  119. [ubuntu] Hotmail Icons Look Weird
  120. [ubuntu] Associating icons with applications
  121. [ubuntu] Skype - No outgoing sound
  122. [ubuntu] Foxfire Links Winxp to Ubuntu
  123. [ubuntu] Disk usage analyzer thinks I have larger hard drive
  124. [ubuntu] Why does wine suck?
  125. [ubuntu] [SOLVED] mouse wheel depression doesn't work in Ubuntu
  126. [ubuntu] [SOLVED] cd/dvd burner
  127. [ubuntu] right mouse click problem in firefox
  128. [ubuntu] aplay -l
  129. [ubuntu] Firefox leaves a huge gap between ever word
  130. [ubuntu] try to automate unison via cron fails (here)
  131. [ubuntu] [SOLVED] Rearranging PDF pages
  132. [ubuntu] Ubuntu drivers question Toshibe L40 17Q
  133. [ubuntu] [SOLVED] Blank Java Applications using Eclipse
  134. [ubuntu] Evolution to Exchange server lockup freeze
  135. [ubuntu] [SOLVED] USB file transfer, "file too large"
  136. [ubuntu] Nvidia X Server broken
  137. [ubuntu] Downgrading from Flash 10 Beta 2 to Beta 1
  138. [all variants] Root filesystem mounts read-only
  139. [ubuntu] Using floppy drive
  140. [ubuntu] help wanted with vnc server
  141. [ubuntu] Screen flickers during 3d gameplay
  142. [ubuntu] Google Earth
  143. [ubuntu] files list file for package 'thunar' is missing final newline
  144. [all variants] grub menu help
  145. [ubuntu] [SOLVED] problem running flock 1.2 on ubuntu hardy :(
  146. [ubuntu] New User
  147. [ubuntu] [SOLVED] turn conky off?
  148. [ubuntu] mysql database backup archiving?
  149. [all variants] How to know if someone is stealing my wireless connection ?
  150. [ubuntu] Configuring build tools for Kile (file path)
  151. [SOLVED] Wubi Traces
  152. [ubuntu] Backups failing! logs inside!
  153. [all variants] Possible to package compcache for Hardy?
  154. [kubuntu] Kubuntu 8.04 install gets stuck.
  155. [ubuntu] export JAVA_HOME=<PATH>
  156. [all variants] Financial software that can import scheduled transactions from CSV?
  157. [ubuntu] compiz upgrade?
  158. [ubuntu] dual boot problems!
  159. [other] Can't print blue in Hardy
  160. [ubuntu] Taskbar troubles [SOLVED]
  161. [ubuntu] Laptop gets incredibly hot!
  162. [gnome] Gnarwhal Project - A Twin-Pane File Manager For GNOME/GTK
  163. [xubuntu] filesystem check fails
  164. [ubuntu] what is the easiest way to have a flash editor in linux?
  165. [ubuntu] i need urgent help. i have absolutely no idea what to do now
  166. [all variants] multi-line text search
  167. [ubuntu] SCIM Help
  168. [other] using grub, xp won't boot, used fixmbr, now it won't boot anything!!!
  169. [all variants] Post your DMENU scripts with screenshots
  170. [kubuntu] Cant switch to administrator mode in Kubuntu 8.04 KDE 4
  171. [all variants] Alternative to Parallels Workstation for Linux
  172. [all variants] Old PC Linux Install
  173. [ubuntu] [SOLVED] Set Default network card for roaming mode?
  174. [ubuntu] Where is the bash file? and network drivers.
  175. [kubuntu] [SOLVED] fschk error 8 on start up
  176. [ubuntu] Setup Nvidia XConfig
  177. [ubuntu] [SOLVED] flash plugin in firefox
  178. [ubuntu] Wubi can print test page but no others
  179. [ubuntu] Yet Another .avi File Question
  180. [ubuntu] Problems after system change
  181. [ubuntu] Cannot Boot to Windows Boot Floppy/CD Anymore
  182. [ubuntu] Have a problem
  183. [ubuntu] How do I schedule Unison with cron?
  184. [ubuntu] [SOLVED] windows wont show in pannel when minimized
  185. [ubuntu] [SOLVED] WTF?! Malicious Code in Ubuntu?!
  186. [ubuntu] ubuntu crashed .. danger of loosing 2 months work
  187. [ubuntu] Xpress chipsets help
  188. [ubuntu] [SOLVED] I need some Icon help
  189. [kubuntu] [SOLVED] How do I use the Electric Sheep screensaver with Kubuntu?
  190. [ubuntu] [SOLVED] Copy Folder to USB Drive?
  191. [ubuntu] Firefox Isn't Rendering Webpages Properly
  192. [ubuntu] Menus on upper panel change direction every time I restart!
  193. [ubuntu] System/Preferences/Main Menu is missing
  194. [other] Recomend a distro to me for aging desktop
  195. [kubuntu] Enabled desktop effects, now black screen
  196. [kubuntu] googleearth only connects from terminal
  197. [ubuntu] Why Transmission Outdated?
  198. [all variants] aMSN install problems
  199. [ubuntu] New to Ubuntu today!
  200. [ubuntu] How to save when editing grub
  201. [ubuntu] Someone help me! its compiz related!
  202. [ubuntu] Partitioning error
  203. [all variants] [HOWTO] Show Amarok cover in Conky
  204. [kubuntu] Firefox 3 and Plugins
  205. [all variants] Paying for Tablet PC support?
  206. [all variants] Conky Weather Forecast Python Script
  207. [ubuntu] [SOLVED] Enabling Japanese language support and fixing fonts
  208. [ubuntu] Interesting issues with taskbar
  209. [ubuntu] terminal problem
  210. [ubuntu] Bluetooth Problem
  211. [ubuntu] Fickle GDM/Login Problem: works after windows boot?
  212. [all variants] PAL output on Intel 915
  213. [ubuntu] use persistant usb ubuntu to install ubuntu
  214. [ubuntu] Could not acquire compositing manager selection on screen 0 display ":1.0"
  215. [ubuntu] Help migrating from Windows XP
  216. [ubuntu] My USB Flashdisk no automount
  217. [ubuntu] system76 vs emperorlinux
  218. [ubuntu] Logitech Cordless Trackman Optical (Reviving this thread)
  219. [ubuntu] Accessing Evolution from the command-line
  220. [ubuntu] Java troubles
  221. [ubuntu] Firefox addons won't install
  222. [ubuntu] probs conecting to internet or modem
  223. [ubuntu] How do VNC to unbuntu from a mac
  224. [ubuntu] Compiz Won't Load On Startup WAS NOT SOLVED
  225. [ubuntu] Ubuntu panic - blinking caps lock - resolved!
  226. [ubuntu] catch some ed2k link in my aMule
  227. [ubuntu] Cant install NVidia X driver
  228. Boot on Startup
  229. [ubuntu] No sound
  230. [ubuntu] Deleting Windows
  231. [ubuntu] [SOLVED] Halp! System Lock-up
  232. [ubuntu] Trying to uninstall program that's NOT in the repos.
  233. [kubuntu] [SOLVED] Hard drive power on/off (sleep?)
  234. [ubuntu] [SOLVED] Slow menu with dual monitor on one monitor
  235. [ubuntu] gvfs-fuse-daemon is now my home folder
  236. [ubuntu] Problems starting Eve-online with premium gfx in wine
  237. [ubuntu] Login Timeout Problem
  238. [ubuntu] synaptic package manager issue
  239. [ubuntu] firefox segmention fault after reinstall
  240. [ubuntu] Scrolling issue!
  241. [xubuntu] [SOLVED] Latest kernel messed up my X
  242. [ubuntu] Pidgin and SSL Certs
  243. <SOS> Ubuntu Linux installation Hazard
  244. [all variants] CurVe installation in AUCTeX
  245. [ubuntu] Mbusa
  246. [ubuntu] Lost my applications browser ect
  247. [ubuntu] Move AWN?
  248. [ubuntu] Options to access a problem PC
  249. [ubuntu] Kernel seg fault causing application crash
  250. [kubuntu] How to make a "startup" program