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] what is the best batch audio conversion tool.
  2. [all variants] command to move yesterdays file
  3. [SOLVED] (install silverlight?) Is this some kind of sick joke by microsoft?
  4. [ubuntu] Thunderbird script forwarding
  5. [ubuntu] Monitor shows green screen please help me
  6. [other_os] Help me!
  7. [ubuntu] Repository problem
  8. [all variants] Hi! how linux is the best platform for hackers??
  9. [ubuntu] Braces automatically getting inserted in vim
  10. [SOLVED] Where in my filesystem is image file that is my login background
  11. [ubuntu] Can you simultaneously resize multiple desktop icons?
  12. [ubuntu] Comments and a question
  13. [ubuntu] PATA DVD/CD-RW not identified in 9.10 (Karmic Koala)
  14. [ubuntu] Print sharing question
  15. [ubuntu] error installig libxml2-dev
  16. [ubuntu] Unstable filesystem problems?
  17. [SOLVED] CUPS disappears
  18. [ubuntu] Help: my Upstart script does not work...
  19. [ubuntu] Sources.list
  20. [ubuntu] 'exe' running in Linux?
  21. [ubuntu] change the size of hardrive partition?
  22. [ubuntu] Wine
  23. [SOLVED] How do I remove Accessibility icon from Notification Area?
  24. [all variants] bzr and https+webdav
  25. [SOLVED] Unrared tar.gz and ran install script...nothing happen
  26. [other] Banshee: Changing music folder location. Can I keep my ratings, etc?
  27. [all variants] Can I use APT on a remote Ubuntu computer with ssh
  28. [ubuntu] Automatically Syncing (like WinSCP) changed files over SSH/SFTP
  29. [SOLVED] OpenOfficeWriter: Automatically Number Pages?
  30. [ubuntu] Pulse audio and ALSA stopped working on Karmic, work only as root
  31. [ubuntu] Pidgin how to save message archive
  32. [ubuntu] Making Ubuntu boot and run faster
  33. [SOLVED] strage problem: some mp3 files not accessible under windows
  34. [gnome] ssh sync/backup of evolution adr/contact/memo/todo
  35. [kubuntu] Sound quit working
  36. [ubuntu] Pidgin, Ubuntu and school internet
  37. [gnome] cannot access root in gui
  38. [ubuntu] What to do if printer driver not available?
  39. [ubuntu] Evolution does not mark messages as read (Gmail IMAP)
  40. [ubuntu] Notification OSD in Jaunty / Karmic
  41. [64 bit] Audio CDs cause nautilus to crash.
  42. [ubuntu] How to install flash ?
  43. [ubuntu] Server USB powered ports
  44. [ubuntu] update-manager does not install updates
  45. [SOLVED] how to run apps over ssh so they connect to my X server
  46. [other] OpenOffice, Graphs -> error bars and 3D view
  47. [ubuntu] How do I start Free Radius?
  48. [ubuntu] Transmission WebUI: Erro 403
  49. [SOLVED] Need Wubi files!!!
  50. [SOLVED] Startup Issue
  51. [SOLVED] Need help with installing my DRBL server.
  52. [ubuntu] No Sound
  53. [SOLVED] Accessing backed up data over various systems
  54. [kubuntu] LCD Brightness in Power Profile Locked?
  55. [ubuntu] Apps tend to freeze
  56. [xubuntu] periodic harddrive activity ... why?
  57. [ubuntu] Need serious bluetooth help
  58. [ubuntu] Key combinations
  59. [ubuntu] Cannot click in Flash (from Adobe)
  60. [ubuntu] Remote desktop security
  61. [ubuntu] Firefox Crash Once After Boot
  62. [ubuntu] karmic splash screen changes sizes/res with external monitor attached (on of off)
  63. [SOLVED] I force-installed a 32bit package (I'm on 64-bit,) how do i uninstall?
  64. [SOLVED] Everything has Gone Blurry
  65. [ubuntu] PPA repository for original cdrtools for newer Ubuntu?
  66. [ubuntu] monitor resolution
  67. [ubuntu] DTA and Rapidshare
  68. [ubuntu] Ubuntu 9.04 (Booting from CD) hangs when loading
  69. [ubuntu] Can't mount drives in GUI when using SLiM
  70. [ubuntu] Problem considering stdin and stdout
  71. [SOLVED] Good Budget Nvidia card for 9.10
  72. [other_os] enV Touch with SMS under Ubuntu
  73. [64 bit] How do I determine if I have the 64 bit version installed?
  74. [ubuntu] Several wallpapers and Screenlets not minimizing
  75. [ubuntu] setting up dyndns host to point to home web server
  76. [ubuntu] Graphics Please Help!
  77. [ubuntu] Can I set Windows to boot by default?
  78. [ubuntu] Update broke Virtualbox
  79. [ubuntu] dpkg problems.
  80. [ubuntu] F1 please...Problem in Keryx project creation...
  81. [SOLVED] Problem with resolution
  82. [SOLVED] default Grub loader to old kernel
  83. [ubuntu] Help needed restoring a broken GFX environment!
  84. [all variants] ssh bash completion
  85. [ubuntu netbook remix] Reassign keys to 'PageUp' and 'PageDown'?
  86. [ubuntu] GRUB updating problem
  87. [ubuntu] how to restore nautilus
  88. [ubuntu] Ubuntu Networking (samba?) Password
  89. empathy webcam
  90. [ubuntu] Where is the directory /usr/X11R6 in Ubuntu 9.10?
  91. installing ubuntu
  92. [ubuntu] User Restrictions
  93. [ubuntu] Screen Resolution Problem
  94. [ubuntu] How to run X11 applications virtually in processes (no X)?
  95. [ubuntu] how to sort words in order to avoid a1,a11,a2
  96. [ubuntu] At power cut, how to avoid linux to ask for root password?
  97. [ubuntu] Backup software
  98. [ubuntu] Getting filesystem error problems...
  99. [ubuntu] 9.10 Sound Problems!
  100. [ubuntu] Apache, Php, MySQL, PhpMyAdmin help needed
  101. [ubuntu] how can i connect Nokia siemens C2110 modem in Ubuntu?
  102. [ubuntu] HELP! Loading of OS stopped, showing tiny white terminal in top corner....
  103. [ubuntu] any advice on tracking down firefox segfault when running flash hulu.com?
  104. [ubuntu] "Changing Wallpapers" isn't changing
  105. [gnome] 73 Workspaces? How to remove?
  106. [ubuntu] Startup Sound (Tack-ack-ack)
  107. [SOLVED] karmic asking for menu.lst in update manager
  108. [ubuntu] files not showing in a network share
  109. [ubuntu] Custom Compiz commands
  110. [ubuntu] Compiz-Fusion Atlantis2 plugin help
  111. [ubuntu] compiling swfdec beta missing dependencies
  112. [ubuntu] How can I access a windows disk after install of ubuntu?
  113. [ubuntu] Writing udev rule for ZEN
  114. [SOLVED] 44 gb folder reduced to 58 bytes...
  115. [ubuntu] How do I get Ubuntu 9.10 x86_64 source code?
  116. [ubuntu] 9.10 Can't login without monitor
  117. [xubuntu] Changing Permissions Recursively Don' t Change Permissions Recursively?
  118. [ubuntu] Full page not printing - Epson Photo printer
  119. [xubuntu] Automount NTFS Drives
  120. [ubuntu] CDrom inop
  121. [all variants] PHP Startup: Unable to load dynamic library [sqlite3 error]
  122. [kubuntu] Equivalent to Seahorse SSH keyring for KDE4?
  123. [ubuntu] Can not click in Flash
  124. [ubuntu] Why are restarts frequently required after updates
  125. [ubuntu] Internet connection dropped (Router?)
  126. [ubuntu] How do I make a custom ISO of Ubuntu?
  127. [ubuntu] how to use Kdevelop 4
  128. [ubuntu] Unresponsive panels in hardy
  129. [xubuntu] computer hangs just before login
  130. [ubuntu] Ubuntu Can't see other Partitions
  131. [SOLVED] Searched all over, need help adding hdd temp to sensors-applet
  132. [ubuntu] Nvidia ppa
  133. [ubuntu] Raid questions
  134. [ubuntu] This file seems important, but what is it?
  135. [kubuntu] Help with Gparted
  136. [ubuntu] compile kdevelop4 from the source
  137. [SOLVED] Howto: mount drives in Windows7 under virtualbox
  138. [ubuntu] Firefox CPU spikes after several hours of usage
  139. [other] Pidgin Crashes
  140. [ubuntu] No graphical interface :(
  141. [ubuntu] Black Screen After Boot
  142. [ubuntu] So what's the deal with .bin files and other software packs?
  143. [SOLVED] Syntax find/locate "folder containing"
  144. [SOLVED] How do I uninstall something no listed under synaptic?
  145. [ubuntu] Dual boot problems
  146. [ubuntu] CIFS VFS: Server not Responding & Gnome network manager & Wicd
  147. [ubuntu] I edited swap partition and now things are strange
  148. [all variants] website alphabets not working
  149. [64 bit] FireFox plugins directory in 9.10
  150. [ubuntu] How do I move this 7 GB file?
  151. [ubuntu] 9.10 Karmic boot screen information
  152. [ubuntu] Game Fullscreen
  153. [ubuntu] Recommend a password manager?
  154. [ubuntu] Cannot change Theme details
  155. [ubuntu] X Server Question
  156. [ubuntu] What is going on here?? Help!
  157. [ubuntu] Complete Fail
  158. [64 bit] softwares can't find shared libraries anymore
  159. [SOLVED] WOW...Ubuntu and XP
  160. [ubuntu] wubi + karmic + grub problem
  161. [ubuntu] Firmware Errors
  162. [ubuntu] Alt-gr character maps in Karmic
  163. [ubuntu] Instant Messaging in Bash
  164. [ubuntu] Hulu
  165. [ubuntu] shut down w/ wine
  166. [SOLVED] double click to minimize xfce
  167. [ubuntu] Suggestions!!!!
  168. [SOLVED] How to extract tar.gz xsplash theme
  169. [ubuntu] Need some help with a Limewire/Frostwire install.
  170. [SOLVED] How can i setup my Wacom Tablet?
  171. [ubuntu_studio] Sound randomly stops, Computer boots up muted, etc (64-bit with RT Kernel)
  172. [gnome] Compiz problem, cant start GNOME
  173. [64 bit] acroread missing from Hardy Heron
  174. [ubuntu] problem with apache2 not displaying site properly
  175. [ubuntu] usb no media in drive
  176. [ubuntu] Installing WIndows 7 problem. Formatting NTFS.
  177. [ubuntu] Will removing empathy in Karmic break my system?
  178. [ubuntu] gscan2pdf - page/scan size selection
  179. [xubuntu] How to update Opera 10.01 to 10.10?
  180. [ubuntu] Post 9.10 Upgrade Issues
  181. [ubuntu] Need some help getting Conquer 2.0 to work on Ubuntu 9.10
  182. [ubuntu] Dumb wifi doesn't work
  183. [ubuntu] Can't write to external hard drive? please help
  184. [kubuntu] Kontact To-Do Paintbrush question . .
  185. [kubuntu] not recognizing printer
  186. [ubuntu netbook remix] Issues with Wifi and 9.10
  187. [ubuntu] ubuntu nvidia and compiz.
  188. [ubuntu] $MFTMirr does not match $MFT (record 0).
  189. [ubuntu] How to add pcbsd to the grub bootloader?
  190. [kubuntu] Ubuntu loses control after swithc KVM (keyboard video mouse)
  191. [all variants] hp3970 usb scanner no longer detected
  192. [all variants] [HELP] How can I repair GRUB on my eeePC ?
  193. [ubuntu_studio] Is Ubuntu Studio fit for PS3?
  194. [ubuntu] File management and synchronisation
  195. [ubuntu] flash QQ
  196. [ubuntu] Open office calc
  197. [ubuntu] Uploading To RapidShare
  198. [ubuntu] GRUB issues
  199. [ubuntu] Startup hangs at GRUB blinking cursor
  200. [ubuntu] fan control (NOT upgrade/install related!)
  201. [ubuntu] Permission denied and sudo for everything after recent update?
  202. [64 bit] FireFox freezes, 100% CPU, HDD accessed.
  203. [xubuntu] Xubuntu Won't Save Resolution After Restart
  204. [all variants] wubi install, windows reinstall, get back ubuntu on boot menu?
  205. [SOLVED] why does "root" have control and not me?
  206. [ubuntu] Planning a software raid with Dual Boot
  207. [ubuntu] Odd java crash on 9.10 Karmic
  208. [other] HTML Email form question
  209. [ubuntu] Why does my computer all of a sudden suck since putting ubuntu on it?
  210. [all variants] Need new GRUB; a drive physically removed
  211. [other] questions and calling
  212. [ubuntu] Low hanging fruit question
  213. [SOLVED] Can't get past login screen
  214. [ubuntu] Installing arno's iptables
  215. [ubuntu] Swap screen script
  216. [kubuntu] Samba - smbpasswd -a "Cannot locate unix account!"
  217. [all variants] Gnome-do and multiple twitter accounts
  218. [ubuntu] 9.10 Boot problems after update
  219. [ubuntu] TTY login prompt on boot
  220. [ubuntu] Mumble Server
  221. [ubuntu] Scanssh
  222. [xubuntu] blank screen for 20 sec at startup
  223. [wubi] can I run as boot and virtualPC?
  224. [ubuntu] Theming GDM
  225. [ubuntu] Random massive slowdown in 9.10
  226. [ubuntu] Installing Firefox
  227. [SOLVED] vi and emacs issue
  228. [ubuntu] Sound not working after install VLC
  229. [ubuntu] New to Ubuntu 9.10
  230. [ubuntu] change keyboard from UK to US using system > preferences > keyboard > layouts
  231. [SOLVED] How to get rid of Grub without a windows disk?
  232. [SOLVED] Where are the icons?
  233. [ubuntu] Menu does not fit on the screen of a 9" EEE pc
  234. [64 bit] Wine problems
  235. [ubuntu] help installing program(kismet)
  236. [ubuntu] What happened to panel icon properties in Karmic?
  237. [ubuntu] "General error mounting filesystems" After Crash 9.10
  238. [ubuntu] rebuilding X11
  239. [SOLVED] Rick Rolled
  240. [SOLVED] Fix: "one or more of the mounts listed in /etc/fstab cannot yet be mounted"
  241. [ubuntu] Compiz Changing
  242. [ubuntu] Gets Stuck After Loading
  243. [ubuntu] ugh ms core fonts
  244. [ubuntu] How do I upgrade to NTFS-3G 2009.11.14?
  245. [ubuntu] grub time?
  246. [ubuntu] Serious Filesystem Bug in Nautilus! (9.10)
  247. [ubuntu] How to increase time delay for tooltips?
  248. [ubuntu] How do I tell Virtualbox where my custom kernel is?
  249. [all variants] NBD drive hangs
  250. [ubuntu] Gnome do won't auto start on login