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] Compiz Desktop Questions
  2. [ubuntu] How to remove Google Desktops from Gadget list
  3. [ubuntu] Help - Kopete Webcam
  4. [xubuntu] Excessive X11 CPU Usage
  5. [ubuntu] Need to send in my laptop. How to hide ubuntu?
  6. [kubuntu] how do I run a simple python program?
  7. [ubuntu] Where to set up email accounts in Evolution?
  8. [ubuntu] wow problem please help
  9. [other] What is the type for "e"
  10. [all variants] Ubuntu non-RAID, Vista RAID - Grub HELP?
  11. [all variants] Windows virtual machine
  12. [kubuntu] Trying to install, cmake errors
  13. [ubuntu] DVD2HDD requires Gambas?
  14. [ubuntu] Need Public signing Key
  15. [edubuntu] Virtual Server Install HELP!!!
  16. [all variants] Refreshing lines in bash
  17. [ubuntu] Very Specific Multi-Monitor Request
  18. [SOLVED] not able to access either gnome-art or splash screen
  19. [other] Fixing vista mbr...no vista cd
  20. [ubuntu] Ubuntu 8.10 crash.
  21. [ubuntu] Wine - Turn .ttf to .fot
  22. [ubuntu] Just like to say that....
  23. [ubuntu] having trouble dual booting xp
  24. [SOLVED] How to make small adjustments to Xfce themes
  25. [ubuntu] Just installed Ubuntu ... question regarding GRUB loader?
  26. [other] Can Ubuntu see encrypted files?
  27. [ubuntu] Music CD's won't read
  28. [ubuntu] Currency Screenlets
  29. [ubuntu] GIMP 2.6 still looks & acts like 2.4
  30. [ubuntu] Delete files to reduce size before burning iso file?
  31. [ubuntu] Cannot bootup Ubuntu - screen corrupted
  32. [kde] 3d Windows on KDE4.2, rotate cube with Ctrl+Alt+MouseBtn
  33. [kubuntu] Problem in Grub - Missing new kernel
  34. [all variants] Cannot Kill Process - tried everything I know!
  35. [ubuntu] Error message on installing and usb thumb
  36. [ubuntu] Local host Directory
  37. [ubuntu] Nvidia 180.25 beta
  38. [ubuntu] Dual Screen odd colours
  39. [ubuntu] Error writing .bin/.cue files
  40. [all variants] MSN trouble through pidgin / aMSN / Emesene
  41. [ubuntu] Youtube - No Sound
  42. [ubuntu] Lost linux partitions after inserted Windows CD
  43. [ubuntu] how to insert above cube picture ?
  44. [ubuntu] Copying DVD image... Disc not big enough?
  45. wubildr.mbr boot error
  46. [gnome] Mouse shortcuts in nautilus?
  47. [all variants] md5 file comparison
  48. [ubuntu] Change default permissions gvfs mounted files
  49. [ubuntu] wubildr.mbr boot error
  50. [all variants] Cairo-Dock2 : new beta available !
  51. PDF modifier
  52. [ubuntu] Mouse Scroller Button Enhancement?
  53. [ubuntu] Can't enable desktop effects on Intel 82810 (CGC) Chipset
  54. [ubuntu] Re-partition?
  55. [ubuntu] openoffice
  56. [all variants] ext3 partition won't mount any more
  57. [ubuntu] TV over French DARTYBOX internet connection
  58. [ubuntu] Disable right mouse button
  59. [SOLVED] Partition resize causes data loss (duh)...
  60. [ubuntu] Help needed, opened windows take up all the screen!
  61. [ubuntu] dead power supply
  62. [other] external hard drive issue
  63. [ubuntu] No Wired Network After Update
  64. [ubuntu] install failed of ubuntu on t1000
  65. [ubuntu] .ISO image mounting question/problem ???
  66. [ubuntu] No sound?! I have drivers updated.
  67. [ubuntu] Remote Desktop Connection - black screen?
  68. [ubuntu] how to play .bin file?
  69. [ubuntu] PulseAudio boot problem
  70. [ubuntu] installed opera 9.6 it's running really slow
  71. [ubuntu] Disk partition
  72. [ubuntu] Where is the rest of my hard drive space
  73. [ubuntu] Attemting to install a Lexmark 1100
  74. [other] google earth imediate colse
  75. [xubuntu] Cron interactive job
  76. [ubuntu] adobe reader not default for pdf in firefox
  77. [ubuntu] Several problems
  78. [all variants] Random, complete hangs + disk activity
  79. [ubuntu] Gksu and umask problem
  80. [other] GFX Grub not loading graphics
  81. installing ubuntu inside windows
  82. [other] Monitoring multiple PCs
  83. [ubuntu] Compiz Fusion - Window Disappears
  84. [ubuntu] Issue with init.d script in cronjob
  85. [ubuntu] network manager screwed up...
  86. [ubuntu] sudo forgets password quickly in a single terminal
  87. [all variants] USB Mem key with bootable Linux and other bootable isos
  88. [ubuntu] The best PC troubleshooting applications. What are they?
  89. [all variants] Chrooted Kernel Issues With VirtualBox
  90. [ubuntu] How do I burn .cue files?
  91. [ubuntu] opening .swf files
  92. [all variants] Compiz max texture size workaround
  93. [all variants] Getty won't respawn on ttys
  94. [ubuntu] Backup open files without manual client installation
  95. [ubuntu] folding@home in ubuntu on a ps3
  96. [all variants] Very easy way to install ElectricSheep
  97. [ubuntu] ceateing file in home dir
  98. [ubuntu] Can't get past logon :(
  99. [ubuntu] Backup - Partition & Full Disk
  100. [ubuntu] Ubuntu screwed my USB ports on my mobo.
  101. [ubuntu] "Failed to fetch" everything.
  102. [ubuntu] Problems opening downloaded files with selected application in Firefox
  103. [ubuntu] During installation, computer fried :S, can you boot from recovery mode?
  104. [ubuntu] Image size column in Nautilus
  105. [ubuntu] customize terminal prompt
  106. [ubuntu] puzzled by output from uniq
  107. [ubuntu] Is it possible to move a user accounts
  108. [ubuntu] HELP Ive forgotten my password :S
  109. [ubuntu] printer not printing. error log complains about authentication
  110. [ubuntu] Can I dual screen with a VGA split? if so how to I get the second monitors name?
  111. [ubuntu] Remote Desktop Mouse Messed Up
  112. [ubuntu] Can't delete item in Trash
  113. [ubuntu] Locked myself out of machine, replaced /bin/bash with /usr/bin/mutt
  114. [ubuntu] Runlevel
  115. [ubuntu] eee pc use in car
  116. [ubuntu] Help installing Java, problem with DPKG...
  117. [all variants] Perl vs Python ---- Where should I spend my time?
  118. [ubuntu] Installed Mint and lost nvidia drivers in Ubuntu
  119. [ubuntu] xampp
  120. [ubuntu] Help I have broken GDM
  121. [ubuntu] Where can I get this theme?
  122. [ubuntu] XFS - unmounts by itself
  123. [ubuntu] Login appears on the "wrong" screen.
  124. [ubuntu] i hate the bottom panel
  125. [ubuntu] Installing the GNU Scientific Library (GSL)
  126. [ubuntu] Resolution changes every third restart
  127. [ubuntu] utf-8 does not work any more
  128. [ubuntu] mdadm, creating a RAID 1 array, for data storage
  129. [ubuntu] any way to do AIM Videochat?
  130. [all variants] 3 to 5 folks share Evolution tasks & calendar to web
  131. [ubuntu] Formatting a USB Hard Drive with ext3
  132. [ubuntu] moto4lin doesn't recognize my Razr v3re. Any other programs?
  133. [ubuntu] Firefox from Getfirefox.com
  134. [kde] If I install KDE 4.2 before it's in the repository ...
  135. [ubuntu] What is above my VGA input? Its green with 9 pins, help please?
  136. Error when updating
  137. [ubuntu] AWN - problem with custom launcher
  138. [ubuntu] lost terminal session and got this when I tried again
  139. [all variants] feisty source.list (where is the old repositorys?)
  140. Opposite of Wubi
  141. [ubuntu] Ubuntu 8.10 installation "Loading Please Wait"
  142. [SOLVED] New window
  143. [ubuntu] reiserfs and power outage
  144. [ubuntu] Google Earth 5 crashes
  145. [ubuntu] Find files and display file size
  146. [ubuntu] Problems after resizing partitions
  147. [ubuntu] large icons & alignment
  148. [ubuntu] rythmbox in conky
  149. [ubuntu] Installing Windows after Ubuntu
  150. [ubuntu] Cant Adjust Screen Res
  151. [ubuntu] no menus
  152. [ubuntu] wine not opening any application
  153. [ubuntu] OpenOffice.org menus and buttons like to hide
  154. [all variants] How to know when to reboot?
  155. [ubuntu] No current session tab
  156. [ubuntu] How Do I Write A Bin File?
  157. [ubuntu] Google Earth 5 - Fonts all weird, won't run unless SUDO
  158. [ubuntu] Creative-Sound Blaster Audigy SE Sound Card issue
  159. [ubuntu] uber-linux types.....how come Ubuntu performs so much better?
  160. [ubuntu] error in pack manager
  161. [ubuntu] Ubuntu 8.10 booting on External drive
  162. [xubuntu] Booting
  163. [ubuntu] deleting files in the filesystem
  164. [ubuntu] Suspend to Disk Restore Problem (Bug?)
  165. [ubuntu] Updated... firefox and opera goofy.
  166. Accidentally uninstalled python
  167. [ubuntu] OpenSceneGraph
  168. [ubuntu] Nautilus audio file preview icon
  169. [ubuntu] Problems with boot screen not appearing
  170. [ubuntu] Spell Checker Confusion
  171. [ubuntu] How to run without a window manager?
  172. [ubuntu] Enable desktop effects
  173. [all variants] load emergency tool to ram
  174. [ubuntu] Pidgin Aim Down?
  175. [ubuntu] Printing to network printer - works for somethings and not others
  176. [ubuntu] Unable to log in
  177. [ubuntu] Virtualbox won't connect to my usb device
  178. [ubuntu] Next LTS
  179. [ubuntu] Weird Cursor Issue
  180. [ubuntu] Ati 9550 Xinerama fails; fglrxinfo fails
  181. [ubuntu] alias list
  182. [all variants] Qt4 appearance in KDE3.5
  183. [ubuntu] problems after driver install
  184. [ubuntu] Removing some of all the bloat in gnome!
  185. [ubuntu] domount? What's that?!?
  186. [gnome] GTK and Epiphany User Style Sheet
  187. [other] wont boot xp after linux hd removed
  188. [ubuntu] How do I change the order of startup programs.
  189. [ubuntu] using cron to save a different file for each execution
  190. [ubuntu] error msg when reseting computer...
  191. [ubuntu] Need help with multiple monitors and palm
  192. [ubuntu] HELP! I screwed up my sources file
  193. [ubuntu] Unsupported graphics card?
  194. [ubuntu] Diskspace disappears
  195. [xubuntu] VirtualBox Error Help
  196. [ubuntu] Songbird Not Playing
  197. [kubuntu] System crashed now cannot login
  198. [ubuntu] Yet another Noob :|
  199. [ubuntu] Google Earth 5 broke my system
  200. [ubuntu] Going full Ubuntu help please
  201. [kubuntu] qca library help
  202. [gnome] Can anyone tell me what theme is this?
  203. [ubuntu] Website Viewing - Same Browser, OS & Version, different results
  204. [ubuntu] Is it possible to use GRUB to boot from USB drive?
  205. [ubuntu] Unable to open links within facebook.com using Opera
  206. [ubuntu] Dual Booting Windows & Ubuntu
  207. failed to installed ubuntu with wubi installer
  208. [ubuntu] Show history with date
  209. [ubuntu] WOL startup script?
  210. [ubuntu] Resize Var remotely via SSH
  211. [ubuntu] Monitor not being detected
  212. [ubuntu] iTunes Playlist
  213. [ubuntu] dpkg interupted ?? Can't use updates now :(
  214. [ubuntu] compiz minimize/open effects
  215. [all variants] RAM problems, random crashes
  216. [ubuntu] Asus eee pc 1000 HA Screen flicker/glitch + Dual boot problem
  217. [ubuntu] OpenOffice revolting?
  218. [ubuntu] ubuntu can't mount volume pleaseeeeeee
  219. [ubuntu] Help with Linksys WMP54G Desktop Wireless PCI Network Card
  220. [ubuntu] ubuntu server box boots 50% of the time
  221. [ubuntu] Ubuntu Error, Help Needed...
  222. [ubuntu] pkg-config: Need help for what's likely an easy to fix error (glib version problem.)
  223. [all variants] Installing ISO to partition
  224. [ubuntu] Modifying existing themes. (Login screen)
  225. [kubuntu] File Shredder
  226. [kubuntu] Thunderbird - trouble sending attatchments
  227. [ubuntu] no more mint
  228. [ubuntu] widgets
  229. [ubuntu] only one thing keeping full migration
  230. [ubuntu] Konika Minolta Bizhub c450
  231. [ubuntu] Can anyone help me finish out my wireless problems??
  232. [SOLVED] Search Results
  233. [kubuntu] Can not open external HDD in kubuntu
  234. [ubuntu] Emacs and gcc compiler Instalation Help !
  235. [ubuntu] vmware server install
  236. [ubuntu] Script to ping an IP add with Conky
  237. [ubuntu] information
  238. [ubuntu] Can't mount NTFS
  239. [ubuntu] error building kicad (ubuntu 8.04)
  240. [ubuntu] good music forum
  241. [other] Xp partition wont load (hal.dll error) Any easy fix with Ubuntu?
  242. [ubuntu] Ubuntu 8.10 + EVE Online
  243. [ubuntu] Very weird internet/firefox/hdd space/everything error
  244. [ubuntu] best place to practice and learn terminal commands?
  245. [ubuntu] How to optimize PC Startup
  246. [ubuntu] Renaming All the Files in a Folder
  247. [ubuntu] netbook install help!
  248. [all variants] Prints lack lower edge!
  249. [ubuntu] False Bad Disk?
  250. [ubuntu] Evolution Backup