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. [other] xbox linux?
  2. [ubuntu] memory?
  3. [gnome] gnome-keyboard-properties problem
  4. [ubuntu] (Almost) compelte lockups
  5. [other] air compressor VS mobo?
  6. [ubuntu] Usenet Reader andBinary downloader
  7. [ubuntu] new user trying to setup wine and IE and can not get cabextrac
  8. [ubuntu] Backup Solution External USB Disk Windows Readable?
  9. [ubuntu] Update manager showing unselectable recommended update
  10. [ubuntu] How to check memory usage?
  11. [ubuntu] GRUB boot problems
  12. [ubuntu] HDD or MoBo issues?
  13. [other] [SOLVED] harddrive help?
  14. [ubuntu] GRUB Errors!
  15. [ubuntu] How to setup teenspirit on Wine
  16. [kubuntu] Making the volume, contrast, mute keys etc work
  17. Error 16: Inconsistent filesystem stucture
  18. [ubuntu] Can see but can't connect to a network:gutsy
  19. [ubuntu] Directory Loop?
  20. [ubuntu] Myth Transcode DaemonWont Start
  21. [kubuntu] Basic questions about KDE4
  22. [ubuntu] Separate process from terminal window
  23. [ubuntu] docking into taskbar/panel
  24. [other] fan places?
  25. [ubuntu] [SOLVED] Hardy 8.04 Freezes during boot/start up
  26. [other] [INFO] gnewsense does not allow desktop effects to be enabled
  27. [ubuntu] Brightness issue
  28. [ubuntu] [SOLVED] Manually Installing Packages with Cyclic Dependencies
  29. The internet not working on a fresh Wubi install
  30. [other] Were can i installl LED lights?
  31. [ubuntu] the effects were enabled when using live cd but there is a error after installing
  32. [ubuntu] [SOLVED] video file thumbnails
  33. [ubuntu] How to use Firefox to browse web pages that design for IE?
  34. [ubuntu] English (UK) locale problem
  35. [ubuntu] Secure Website Hangs in FF3
  36. [ubuntu] Webcam suggestions?
  37. [all variants] [GRUB] Too many booting options...
  38. [ubuntu] keyboard shortcuts
  39. [ubuntu] [SOLVED] After login, nothing on screen
  40. [ubuntu] Themes broken after Update
  41. [ubuntu] Getting Programs in the awn dock
  42. [ubuntu] install on raid using dmraid problem
  43. [ubuntu] user settings
  44. [ubuntu] stuck resolution
  45. [ubuntu] john the ripper troubles
  46. [ubuntu] autorun not running
  47. [ubuntu] Linux-image 19 not working...
  48. [ubuntu] Why ubuntu flipped sda and sdb?
  49. [ubuntu] GRUB And Kalyway Leopard
  50. [ubuntu] Keyboard question
  51. [ubuntu] Can't get native screen resolution?
  52. [ubuntu] PRBoom Question
  53. [ubuntu] Screen Resolution Help
  54. [all variants] Annoying FGLRX problem, thought it was fixed!
  55. [ubuntu] mounting problem
  56. [ubuntu] fstab - Understanding my partition layout
  57. [ubuntu] Bizarre problem: Ubuntu shows black screen on ~80% of the boots
  58. [ubuntu] Dual Monitor Issue with Firefox
  59. Probelm installing and need to remove Ubuntu from grub
  60. [ubuntu] No Such Directory
  61. [ubuntu] Azureus wierd problems
  62. [ubuntu] Help with DEB error
  63. [ubuntu] ATI black screen before login
  64. [ubuntu] How to install Java SE 6 on ubuntu?!?!
  65. [ubuntu] Ubuntu studio very slow to load after login
  66. [ubuntu] Posts dissapearing
  67. [ubuntu] Dual-boot with two HDs
  68. [ubuntu] No top bar on windows...
  69. [all variants] Setting/Updating ubuntu variant to be an app compiler
  70. [ubuntu] Mouse Malfunctioning
  71. [ubuntu] Sigmaplot Clone for Ubuntu??
  72. [xubuntu] password not asked when wake up from suspend
  73. [kde] Compiz Fusion and KDE 4.1 Issue - No Menu Bar/Panel
  74. [ubuntu] GDM Automatically Select User?
  75. [ubuntu] HELP! g++ dependency issue...
  76. [ubuntu] horizontal lines across screen when i run FlightGear
  77. [ubuntu] xmodmap apple slim keyboard print screen problem
  78. [ubuntu] Setting GRUB as the bootloader after Windows removes it
  79. [all variants] Firefox is not showing page-defined fonts
  80. [SOLVED] No direct rendering?
  81. [ubuntu] Suddenly Turning Off
  82. [ubuntu] python-matplotlib
  83. [ubuntu] [SOLVED] Hard Drive swap
  84. [all variants] [SOLVED] Drive letters for optical and floppy drives
  85. [all variants] [SOLVED] Command Line access to 2nd Hard Drive
  86. [ubuntu] Using back over the network?
  87. [ubuntu] Password
  88. [ubuntu] [SOLVED] Problem deleting files with Nautilus
  89. [ubuntu] new to ubuntu
  90. [ubuntu] [SOLVED] watching video while using compiz
  91. [gnome] Strange problem with Gnome System Monitor applet
  92. [ubuntu] Mouse middle click
  93. [all variants] [postfix + mysql] How to pass more than one argument?
  94. [ubuntu] Problem with an AL file
  95. [ubuntu] Enemy Territory "Received signal 11, exiting..." and other errors
  96. [ubuntu] HUGE problem: ImportError: No module named gtk2
  97. [ubuntu] About to install Ubuntu.. internet and format help!
  98. [ubuntu] problem with unrar free
  99. [ubuntu] sh: Permission denied
  100. [ubuntu] Need help! No ubuntu loading screen and..
  101. [ubuntu] help me to use terminal
  102. [ubuntu] Ebox installation
  103. [ubuntu] Can't change screen resolution
  104. [ubuntu] Cannot get Tor+Privoxy and/or Tork/Tor Button to work within Ubuntu
  105. [ubuntu] Blitty compiz
  106. [ubuntu] notification area not working
  107. [xfce] Fonts Full Hinting
  108. [ubuntu] how can i install grub?
  109. [ubuntu] Crossover and Ubuntu x64 8.04 distro
  110. [ubuntu] Gparted Help w/ live CD
  111. [ubuntu] [SOLVED] Updated, Networking Icon Disappears?
  112. [ubuntu] Command to generate visual beep?
  113. [ubuntu] Rotating cube with Scroll wheel crashes X
  114. [ubuntu] Booting into brown screen
  115. [ubuntu] [SOLVED] Gimp problems
  116. [all variants] Bash Script Issue
  117. [ubuntu] How to send a fax from the computer using the modem?
  118. [ubuntu] Nvidia XServer & XRandR questions (rotating screen and maximizing appliactions)
  119. [ubuntu] Hibernate - /dev/ device name changes
  120. [ubuntu] [SOLVED] Returning from: apt-get install xserver-xgl compiz
  121. [other] touchpad tap disable?
  122. [ubuntu] Screenlets - Can the Slideshow widget look in subfolders?
  123. [ubuntu] help please, psx emulator with daemon tools
  124. [ubuntu] already installed 32, need steps on installing windows and then 64 now.
  125. [ubuntu] Script for hellanzb
  126. [all variants] Conceptual Two Disk RAID-5....Possible?
  127. [ubuntu] How can I change the color of a window border and the place where title text appears
  128. [ubuntu] Do you use Gimzo5?
  129. [ubuntu] What version should I install?
  130. [all variants] uninstalltion of manually compiled app?
  131. [ubuntu] boot sequence hangs for a while
  132. [ubuntu] Start Programs when i Logon
  133. [all variants] Deluge error
  134. [ubuntu] Installing the proper video drivers
  135. [ubuntu] Quiter Problem
  136. [xubuntu] installing and using wine
  137. [ubuntu] Cannot Burn CD/DVD
  138. [all variants] Less is more?.. Core 2 Duo vs Celeron, Hardy, NTP, NTPDATE
  139. [ubuntu] [SOLVED] test page from a printer crashes (samba)
  140. [all variants] How to re-install all packages?
  141. [ubuntu] No desktop icons/wallpaper
  142. [ubuntu] nautilus general protection errors
  143. [ubuntu] Viewing the windows partition in ubuntu
  144. [all variants] expand/collapse in emacs
  145. [ubuntu] [SOLVED] using compiz
  146. [ubuntu] Doesn't retain setiings on reboot. (Video & wireless cards)
  147. [ubuntu] Obtaining the MAC OS look...
  148. [ubuntu] Desktop effects could not be enabled.
  149. [ubuntu] Update notifer hangs
  150. [ubuntu] How to stop ubuntu from rebooting?
  151. [ubuntu] Can't delete from trash bin
  152. [ubuntu] [SOLVED] Why no Java plugin module available on one computer
  153. [ubuntu] Launching Application w/ Sun Java JRE?
  154. [all variants] Loaded module "X" is called "Y" in modules directory--why not the same?
  155. [all variants] Swap partition not being utilized?
  156. [ubuntu] ubuntu boot problem error 17
  157. [ubuntu] Passing variables w/ exec
  158. [ubuntu] Good Image Manager
  159. [ubuntu] TV Card Tuner Problem (Composite Working)
  160. [ubuntu] Gnome-Do shows wrong pictures of contacts
  161. Filesystem errors!
  162. [ubuntu] Adding an Amiga USB HD to transfer files
  163. [all variants] UTC time
  164. Ditching Windows - a few quick questions
  165. [ubuntu] [SOLVED] Top panel issues
  166. [all variants] How do I disable/uninstall KWallet on custom LiveCD
  167. [ubuntu] How to make an app start at system startup
  168. [all variants] Launchpad statistics
  169. [ubuntu] 3 long, but surely easy to answer questions
  170. [all variants] turning off microphone output to speaker
  171. [ubuntu] Puting a conky on the desktop and customising it
  172. [ubuntu] Website Backend + Gallery 2 protection
  173. [ubuntu] how do create a Shortcut on our desktop
  174. [all variants] "Shared Documents" Equivalent
  175. [ubuntu] getting rid of useless processes
  176. [ubuntu] Possible to add preview pop-ups to apps on panel?
  177. [ubuntu] How do i get my Harddrives to Show up on my Desktop?
  178. [ubuntu] Wordpress+Apache not working externally
  179. [ubuntu] how to create a proxy server in ubuntu
  180. [ubuntu] Primary display issue
  181. [ubuntu] Move old Outlook mail into Linux
  182. [ubuntu] Brightness
  183. [ubuntu] Get error not i am runnin live cd
  184. [ubuntu] The icons in the right of the desktop...
  185. [ubuntu] How do I get javac working within Ubuntu terminal?
  186. [all variants] Job on certain tty with upstart
  187. [ubuntu] Nautilus Crashes
  188. [ubuntu] HP Touchsmart drivers
  189. [ubuntu] [SOLVED] Terminal GUI
  190. [ubuntu] xmodmap for latin accents in hardy heron
  191. [ubuntu] Calendar Alarms? or a different Program?
  192. [ubuntu] dock help
  193. [ubuntu] GNOME Error in Terminal!
  194. [all variants] How do I prevent automount of any external devices
  195. [ubuntu] Random hard lockups - Any ideas?
  196. [other] What OS should i get?
  197. NTFS5: no wubildr on Latitude d810 ( unskilled user)
  198. [ubuntu] taskbar appearance
  199. [ubuntu] [SOLVED] File Permissions!!!!!!!!!
  200. [all variants] rtGui
  201. [ubuntu] [SOLVED] Default browser for evolution
  202. [ubuntu] [SOLVED] permissions problem
  203. [ubuntu] "open with" help
  204. which hard disk should i use?
  205. [kubuntu] Regular crashing of Kwin and unable to replace it wwith compiz in KDE 4.1
  206. [other] No Ubuntu or Linux Mint LiveCDs boot at all
  207. [ubuntu] some vim questions
  208. [all variants] [SOLVED] Any way to get a list of files included in a torrent to a text file?
  209. [ubuntu] help with gnome-libs-devel
  210. [all variants] change sudo pass to root pass
  211. [ubuntu] hard drive space missing?
  212. [ubuntu] HELP customizing desktop on Ubuntu live CD
  213. Mounting NTFS partition in Wubi-ized Kubuntu?
  214. [ubuntu] [SOLVED] Source s list code
  215. [ubuntu] Fdisk problems
  216. [ubuntu] [SOLVED] Looking for a "Full Sources List"
  217. [ubuntu] Monodevelop
  218. [ubuntu] Can't Open Apps
  219. [all variants] Help Me Write a Backup Script
  220. [ubuntu] Cannot browse bluetooth phone with OBEX anymore
  221. [ubuntu] Execute Script without Prompt
  222. [all variants] Hard drive salvage software?
  223. [ubuntu] XPS Document
  224. [ubuntu] Installing Windows after Ubuntu
  225. [mythbuntu] My big MythTV project
  226. [ubuntu] X login hangs, no sound, no network, multiple errors
  227. [ubuntu] 3d chess refreshes
  228. [all variants] keyboard arrows as a mouse?
  229. [ubuntu] 'quit' broke after using 'entrance'
  230. [ubuntu] Installing eclipse and java?
  231. [ubuntu] is there a way
  232. [xubuntu] Startup scripts and daemon handling?
  233. [ubuntu] I still have no sound
  234. [ubuntu] Shut Down Problem
  235. [all variants] [SOLVED] Ubuntu LiveCD crashes (turns off automatically) during use
  236. [ubuntu] Wish to remove Google Earth and go back to older version - HOW?
  237. [ubuntu] ???Bad EIP Value, Kernal Panic???
  238. [ubuntu] ipod
  239. [ubuntu] Getting a Debian login screen and error about GNOME loading
  240. [ubuntu] Permissions
  241. [ubuntu] recommended programs for ubuntu?
  242. [ubuntu] How to speed up Vino?
  243. [all variants] partitioning formating and os set up (multiple hdds)
  244. [gnome] Aptitude + "purge" = possible probem )-:
  245. [ubuntu] Completely Confused. . . How do I get in
  246. [all variants] how do access a Sata hard drive using an os installed on an IDE.
  247. [other] interface gone
  248. language question
  249. [ubuntu] vista bootloader not letting me into ubuntu...
  250. [kubuntu] KDevelop unable to compile