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] Formatted Ubuntu Drive, Can't Boot Into Windows
  2. [ubuntu] problem w/ soundcard settings
  3. [ubuntu] Scanjet 3970 XSane empty image
  4. [ubuntu] Difference between compiz and compiz fusion
  5. [ubuntu] [B] Need Help Mounting Another HDD[B/]
  6. [ubuntu] Gimp segfault jaunty
  7. [ubuntu] Wireless disappeared
  8. [ubuntu] Creating User Account via PHP
  9. [all variants] How to tell the name of the device that is giving my internet connection
  10. [wubi] Virtualbox to Boot Wubi inside Windows
  11. [ubuntu] Items dont show up in folder.
  12. [ubuntu] What's the deal with /var/backups?
  13. [all variants] Nested NFS mounts
  14. [SOLVED] Test User password with Zenity/Bash script
  15. [ubuntu] Need help with CompizConfig Settings Manager (CCSM) Problems
  16. [ubuntu] Help installing from source. Make Error 1
  17. [ubuntu] Apache can't find my Python files?
  18. [ubuntu] Can't boot up using Ubuntu..PLEASE HELP!
  19. [ubuntu] I need help disabling the ridiculously loud pc beep.
  20. [ubuntu] font not appearing in openoffice
  21. [ubuntu] GUI to edit Grub boot menu
  22. [ubuntu] audio playback too fast in Open Movie Editor
  23. [ubuntu] Massive gaming lag
  24. [ubuntu] First Time Linux User...little help with Hard Drive Recognition needed...
  25. [all variants] bluetooth-wizard does not show devices
  26. [ubuntu] Certified Ubuntu Professional Needed
  27. [ubuntu] Compiz - Setting a compiz keyboard command to...
  28. [ubuntu] Routine drive check?
  29. [kde] problem with kwallet
  30. [ubuntu] 2.8 xorg driver problem
  31. [ubuntu] VLC crashes when playing a video
  32. [ubuntu] 9.0.4 default root password
  33. [ubuntu] few questions.
  34. [ubuntu] Screen Screwed up (Possibly x-server)
  35. [ubuntu] no se como instalar un promgrama con la terminal
  36. [kubuntu] can't eject cdrom (yes, it's unmounted)
  37. [ubuntu] Messed up GNOME : how do I re-install
  38. [ubuntu] /tmp - safe to delete?
  39. [ubuntu] Wavy screen on 8.04
  40. [ubuntu] I cant install Wikipedia CD (0.5) nor the Pocket Wikipedia
  41. [all variants] GhostScript Help - merging files
  42. [ubuntu] Make firefox look like windows firefox.
  43. [ubuntu] HP Officejet Pro 8500 prints half-width
  44. [ubuntu] Pidgin Crashes
  45. [ubuntu] How do Install multiple languages in Ubuntu?
  46. [ubuntu] I moved the top bar to the left.
  47. [ubuntu] Please help!
  48. [ubuntu] Need help putting music on cell phone
  49. [all variants] Quick GRUB Question (easy)
  50. [ubuntu] Eject CD while using Live CD in ram?
  51. [ubuntu] any simple mods that can make my wireless card create 1000s of fake networks?
  52. [ubuntu] Recovering files from old hard drive. (FAT16 Win95)
  53. [SOLVED] IPv6 Server Test & WebProxy?
  54. [SOLVED] webcam
  55. [ubuntu] Customizing LiveCD - adding other things
  56. [ubuntu] setgid: Opetation not permitted
  57. [ubuntu] Did I screw up my Windows XP Installation?
  58. [ubuntu] how can i recover my bookmarks of firefox?
  59. [SOLVED] ATI HD3850 Dual Monitors - need "admin access"
  60. [gnome] PDFTK burst task in a Nautilus Script
  61. [gnome] Pidgin conversation windows lack window decoration
  62. [ubuntu] Synaptic Package Manager Error
  63. [ubuntu] Computer Randomly Shuts down
  64. [ubuntu] Ane example of a password for my encrypted install pls?
  65. [ubuntu] sudo: unable to resolve host ...
  66. [all variants] Install openoffice.
  67. [ubuntu] fresh vista wipe out my dual boot Menu Help !!!!!
  68. [ubuntu] Path to memory card
  69. [ubuntu] Grub Loader
  70. Graphics problems with gOS
  71. [ubuntu] Did something stupid
  72. [ubuntu] Any ideas on how to recieve exchange mail on Ubuntu Server?
  73. [ubuntu] Can't set Firefox-3.5 as default browser in Thunderbird
  74. [ubuntu] benq siemens e61 mobile modem...
  75. [all variants] Owner and Group permissions on filesystems accessed by multiple Ubuntu OSes
  76. [ubuntu] Uber n00b needs help!
  77. [ubuntu] File permissions - generally speaking.
  78. [ubuntu] Accents and keys in Netbeans
  79. [ubuntu] (8.04) Flash Plugin problem with Firefox
  80. [ubuntu] Sound issues
  81. [xfce] xfce-terminal in gnome commander
  82. [other] Visually impaired users
  83. [SOLVED] Can I add Windows to grub after Ubuntu install?
  84. [ubuntu] how to place cairo-dock on top
  85. [all variants] curlftps write problem
  86. [kubuntu] Plasma Widgets disappear
  87. [ubuntu] Issue about installing Ubuntu 9.04 on Dell XPS 1530, 4GB RAM
  88. [all variants] Im making an os
  89. [ubuntu] List contents of tape error
  90. [SOLVED] My setup appears to have failed for some unknown reason...
  91. [ubuntu] 9.04 on Wubi, better than the LiveCD
  92. [ubuntu] Custom shell command
  93. [other_os] File Extension Help
  94. [ubuntu] Coming from windows
  95. [ubuntu] Why would it boot into tty1?
  96. [ubuntu] ubuntu-restricted-extras won't update flash
  97. [ubuntu] Ubuntu doesn't remember widescreen resolution
  98. [ubuntu] USB Flash cannot be reformatted/erased.
  99. [all variants] Damaged partition table FAT32 due to Partition Magic misbehavior
  100. [ubuntu] rsync over ssh very slow
  101. [ubuntu] this is why im done with vista
  102. [kubuntu] System crash
  103. [all variants] cut a file with Japanese characters
  104. [ubuntu] Linux/Firefox Issues When Using Yola Web - Site Builder
  105. [ubuntu] Keeps on crashing, not displaying anything after reboot.
  106. [ubuntu] Serious problem!
  107. [ubuntu] Suddenly out of the blue, Flash not working! Cant view videos online!
  108. [ubuntu] my window title bars and borders keep missing
  109. [ubuntu] Super ubuntu noob looking for the trash can xD
  110. [ubuntu_mobile] questionnaire needs help
  111. [kubuntu] Access rights
  112. [ubuntu] video converter in ubuntu 9.04
  113. [ubuntu] Unterminated quoted string error from cron only
  114. [ubuntu] Install Python3 for Learning
  115. [ubuntu] how to integrate between ZendFramework and eclipse IDE
  116. [ubuntu] gnome hang? unsure what this is
  117. [ubuntu] update manager error, so annoying
  118. [all variants] GRUB question
  119. [ubuntu] [9.04] ATi Radeon X550 Drivers
  120. [SOLVED] Ubuntu does not load
  121. [ubuntu] firefox rollback prolem
  122. [ubuntu] GRUB is not working..!!
  123. [ubuntu netbook remix] acer-wmi: unable to detect available WMID devices
  124. [all variants] Blackberry Desktop Manager, Ubuntu, Virtualbox and Win XP
  125. [ubuntu] please help
  126. [ubuntu] Using AWN
  127. [ubuntu] How do you want the Trash to function in Ubuntu?
  128. [ubuntu] Opera 10 Beta and Facebook
  129. [ubuntu] Quick question about Evolution
  130. [ubuntu] do I have 2 versions of flash installed?
  131. [all variants] Authentication Keys (stored?)
  132. [ubuntu] line 55 sources
  133. [ubuntu] Can not connect to internet to set another language, Is there another way?
  134. [kubuntu] unable to log in
  135. [ubuntu] vlc player .flv encoded with H264
  136. [all variants] A printer question
  137. [all variants] GRUB Reinstallation
  138. [ubuntu] USB drive sharing and permissions
  139. [ubuntu] "Unknown Application" constantly uses 50% of cpu.
  140. [ubuntu] I broke ubuntu, now I get error 24 on boot
  141. [kubuntu] Ebay problem
  142. [all variants] Small problem with Comix
  143. [other_os] Recoving Files on a EXT3 partition
  144. [all variants] minimal install package list, help me choose what to add or remove please ...
  145. [ubuntu] Website Rendering Issue
  146. [all variants] Anti Virus for XP?
  147. [all variants] Script to run on resume
  148. [xubuntu] xubuntu and Belkin F1DA108T
  149. [ubuntu] CSSp works on windows XP but not on ubuntu
  150. [ubuntu] HP LaserJet 3030 print jobs are partially printed
  151. [kubuntu] kubuntu 64 bits vs kubuntu 32 bits
  152. [ubuntu] Can't use my update manager
  153. [ubuntu] acpi alarm not working randomly
  154. [ubuntu] Accessing Garmin 755t?
  155. [ubuntu] Best way to sync Evolution across 2 x Ubuntu machines
  156. [ubuntu] Recursive directory structure
  157. [ubuntu] Could someone help me with usplash?
  158. [ubuntu] Navigating folders with mouse buttons
  159. [ubuntu] Loading Disc Error.
  160. [ubuntu] Same flac files, two different plot spectra?
  161. [ubuntu] Where are the baskets for BasKet Notes stored?
  162. [ubuntu] SARG reports
  163. [kubuntu] Latest Mainline Kernel Breaks Wireless
  164. [all variants] OpenOffice 3: Is This Possible
  165. [ubuntu] phpmyadmin forbidden access
  166. [ubuntu] compiz blur effect
  167. [ubuntu] Jaunty freezes blamed on ath5k (Atheros wifi driver)
  168. [ubuntu] AWN doesn't show apps
  169. [ubuntu] Awesome WM 3 on ubuntu 9.04
  170. [ubuntu] Convert LTSP server to installation server
  171. [ubuntu] cant "reboot"
  172. [ubuntu] Wireless network problem
  173. [ubuntu] Password/Login Problems
  174. [ubuntu] Home Media File Sharing and Streaming Setup
  175. [ubuntu] a antivirus for dual boot to scan windows from linux
  176. [ubuntu] Online Storage
  177. [ubuntu] HDD wipe besides DBAN?
  178. [ubuntu] [Delete this]
  179. [ubuntu] Windows + Ubuntu + Acronis = fail
  180. [ubuntu] Installation problem with v9.04 Netbook Remix
  181. [ubuntu] Bluetooth mouse and keyboard buggy
  182. [ubuntu netbook remix] Crons do not work
  183. [ubuntu] stability problems
  184. [ubuntu] wget works... just not with this URL...
  185. [all variants] How to set up Grsync...
  186. [ubuntu] Please help to save my pc
  187. [ubuntu] Adding 9.04 to XP Boot Manager
  188. [ubuntu] Out of disk space? Can't be...Help!
  189. [ubuntu] share home folder between two users
  190. [ubuntu] Sound inconsistent
  191. [ubuntu] /var/log/
  192. [ubuntu] Trying to install Windows Version of Mono
  193. [ubuntu] GUI doesn't start
  194. [ubuntu] acer aspire one sound
  195. [ubuntu] Segmentation fault when memory demand is high
  196. [ubuntu] Synaptic Manager error
  197. [ubuntu] Ghost session / disappearing-reappearing files
  198. [ubuntu] Keep running after logout
  199. [ubuntu] im new to ubuntu im getting error while installing how to resolve this
  200. [ubuntu] Palm Pilots
  201. [ubuntu] Mount help
  202. [all variants] Problem: Unable to mount HD from remote machine after HD spin-off
  203. [ubuntu] Where can i get a Command line parser
  204. [ubuntu] would updating from 8.0.4.1 to 9.04 solve my driver issues?
  205. [all variants] Save results of wget to specific file?
  206. [ubuntu] A good C++ tutorial for eclipse
  207. [ubuntu] i think i lost nautilus
  208. [ubuntu] Evolution prompting for keyring access
  209. [ubuntu] Getting firestarter to start up when loggin in
  210. [ubuntu] jaunty locking up, installed on an external hard drive
  211. [ubuntu] External HD Problem
  212. [ubuntu] new ATI drivers, second monitor broken
  213. [ubuntu netbook remix] Inconsistent login behaviour
  214. [ubuntu] Effects stopped woring
  215. [ubuntu] SSH issue
  216. [ubuntu] "Desktop1" folder in home directory
  217. [ubuntu] Resolving (Bell Sympatico) SMTP outgoing mail problem
  218. [ubuntu] Desktop shortcut... I think?
  219. [ubuntu] Compile Kernel Modules into Actual Kernel...
  220. [ubuntu] How to delete both Gnome panels ?
  221. [all variants] fstab woes
  222. [all variants] Voice Recognition
  223. [ubuntu] Odd Firefox problem
  224. [ubuntu] My skype, she's a no good
  225. [ubuntu] Firefox won't start
  226. [ubuntu] X Window Query
  227. [all variants] Changing the terminal/init3 background ??
  228. [all variants] a blinking cursor appears at boot with raid card it8212 on dg41rq motherboard
  229. [ubuntu] .toc files
  230. [ubuntu] task bar not showing
  231. [all variants] Esperantistoj - partial translations?
  232. [ubuntu] Jaunty upgrade on Dell C610 laptop very slow
  233. [kubuntu] Hardware Support Question.
  234. [ubuntu] Problem with desktop effects
  235. [ubuntu] Some basic scripting help required...plz
  236. [ubuntu] Ubuntu and Virtual Box
  237. [ubuntu] Please help
  238. Another kernel???? what
  239. [ubuntu] NowPlaying Screenlet Doesn't Work?
  240. [all variants] New Setup
  241. [all variants] extracting between strings from terminal
  242. [ubuntu] Firefox will not close!
  243. [ubuntu] Sound is not working properly
  244. [ubuntu] Ejecting External Harddrive
  245. [ubuntu_studio] My panel and desktop items disappeared!!!
  246. [SOLVED] memory issue unless ubuntu is only capable of seeing 3 gig
  247. [ubuntu] Azureus won't start
  248. [ubuntu] gdmXnestchooser help
  249. [ubuntu] LiveUSB questions (Conky/fstab/user accounts)
  250. [kubuntu] Java - "Please Wait..." - Help!