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] iproute script messes up samba and cifs, how can I fix this?
  2. [ubuntu] Hotmail in Thunderbird
  3. [all variants] Firefox not recognizing flash plugin
  4. [kubuntu] Does Kubuntu 8.10 have the same screen resolution problem Ubuntu 8.10 has?
  5. [ubuntu] Sharing files between users on the same computer
  6. [ubuntu] No System Sounds on Intrepid
  7. [ubuntu] emerald problem
  8. [ubuntu] My keys won't work on Star Sonata.
  9. [all variants] Easiest and most efficient method of backing up a home Ubuntu pc
  10. [ubuntu] Trying to triple boot with Grub
  11. [kubuntu] Kopete Email Notification?
  12. [ubuntu] Grub and two windows installations
  13. [all variants] Hard Drive Dead
  14. [ubuntu] Trying to install OS on fresh secondary drive (no sata drivers, no floppy)
  15. [ubuntu] Installing brlcad 7.10.4 on ubuntu 6.06 with emc 2.2
  16. [ubuntu] How do I get to THIS thread
  17. [ubuntu] Can't Resize partition
  18. [ubuntu] screwed some things up
  19. [ubuntu] window boarders are all messed up
  20. [ubuntu] conky question on flickers and spacing.
  21. [ubuntu] Elisa Plug-In Menu Solved
  22. Wubi installed Ubuntu - where is root login?
  23. [ubuntu] How do i make each workspace unique?
  24. [ubuntu] ubuntu install does not finish
  25. Wubi install hangs with blinking curser just after selecting ubuntu
  26. [ubuntu] Help Grub Problems
  27. [other] How can I auto-compile from source?
  28. [ubuntu] Can't see Tab Icons in Open Office, Wine or Abiword
  29. [ubuntu] Need Drivers for TV CARD TUNER
  30. [ubuntu] Need vlc player download link
  31. [ubuntu] Kiba Dock AMD64
  32. [other] specifying the storage file size in tcpdump
  33. [ubuntu] USB Support Ubuntu 8.04 & 8.10
  34. [ubuntu] How can i mount windows partition using terminal
  35. [ubuntu] Importing existing (lost) users
  36. [ubuntu] Error removing file: Read-only file system
  37. [ubuntu] Apply to focused windows only?
  38. [ubuntu] Lotus Notes 8.5
  39. [ubuntu] Strange File permissions for group user
  40. [all variants] "Requesting a network address from the wired newtork..."
  41. [ubuntu] problem during booting from cd
  42. [other] Pulling my hair out - Wireless Network in Ubuntu Studio 8.10
  43. [ubuntu] GTK 2.x themes not working properly
  44. [ubuntu] Cannot burn CD's with 8.10, O.K. with 8.04
  45. [ubuntu] File permissions problem?
  46. [ubuntu] I'm confused over Permissions & Ownership of files on my memory stick!
  47. [ubuntu] djvulibre-plugin
  48. [ubuntu] Big Mistake..........
  49. [ubuntu] Strange memory usage
  50. [ubuntu] Synaptic PM not showing certain basic packages
  51. [ubuntu] GRUB errors 16 & 18
  52. [ubuntu] Vista + ubuntu 8.10 = Grub "Error 17" HELP?!?
  53. [all variants] Installing Ubuntu from an USB stick?
  54. [ubuntu] Publisher files *.pub
  55. [all variants] Tablet Pc & Linux (Newbie Question)
  56. [ubuntu] java 6 update 11 for ubuntu 8.04
  57. [ubuntu] Envy: NVidia on Intrepid
  58. [ubuntu] Question about 8.04 to 8.10
  59. [other] the best web page with Linux info
  60. [ubuntu] Quality of rizeon laptops?
  61. [ubuntu] Screen moves to the left (8.04)
  62. [kde] Enabling Lancelot KDE launcher
  63. [ubuntu] SD Card corruption, dd, and .IMG File
  64. [ubuntu] A Few Suggestions
  65. [ubuntu] Keyboard Shortcuts
  66. [ubuntu] pidgin taskbar windows don't blink
  67. [ubuntu] A challenge with config files (screenlet & totem). Please help
  68. [ubuntu] Driver Problems
  69. [ubuntu] Cannot install from applications???
  70. [all variants] forwarding X11 with more that 2 connections
  71. [kubuntu] Weird key binding problems
  72. [ubuntu] segfault libqscintilla2.so.3 tora 2.0 what do i do wrong?
  73. [ubuntu] How To: Install PSPTOOLCHAIN
  74. [ubuntu] Problem with Permissions Fat32 Drive
  75. [ubuntu] ubuntu 8.10 wierd compiz problem
  76. [ubuntu] Gnome Main Menu
  77. [ubuntu] Kernel Help
  78. [ubuntu] GDM Secure Remote Session Doesn't work
  79. [kubuntu] compiz hangs computer on desktop switch or other activity
  80. [ubuntu] Customize [Ctrl+Alt++]
  81. [ubuntu] DKMS kills xserver ?
  82. [gnome] scheduling recording with cron
  83. [ubuntu] Problems Installing Driver Software
  84. [all variants] Problem in /etc/profile
  85. [ubuntu] After upgrading physical memory, does the swap memory need to be adjusted too?
  86. [ubuntu] Weather Radar Widget\Screenlet
  87. [ubuntu] Opening .Bin files
  88. [kubuntu] Some Questions regarding switching
  89. [ubuntu] Synaptic problems in U.8.10 +USB stick
  90. [kubuntu] other simple app like "ksysguard"?
  91. [ubuntu] Which DVD ripper is the same as DVDfab for ubuntu?
  92. [ubuntu] Intrepid and gnome panel...
  93. Wubi 9.04
  94. [ubuntu] color on files and folders
  95. [all variants] Command line history auto-completion
  96. [ubuntu] Repo requests
  97. [ubuntu] How to view .chm files in ubuntu?
  98. [xubuntu] Brasero won't burn ISO properly!
  99. [ubuntu] Fixing laserjet 1020 not printing
  100. [ubuntu] Flash 4 Linux
  101. [xubuntu] login: home directory does not appear to exist
  102. [ubuntu] Bad Ubuntu woes!
  103. [ubuntu] application and ring switcher questions
  104. [ubuntu] samba file server: setting user permission (umask)
  105. [kubuntu] Kubuntu hangs with Open Office 3
  106. [ubuntu] how do i unistall/remove Google Earth?
  107. [ubuntu] how to know the server address?
  108. [ubuntu] cron job problem with root
  109. [ubuntu] dpkg was interrupted - i need help
  110. [ubuntu] Recommendations Re: Clean-Up After Year of Tinkering?
  111. [ubuntu] How to reduce the size of icons in toolbar in OpenOffice 3.0
  112. [all variants] generate list of programs automatically?
  113. [ubuntu] absolute minimum kernel configuration
  114. [ubuntu] Rebooting = resetting?
  115. [ubuntu] Firefox slows down compiz
  116. [ubuntu] dos login
  117. [ubuntu] pidgin closing by itself
  118. [ubuntu] gEdit Questions
  119. [ubuntu] Ubuntu 8.1 on Eee - wifi key doesn't work properly
  120. [ubuntu] Intrepid Ibex woes on a friend's viao
  121. [ubuntu] Help needed with firefox bugfix
  122. [all variants] Attach file in Thunderbird from Network location
  123. [ubuntu] 8.04.1 LTS - "sudo su" Can't Login
  124. [all variants] setuid a running process
  125. [ubuntu] Galeon/Epiphany crash when popup tries to open.
  126. [ubuntu] routine check of drive freezes
  127. [all variants] Changing window titlebar icon
  128. [all variants] ssh script doesn't work with cron
  129. [ubuntu] how to start ubuntu 8.10 without a screen connected?
  130. [other] How bad is it exactly to have to hard reboot?
  131. [SOLVED] how to run programs in bash
  132. [ubuntu] missing network status
  133. [ubuntu] xorg.conf contains "generic" entries
  134. [ubuntu] Pidgin & MSN Protocol...
  135. [gnome] Lost some windows features after CompizConfig
  136. fsck doesn't want to perform filesystem fix
  137. [all variants] Monitor bandwidth usage by running apps
  138. [ubuntu] Thunderbird annoyance
  139. [ubuntu] Can I use a photoreceptor?
  140. [ubuntu] Sony Vaio from Vista to Ubuntu
  141. [other] Major 9.4 upgrade issue
  142. [ubuntu] Fan going into overload.
  143. [ubuntu] shrank ubuntu partition, aded xp partition, now none of my ntfs drives are recognized
  144. [ubuntu] Perplexing issue with fresh install
  145. [gobuntu] Moving WinXP to new disk without reinstalling
  146. [ubuntu] AWN quirks
  147. [ubuntu] compiz repository gpg key
  148. [ubuntu] Broken right-click on AAO (acer aspire one)
  149. [ubuntu] Problem: automatic switching of workspace
  150. [ubuntu] Already sending SYSTEM_CONFIG cannot send command.
  151. [ubuntu] Software installation
  152. [all variants] Syncing With A Palm (TX)
  153. [ubuntu] Slow GIMP rectangle selection on 8.10
  154. [ubuntu] XVidCap crashes immediately when I try to record
  155. [other] general Hard drive question
  156. [ubuntu] A little help please
  157. [ubuntu] linking a file?
  158. [ubuntu] Make Old Box File Server, Using *APM*, Getting Gnome/HAL to Use It, Too
  159. [ubuntu] 8.10 Picasa Menu options disappeared.
  160. [ubuntu] Stop the beeping.
  161. [ubuntu] Openoffice landscape page
  162. [ubuntu] HOW TO: Make GDM -> Gnome login seamless
  163. [all variants] scp -- Prevent scp from overwriting files?
  164. [ubuntu] Locked Account???
  165. [ubuntu] Uninstalled Open Office, now Pidgin can't spellcheck
  166. [ubuntu] Framework for building compilers
  167. [ubuntu] How to modify $PATH
  168. [ubuntu] Firefox Awesome Bar Issue
  169. [xubuntu] flash, firefox needing ports for gui?
  170. [ubuntu] Help i'm running out of HDD space
  171. [all variants] scanner and remote connection
  172. [all variants] Find a text on files from shell
  173. [all variants] How to do video in Cinelerra?
  174. [ubuntu] HDD killer bug
  175. [ubuntu] change user to root user?
  176. [ubuntu] Control Realterm from web browser
  177. [ubuntu] Weird Adobe Flash problem
  178. [ubuntu] No Display Problem
  179. [ubuntu] smart way to frequently transfer large files on a home network?
  180. [ubuntu] Update error
  181. [ubuntu] starting VNC server automatically
  182. [ubuntu] Starting main menu from desktop
  183. [SOLVED] Is there a way to rename every file extension on my PC to lower case?
  184. [ubuntu] Missing stdio.h while compiling
  185. [ubuntu] Mouse pointer problem
  186. [SOLVED] remove an uninstalled program from the menu list
  187. [ubuntu] Problem adding a second Physical Hard Drive
  188. [all variants] Resolution trouble, can't reach settings button to fix.
  189. [ubuntu] Where is transmission-cli located?
  190. [ubuntu] Ubuntu sound **Literaly** just quit working?!
  191. [xubuntu] compiz doesn't start - Matrox MGA 550
  192. [gnome] Error : gtk + theme engine is not installed
  193. [ubuntu] amd64: how do i remove 32 bit libraries?
  194. [all variants] What are these random daemons / processes?
  195. [xubuntu] Please help me!
  196. [ubuntu] Ubuntu/vista mess, please help
  197. [ubuntu] Question about resizing a partition
  198. [ubuntu] Couldnt get a file descriptor referring to the console
  199. [kubuntu] some pages load slow on firefox, opera, konqueror
  200. [ubuntu] External Display Killed all my desktop effects
  201. [ubuntu] Restoring firefox bookmarks???
  202. [ubuntu] What is the best backup software
  203. [all variants] Possible to add a driver to lm-sensors? (adt7475)
  204. [ubuntu] Banshee Drag n' Drop
  205. [ubuntu] Would this be a good computer for Ubuntu?
  206. [ubuntu] Changing the boot menu with remastersys
  207. [other] Firefox>Swiftfox don't need to type full URL
  208. [ubuntu] Problem with jump drive and external hard drive mounting
  209. [ubuntu] JACK audio server? What is this?
  210. [ubuntu] Firefox starts in "fullscreen"
  211. [ubuntu] unable to mount cd-rom's
  212. [ubuntu] Seahorse not searching Key IDs
  213. [SOLVED] iPod Issues fixed.
  214. [ubuntu] Safely uninstalling ubuntu 8.10
  215. [ubuntu] Grub boot menu, New device, old device on menu-kernel Panic
  216. [all variants] Self-contained firefox
  217. [ubuntu] Not able to install........
  218. UBCD for memory stick from ubuntu
  219. [ubuntu] 32 bit or 64 bit
  220. [xubuntu] it takes 10 seconds to ls in my home directory
  221. [ubuntu] Hard Drive Test
  222. [ubuntu] rsync: send_files failed to open
  223. [ubuntu] Cant open gnome-terminal
  224. [ubuntu] Ubuntu and XP trouble
  225. [kubuntu] compiz fusion on the eeePC
  226. [ubuntu] Auto XP partion restore
  227. [ubuntu] Pulseaudio error
  228. [other] RAM issues
  229. [ubuntu] /bin/sh: can't access....
  230. [xubuntu] dual display issues
  231. [ubuntu] Mass re-suffix-ing
  232. [gnome] window borders dissapeared
  233. [ubuntu] Can't boot. Kernel panic. Home folder missing. Attempted to kill init.
  234. [ubuntu] My printer is not printing... Please help me
  235. [SOLVED] su -c command gives error
  236. [other] Sys reguirements for ubuntu ultimate
  237. [ubuntu] Can't VNC into Ubuntu 8.10 after losing monitor
  238. [other] Closing posts
  239. [ubuntu] Ubuntu Freezes on Boot
  240. [all variants] wget help
  241. [kubuntu] Immediate help required
  242. [ubuntu] Internet slower than usual
  243. [ubuntu] Permissions help
  244. Multiple Ubuntu distributions.
  245. [ubuntu] VLC Player offline Installtion help
  246. [all variants] PCSX-df freezes
  247. [all variants] Going full-screen with games results in black screen
  248. [ubuntu] can you keep the cube zoomed?
  249. [ubuntu] Need help for Torrent speed
  250. [all variants] firefox crash