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 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148

  1. [ubuntu] Problem running custom reboot command
  2. [ubuntu] Extra HDD no longer mounts
  3. [ubuntu] Touchscreen Installation
  4. [ubuntu] Looking for a GameBoy/Gameboy Advance emulator with a GUI and Cheat Support
  5. [ubuntu] sound problem in ubuntu ultimate
  6. [ubuntu] VirtualBox gets stuck when booting from hard disk (WinXP)
  7. [all variants] intervideo equivlent
  8. [ubuntu] Limit times of login for users
  9. [ubuntu] Can't boot -- hardware or software problem?
  10. [ubuntu] Ubuntu 9.04 64bit taking forever to boot up on new computer
  11. [ubuntu] Ubuntu 9.04 not booting, ACPI error
  12. [ubuntu] Is there a way to find out when the current install was installed?
  13. [ubuntu] Some Doubts Abiut installation
  14. [SOLVED] **Unclean shut down checking drives....NOOO
  15. [ubuntu] Dazzle DVC 107 and ubuntu
  16. [ubuntu] Can some one help me find out how to install .tar.gz files?
  17. [ubuntu] time adjustment log where
  18. [ubuntu] Firefox 3.5 issue
  19. [ubuntu] creating an iso with dd (when to set blocks?)
  20. [ubuntu netbook remix] helpp pleasee launcher menu disappears
  21. [all variants] Converting P65/PMD files to an open format?
  22. [ubuntu] Linux - what the hell?
  23. [ubuntu] New kernels not getting updated to GRUB list
  24. [ubuntu] Evolution Email Problem
  25. [ubuntu] Updates/Upgrades?
  26. [ubuntu] rsync - to exlcude files lasting with ~
  27. [ubuntu] Windows dimming?!?! 9.04
  28. [ubuntu] checking on phpinfo
  29. [ubuntu] gparted not displaying partition..??!!
  30. [ubuntu] mont help
  31. [gnome] Nautilus search not finding files by content
  32. [ubuntu] cannot view partitions on HDD..!!!
  33. [ubuntu] Display a message everytime I turn off
  34. [ubuntu] Ubuntu Server + Xubuntu - Running COD4 Dedicated Server
  35. [ubuntu] Cant not work with p2p programs and any web navigator
  36. [ubuntu] Script to Auto-add Domain Users to Workstation Power Users Group doesn't work
  37. [ubuntu] Error browsing DVD
  38. [ubuntu] Ubuntu killed my bios?
  39. [ubuntu] tar package will not unload
  40. [SOLVED] Jaunty / 9.04 freezing on shutdown
  41. [ubuntu] mediubuntu dosnt connect with me
  42. [all variants] Is there any reason NOT to use noatime?
  43. [ubuntu] fdisk have limited support for filesystems
  44. [ubuntu] How to install apache in ubuntu 9.04
  45. [all variants] How to use joy2key?
  46. [ubuntu] Where is localhost in ubuntu 9.04?
  47. [all variants] some issue with authentiaction in win AD domain
  48. [ubuntu] Missing build menus in downgraded Kile
  49. [ubuntu] Need to increase TTL in connection sharing
  50. [all variants] grub modification
  51. [ubuntu] Can't run my php file at localhost
  52. [ubuntu] VNC'ing into a mac is always full colour
  53. [ubuntu] What ubuntu made to my computer?
  54. [ubuntu] E: Method http has died unexpectedly!
  55. [SOLVED] Editing .WAV Audio tags
  56. [ubuntu] VNC viewer w/ virtual screen scrolling??
  57. [all variants] Removing Old Linux Generics
  58. [ubuntu] How to add a new group created to an existing unix group
  59. [ubuntu] Volume Applet
  60. [ubuntu] pygtk text view data
  61. [ubuntu] How do I set up an Epson Artisan 700 over the network?
  62. [ubuntu] Shrinking a partition
  63. [ubuntu] Nautilus Breadcrumb problem
  64. [xubuntu] browsing windows shared folders via smb
  65. [ubuntu] Ubuntu security patches
  66. [ubuntu] How can I enlarge(zomming in) the terminal og unbuntu server
  67. [ubuntu] minimal install of UBUNTU
  68. [ubuntu] Recover e-mails from Windows drive
  69. [ubuntu] Media player
  70. [other] How can I fix ls sort order? (asciibetical, command line)
  71. [ubuntu] how to ping for hops?
  72. [ubuntu] No GUI after grub recovery
  73. [ubuntu] virtual box inforamtion
  74. [all variants] file volume
  75. [all variants] script using sed
  76. [ubuntu] Upon Reboot, Sound is Muted and Volume Level is at Low
  77. [ubuntu] virtual box usb devices...
  78. [ubuntu] gbi disk image, questions
  79. [ubuntu] From Noob to Awesome in the shortest time
  80. [ubuntu] Tomboy Notes - Links disappear when I keep typing
  81. [ubuntu] Resize active ext4 partition
  82. [ubuntu] Ubuntu @ USB - Micro SD or USB Flash ?
  83. [ubuntu] Fsck failed!
  84. [other_os] Help uninstall
  85. [ubuntu] How ntp and verify
  86. [ubuntu] canon lbp810 driver for amd64 platform
  87. [ubuntu] Separate desktops
  88. [ubuntu] Disk full - can't download or update
  89. [kubuntu] how to restore missing kio::trash
  90. [all variants] LinuxMint (Ubuntu) is very slow as compared to WinXP on same PC
  91. [ubuntu] Novice user having problems with sources.list
  92. [ubuntu] apt-get not working anymore
  93. [ubuntu] Cannot delete file HELP please !!
  94. [ubuntu] Custom LiveCD/DVD keeps freezing
  95. [SOLVED] Desktop shows home folder instead of ~/Desktop
  96. [ubuntu] Rhytmbox Icon overlapping power management...
  97. [other_os] newbie - DSL installation problem
  98. [ubuntu] the old windows ate my MBR excuse...
  99. [ubuntu] where do the downloaded files go i ubuntu
  100. [ubuntu] HI password recovery
  101. [ubuntu] Cd burner not working in any software
  102. [ubuntu] Can't install xampp
  103. [xubuntu] anyone using gizmo project successfully?
  104. [ubuntu] no menu entry or icon after CLI install of vim-full
  105. [ubuntu] Lightning won't read calendar
  106. [other_os] Ubuntu Ultimate vs. Ubuntu
  107. [ubuntu] HELP!!!! External harddrive suddenly quit working.
  108. [ubuntu] making a live cd in ubuntu
  109. [ubuntu] Problem with linux command: tar
  110. [ubuntu] Making bootable USB out of Windows XP .iso in Ubuntu
  111. [ubuntu] Profiles
  112. [SOLVED] pidgin segfaults with 2.5.8 and even 2.6.1..where are the developers?
  113. [xubuntu] Print/Scanner Server for Vista Network
  114. [ubuntu] Lacking display clarity in Ubuntu 8.10 - Intrepid Ibex
  115. [ubuntu] gparted move partition read error, how to fix?
  116. [ubuntu] Removed game "Golly" now all my files are gone. Really need help.
  117. [ubuntu] Ubuntu freeze when executing ps
  118. [ubuntu] Hard Locks on Data Transfers
  119. [ubuntu] reinstall Ubuntu Firefox
  120. [all variants] Best incremental backup solutions
  121. [all variants] Software Installation Questions
  122. [ubuntu] Nautilus opens SD card on return from suspend, even though it was told not to...
  123. [other] urgent onsite subnetting
  124. [ubuntu] Recovering files from ubuntu partition using Live CD
  125. [all variants] Openoffice footer
  126. [ubuntu] How do i find dif directorys from terminal?
  127. [ubuntu] Md5 checksum keeps saying diff.
  128. [all variants] sed regex matching problem
  129. [ubuntu] Where does gnome's auto iso mounter mount too?
  130. [ubuntu] Authentication error when using su
  131. [ubuntu] Mysql server doesn't show up on remote computers..
  132. [ubuntu] semi newbie BIG turn off that might make me go back to the dark side
  133. [ubuntu] Help installing printer mfc-7420
  134. [ubuntu] youtube full screen vs compiz zoom
  135. [ubuntu] Windows dissapeared in grub.
  136. [all variants] Setting up Samba server
  137. [ubuntu] Port ping/connection timeout issue - Details Inside
  138. [ubuntu] gparted
  139. [ubuntu] moto4lin Motorola motorazr v9 does not work
  140. [ubuntu] Good Backup Program?
  141. [ubuntu] Web forms lose focus
  142. [ubuntu] how to search (see the path) by nautilus?
  143. [ubuntu] Recover Data from mdraid filesystem
  144. [ubuntu] Problems with localepurge
  145. [ubuntu] how to start phpmyadmin
  146. [ubuntu] Garmin GPS and Mapsource
  147. [ubuntu] Problem extracting cygwin tar balls
  148. [ubuntu] file manager as root
  149. [ubuntu] Problems with cronjob
  150. [other] Grey screen in Amaya
  151. [SOLVED] How to recover from a bad superblock
  152. [ubuntu] Cant run Ubuntu on new built computer
  153. [ubuntu] Brasero: Increase compatibility with Windows System
  154. [ubuntu] black screen after loadin
  155. [ubuntu] peergaurdian????
  156. [ubuntu] Mouse not sensitive enough
  157. [ubuntu] Ubuntu and ATI HD 3870 problem
  158. [ubuntu] Can't Unmount my USB drive
  159. [ubuntu] Jaunty + Audio is getting frustrating.
  160. [ubuntu] Load Rise Of Death (LROD)
  161. [ubuntu] dd a directory??
  162. [kubuntu] KDE crash error after fresh install
  163. [ubuntu] Rhythmbox and movieplayer doesnt work after using flash on firefox and vice-versa
  164. [ubuntu] No taskbar icons and customizing new install
  165. [ubuntu] PCgen: Don't Know Where to Start.
  166. [SOLVED] High CPU because of Xorg (no other processes running)
  167. [ubuntu] problem with .iso image from cdrdao
  168. [xubuntu] Xubuntu Reboots without warning
  169. [ubuntu] Main menu won't hold selections
  170. [ubuntu] Updates kill sound
  171. [all variants] Sharing /home and .config files
  172. [ubuntu] Issue When Installing PCEmu
  173. [ubuntu] sudo: unable to execute /bin/UUID.sh: Permission denied
  174. [SOLVED] want to remove shadows from the windows
  175. [ubuntu] accidently removed libnspr4-0d help...
  176. [SOLVED] Sound and Video applications question?
  177. [ubuntu] OSS4 sound problems
  178. [all variants] Logging to tty1 and it says "No mail."
  179. [ubuntu] "bringtofront <window>" command/script
  180. [ubuntu netbook remix] Fileshare help needed
  181. [ubuntu] vpnc Assistance
  182. [ubuntu] Updating ClamTk
  183. [ubuntu] fedora 11 isn't on my grub list how would I add it?
  184. [all variants] Filesystem panic: Memory card Canon camera.
  185. [ubuntu] Huge Icons on Desktop
  186. [ubuntu] Overheats causing random-ish shutdowns.
  187. [ubuntu] Help! Update manager/terminal/clock/failed to fork pty
  188. [ubuntu] Randomly closing programs
  189. [ubuntu] ipod nano not mounting
  190. [ubuntu] Nautilus Hide windows Files or files that match by name
  191. [ubuntu] I am locked out of Root need help.
  192. [ubuntu] USB ports not working
  193. [ubuntu] Cannot boot after update, and forgot to uninstall non-working GRUB2
  194. [ubuntu] more effects then compiz and extra effects?
  195. [ubuntu] Trouble accessing the internet
  196. [ubuntu] looking for a terminal based instant messenger
  197. [ubuntu] gnuplot problem
  198. [SOLVED] Compile and install help
  199. [all variants] Asus M2N-E: No Sound
  200. [ubuntu] X-Fi and Mic
  201. [ubuntu] sudo : apt: command not found
  202. [ubuntu] "A Wine Application" appears multiple times under "Open With"
  203. [ubuntu] Lost all group associations for all users
  204. [ubuntu] Anyone able to install Epson WorkForce 310 Scanner
  205. [ubuntu] newbie transferring files & settings from windows, networking...
  206. [ubuntu] No windows media player plug-in with gecko?
  207. [ubuntu] Help finding pidgin plugin
  208. [all variants] Checking pci express slot for 2.0
  209. [all variants] games...
  210. [ubuntu] I need help uninstalling my graphics driver
  211. [ubuntu] Ubuntu Extras Screwed Fonts
  212. [ubuntu] opening an 'executable' (not windows .exe)
  213. [ubuntu] Top and bottom panel display errors...
  214. [ubuntu] Xvidcap not recording sound 9.04
  215. [ubuntu] Differance of Flavours and benefits
  216. [ubuntu] How can I find out what issues must be resolved in order to install complete updates?
  217. [ubuntu] Quick Question
  218. [ubuntu] wine and online mmo's
  219. [xubuntu] Custom keyboard layout error
  220. [ubuntu] how do i copy fonts from one ubuntu machine to another?
  221. [ubuntu] Squid Proxy setup
  222. [ubuntu] wifi for desktop
  223. [ubuntu] Locked out of Ubuntu and XP problems
  224. [ubuntu] Creating Launchers
  225. [ubuntu] Newbee, Viewing other user accounts?
  226. [ubuntu] Dont have permissions
  227. [ubuntu] Blackberry rim 7290
  228. [ubuntu] update manager
  229. [ubuntu] Check if two directory is completely the same
  230. [ubuntu] Doubts of a beginner
  231. [kubuntu] Weird X keyboard bug
  232. [all variants] Stripping down Ubuntu
  233. [all variants] (initramfs) prompt won't go away
  234. [ubuntu] Screen dims while playing movies
  235. [ubuntu] How do I know which directory a package being installed?
  236. [SOLVED] Need alternative (mirror?) of packages.ubuntu.com
  237. [ubuntu] Tip: Use your ISP server's for updates.
  238. [ubuntu] Opera [Any Version] Extremely slow
  239. [ubuntu] partition table repairing
  240. [ubuntu] left shift key remapping itself to alt?
  241. [ubuntu] a Version of enterprised 8.2 already exist(please help)
  242. [ubuntu] p2p proxy
  243. [ubuntu] How to restart network manager on resume?
  244. [ubuntu] x not starting - :\ ATI Raedon X2300
  245. [ubuntu] google web tool kit
  246. [ubuntu] Window frames
  247. [ubuntu] Locked Out
  248. [ubuntu] Massive problems on startup
  249. [ubuntu] Evolution configuration
  250. [ubuntu] Linux technician tools