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 1058 1059

  1. [ubuntu] Strech an image to three or more seconds in Cinelerra
  2. [ubuntu] How do I make my laptops bluetooth work?
  3. [ubuntu] I thought remembering window position...
  4. [ubuntu] Does a Sony Ericcson mobile phone bluetooth headset works with Ubuntu?
  5. [ubuntu] Problem launching QtiPlot
  6. [ubuntu] Which filesystem for solid-state disks
  7. [ubuntu] [SOLVED] what does this mean
  8. [other] amsn display picture help plz
  9. [ubuntu] Keyboardsound (buttonsound)
  10. [ubuntu] [SOLVED] How to set default image viewer?
  11. [ubuntu] Screen fonts messed up - no smoothing of edges on some fonts
  12. [ubuntu] [SOLVED] Firefox Navigation Problem
  13. [ubuntu] script placed in /etc/cron.weekly not running
  14. [ubuntu] adobe flash plugin (both versions 9 and 10) crashes in firefox
  15. [ubuntu] Need to fix GRUB but Ubuntu doesn't load
  16. [all variants] Accurate temperature reader
  17. [ubuntu] Can't Print over LAN after Latest Upgrade
  18. [ubuntu] Desktop Effects and nVIDIA GeForce FX 5500
  19. [all variants] Dual screen positioning problem
  20. [ubuntu] Effects
  21. [mythbuntu] PC with no internet, need to install software
  22. [ubuntu] can't choose a monitor
  23. [ubuntu] how do I update sauerbraten?
  24. [ubuntu] Can't get udev to work :/
  25. [ubuntu] Just installed Ubuntu... how do i hook up my cable modem up so I can get Wine?
  26. [ubuntu] Swapfile not used & fragmented
  27. [ubuntu] [SOLVED] How do I make AWN show folders in stack form like on OS X?
  28. [ubuntu] Updating Error
  29. [ubuntu] HDD seems pretty hot to the touch and is constatly on...
  30. [ubuntu] Desktop will not load
  31. [kubuntu] How to disable add_podcast error message?
  32. [ubuntu] integrate awn and menu bar
  33. [ubuntu] Error 12: invalid device, in grub
  34. [kubuntu] xbindkeys keyboard buttons?
  35. [ubuntu] Line-In Sound Not Working for built-in soundcard.
  36. [gnome] Undo sed commands
  37. [ubuntu] crontab jobs not executing...
  38. [ubuntu] Install Google Earth
  39. [ubuntu] ftp localhost
  40. [SOLVED] sound problems on thinkpad 600
  41. [ubuntu] Nuatilus help?
  42. [all variants] [SOLVED] file inclusion on latex
  43. [kubuntu] Input/Output errors Aptitude and Dpkg
  44. [ubuntu] Compiz Problems.
  45. [ubuntu] can't find AWN
  46. [gnome] Improve gedit
  47. [ubuntu] pidgin closes randomly
  48. [ubuntu] installing fonts?
  49. [other] The Greeny - Weeny Theme
  50. [ubuntu] Removing locked folders from "home"
  51. [ubuntu] cron.daily system-health: Specified sensor(s) not found!
  52. [ubuntu] how do u Customize windows?
  53. [other] Putting mutliple operating systems on one dvd?
  54. [all variants] Is there a way to set a package to not update?
  55. [ubuntu] Problem with AWN
  56. [gnome] How to get rid of the brown screen after GDM
  57. [ubuntu] Gutsy boots in terminal mode. Have to startx manually
  58. [ubuntu] Mount .ISO as CD-rom
  59. [ubuntu] Change premissions on USB nokia 6630
  60. [kubuntu] Opening gcc
  61. [ubuntu] how do I install themes found here http://www.gnome-look.org/
  62. [ubuntu] Remove main menu panel
  63. [ubuntu] CD Installation Issues
  64. [xubuntu] Where are the config files for stock kernel?
  65. [ubuntu] Cannot Access /usr/local/bin
  66. [ubuntu] Partition editor
  67. [ubuntu] F-Spot and Thunderbird?
  68. [all variants] GRUB and Windows
  69. [ubuntu] [SOLVED] PC doesn't register wireless USB adaptor.
  70. [ubuntu] Installing SKYPE
  71. [gnome] panel customization help needed
  72. [all variants] Home Directory Dot File Clutter
  73. [ubuntu] Possible login recovery with Ubuntu?
  74. [other] VirtualBox
  75. [other] Sound Problems: Dell Inspiron 1525
  76. [gnome] classic gtk2 theme
  77. [gnome] xbindkeys problems in GNOME
  78. error "Inappropriate ioctl for device" when doing rar decompression
  79. [ubuntu] [SOLVED] Hard drive capacity
  80. [ubuntu] Compile gnucash optimized for speed
  81. [kubuntu] gtk widgets not displaying properly in kde
  82. [ubuntu] Home folders moved to another partition
  83. [ubuntu] Bash E-Mail Client Question
  84. [ubuntu] [SOLVED] Installing ubuntu on another partition.
  85. [other] Help with cairo clock..
  86. [ubuntu] Boot ubuntu from a usb drive?
  87. [ubuntu] mdadm on startup
  88. [ubuntu] Command Prompt
  89. [ubuntu] Flash sometimes just not working on Firefox 3.0
  90. [ubuntu] [SOLVED] Tracker Indexing Applet
  91. [all variants] Which init string to initialisize a Samsung phone in KMobileTools
  92. [ubuntu] Windows borders have dissappeared. help
  93. [ubuntu] Slow load at computer start with GRUB
  94. [ubuntu] Resume from Suspend usb partition mount error
  95. [ubuntu] FIrefox scrolls sluggish compared to windows?
  96. [kubuntu] Moblock not blocking http access
  97. [all variants] Diving completly into ubuntu, removing dual boot
  98. [ubuntu] [SOLVED] trash bin icon is missing from my desktop?
  99. [ubuntu] CPU Temp monitor
  100. [ubuntu] Stuff only working after rebooting from vista
  101. [ubuntu] If they worked?
  102. [ubuntu] [SOLVED] Buffer I/O error on device fd0, logical
  103. [ubuntu] Avant-window-navigator
  104. [ubuntu] [SOLVED] Canon MP210 drivers and installation help please
  105. [ubuntu] [SOLVED] Make Nautilus Look like Thunar?
  106. [other] cups-bjnp?
  107. [ubuntu] wallpapers being cut off
  108. [ubuntu] Extremely slow transfers after running Deluge BT
  109. [ubuntu] Problems with MSN on Kopete?
  110. [ubuntu] SLOW internet / network connection
  111. [all variants] Firefox/epiphany display problems
  112. [kubuntu] Periodic loss of X display permissions
  113. [ubuntu] [SOLVED] dpkg: failed to open package info file `/var/lib/dpkg/available' for reading
  114. [ubuntu] How do I get rid of Vista from Laptop with Ubuntu already installed?
  115. [ubuntu] Shell Script Problem, code works when run from terminal, but not when run from script
  116. [ubuntu] Print Screen -Picture not saving properly
  117. [ubuntu] JBoss, LTSP, and NX as an free enterprise (multi-site) terminal/application server
  118. [ubuntu] Cannot mount volume. You are not privileged to mount this volume.
  119. [ubuntu] Command line help for renaming many files at once
  120. [xubuntu] trouble installing Lingoteach sound packages
  121. [ubuntu] Running a shell script on startup
  122. [ubuntu] free nx not working
  123. [ubuntu] [SOLVED] getting 'out of range' messege on startup
  124. [xubuntu] Screen wont go to sleep while I'm logged in.
  125. [ubuntu] Writing Script to Execute at Bootup
  126. [ubuntu] Firefox default wallpaper directory
  127. [all variants] EOG - Properties side pane missing?
  128. [ubuntu] compiz help
  129. [kubuntu] how do you make "make" work?
  130. [ubuntu] Uninstalling KDE
  131. [ubuntu] Grub error 22?
  132. [ubuntu] [SOLVED] Burnin A Data DVD
  133. [ubuntu] ktorrent blacklisted port 6883
  134. [ubuntu] Lost add/remove, synaptic, not in sudoers list HELP!!!
  135. [xubuntu] Xubuntu Panel Question
  136. [xfce] Firefox problems
  137. [xfce] Trancparancy
  138. [ubuntu] 4 Monitors in ubuntu?
  139. [ubuntu] moniter alignment ?
  140. [ubuntu] command to get to drive on another computer
  141. [ubuntu] no menus on desktop.... at all!
  142. [ubuntu] Wine Doesn't Work on Some Executables?
  143. [ubuntu] [SOLVED] Can't get a clean install of Java plugin into Firefox 3
  144. [ubuntu] recurrent problem commonly found when updatin
  145. [ubuntu] Desktop Cube isn't working... HELP!
  146. [kubuntu] reset K menu
  147. [ubuntu] cube caps not appearing on cylinder?
  148. [ubuntu] Cairo-Dock config question
  149. [ubuntu] Ubuntu doesn't see swap partition
  150. [ubuntu] [SOLVED] need help with installing flash
  151. [ubuntu] STrange Permissions issue
  152. [SOLVED] HALP!!! how to delete Wubi in Vista
  153. [all variants] [SOLVED] CUPS share
  154. [ubuntu] Grub loading only *slightly* slow, not real slow
  155. [ubuntu] Can't Log in after change to /etc/network/interfaces
  156. [ubuntu] New update packages causing a bug
  157. i limited the ammount of space for ubuntu to 9 GBs
  158. [ubuntu] [SOLVED] Can't use the Auto Login feature
  159. [ubuntu] [SOLVED] Shutdown Applet Hangs system
  160. [ubuntu] [SOLVED] HELP! HELP! Broken Desktop!
  161. [ubuntu] Keyboard hotkeys and macros
  162. [ubuntu] Crackling sound in ZSNES
  163. [ubuntu] How to save energy ???
  164. [ubuntu] [SOLVED] 100% cpu
  165. [ubuntu] Most effective option to have your machine sleep/hibernate to lessen hardware wear?
  166. [ubuntu] installing a theme...
  167. [ubuntu] Error creating mysql database
  168. [ubuntu] Midnight Commander shortcut on desktop
  169. [all variants] fstab permissions for external NTFS-3G & SMBFS
  170. [all variants] Any solutions to hardy heron 8.04 lockups freezing?
  171. [ubuntu] problems installing on P3
  172. [ubuntu] my Pidgin does not start !
  173. [ubuntu] Need a program to help me mount NTFS partitions
  174. [ubuntu] [SOLVED] Setting up MySQL
  175. [ubuntu] ssh remote connection help
  176. [ubuntu] need an instant and voice messenger
  177. [ubuntu] No Sound in Games
  178. [ubuntu] what's the terminal command for making a program the default?
  179. [ubuntu] Problems with Splashy
  180. [gnome] VNC Dual to Single Monitor
  181. [ubuntu] Animated Wallpaper? and Min/Max Effect issue
  182. [ubuntu] Menu framework similar to zenity
  183. [xubuntu] Help with task list and avant
  184. [gnome] some screens of my amd hardy x61s
  185. [ubuntu] Where is the trash folder in Hardy?
  186. [ubuntu] Powerpoints dont play sound in impress
  187. [all variants] Help with file managers needed
  188. [ubuntu] When I hibernate my computer, it does a shutdown?
  189. [ubuntu] meebo.com crashes firefox .. Anyone else?
  190. [Problem] Wubi not connecting?
  191. [ubuntu] Firefox 3 Java Web plugin
  192. [ubuntu] Cannot use my wlan0 in ad-hoc mode
  193. [all variants] Windows jump aroud with cursor over AWN launcher
  194. [ubuntu] How do I do this??
  195. [ubuntu] Chroot link causes hard disk space Replication
  196. [ubuntu] Terminal default directory changed to my Desktop
  197. [ubuntu] [POSTFIX] error when running "make install"
  198. [all variants] GYachE Login Failed
  199. [all variants] AWN trash applets open trash folder using Firefox instead of file manager
  200. [ubuntu] fstab and /Media folder
  201. [gnome] Suddenly unable to use both Animations and Minimize effect simultaneously?
  202. [all variants] Grub Modification
  203. [kubuntu] how to change default display fonts of languages?
  204. [all variants] [SOLVED] Can't Enable Desktop Effects with ATI Rage XL
  205. Videocard problam after install
  206. [ubuntu] Open VPN access and resource limitations.
  207. [ubuntu] cannot mount screwd windows drive in ubuntu
  208. [ubuntu] Legacy V7 on Ubuntu 8.04 ...... How?
  209. [ubuntu] Booting problems.
  210. [ubuntu] [SOLVED] fonts issue
  211. [ubuntu] Borland C\C++ on Unbuntu?
  212. [ubuntu] 8.04 Stalls on startup
  213. [ubuntu] Ubuntu 8.04 Wont Load Past GRUB?
  214. [ubuntu] rsync compression?
  215. [ubuntu] white screen
  216. [ubuntu] Java help needed
  217. [ubuntu] Using root. (login to root?)
  218. [ubuntu] [SOLVED] Brown colour before GDM Loads...
  219. [ubuntu] How Do I Edit A .bin File?
  220. [ubuntu] [SOLVED] System Load
  221. why such a HUGE folder from kernel compile?
  222. [ubuntu] usplash's progress bar is "gone".
  223. [ubuntu] Podcast or vodcasts with the same quality of Linux Reality?
  224. [ubuntu] [SOLVED] Need resolution help
  225. [all variants] Status of my machine via web
  226. [other] irritating grey screen
  227. [ubuntu] VLC, MPlayer crash/freeze Ubuntu
  228. [ubuntu] all logs have errors
  229. [ubuntu] Firefox is just open an .xpi file as folder?
  230. [ubuntu] Execution of .e files
  231. [ubuntu] VLC help
  232. [ubuntu] [SOLVED] Firefox
  233. [ubuntu] Window Sizing
  234. [ubuntu] Sparc Ultra 30 Install
  235. [other] [SOLVED] Question about ssh
  236. [ubuntu] Voice problem .
  237. [ubuntu] noobish question: won't I fill up my HD?
  238. [ubuntu] Is there an English interface of Klavaro (or another touch-typing tutor)?
  239. [all variants] How can I make my HDD to be seen in windows?
  240. [ubuntu] user log errors
  241. [ubuntu] Installing VMware Server - vmmon error
  242. [all variants] How to make icon file with mulitple icon images inside?
  243. [all variants] Remote Desktop Protocol
  244. [ubuntu] package download problem
  245. [ubuntu] install x3270 in 8.04 for all users?
  246. [ubuntu] How to use CD
  247. [ubuntu] [SOLVED] Firefox's Back Button wont work.
  248. [ubuntu] I am sick with internet problem
  249. [ubuntu] New installation: apt-get can't find packages
  250. [ubuntu] Openoffice icons problem - artifacts?