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

  1. [ubuntu] Help with removing one of two ubuntu partitions.
  2. [ubuntu] Cannot run anything using sudo
  3. [ubuntu] Ubuntu 8.04.1 killed me...HELP!
  4. [kubuntu] [SOLVED] "Remove this panel" accident
  5. [all variants] Ubuntu loads indefinitely
  6. [ubuntu] Transmission+vlc=freeze
  7. [ubuntu] [SOLVED] Can't Connect To Windows Network
  8. [ubuntu] Dedicated Server with Ubuntu Desktop installed
  9. [ubuntu] No Sound for Videos
  10. [all variants] motorola rokr
  11. [xubuntu] kvpnc blocks internet
  12. [ubuntu] System Policy Prevents Mounting Internal Media
  13. [ubuntu] AWN refusing to function properly
  14. [ubuntu] Firefox 3 doesnt save print settings
  15. [ubuntu] [SOLVED] Firefox 3 won't save my preferences
  16. [other] [SOLVED] Conky only shows on one workspace
  17. [ubuntu] [SOLVED] middle mouse button in laptop?
  18. [xubuntu] Problem loading Xubuntu after changing boot flags
  19. tv out theme?
  20. [ubuntu] Amarok can't fullscreen visualizer
  21. [all variants] Upon logon Ubuntu displays four messed up desktops. (pic included)
  22. [ubuntu] Why can't Eclipse and Ubuntu paly well together?
  23. [ubuntu] How do you change the Ubuntu Loading screen?
  24. [ubuntu] Nvidia restricted drivers problem
  25. [ubuntu] Help,missing tool bar
  26. [ubuntu] emerald
  27. [ubuntu] Synaptic error
  28. [ubuntu] Nvidia. Dual Monitors. Help?
  29. [ubuntu] Renaming Workspaces in Ubuntu 8.04... how?
  30. [ubuntu] [SOLVED] Dapper, Feisty, Gutsy, Hardy
  31. [all variants] Ubuntu, Hibernate/Suspend and a broken BIOS?
  32. [ubuntu] 2 Problems I Haven't Come Across an Answer To Yet
  33. [all variants] Multiboot
  34. [all variants] Gmail Clients
  35. [ubuntu] Cloning Setup from Desktop to Laptop
  36. [ubuntu] add about 700 more fonts to your ubuntu machine
  37. [other] About Emerald Themes
  38. [ubuntu] partimage: From smaller HDD to bigger HDD
  39. [ubuntu] evolution and gmail imap not working
  40. [ubuntu] [SOLVED] URGENT help needed!!!
  41. [ubuntu] Problem with update...
  42. [all variants] Resetting command-line parameter after shift command
  43. [all variants] file recovery/undelete
  44. Using Wubi on an Ext. HDD.
  45. [ubuntu] How to tell if I'm using USB2?
  46. [ubuntu] going crazy trying to get ntfs to mount
  47. [ubuntu] it keeps on crashing
  48. [gnome] I broke my Controls.
  49. [ubuntu] [SOLVED] Firefox packages kept back
  50. [ubuntu] Remove "orange screen" between boot splash -> login and login -> desktop?
  51. [ubuntu] [SOLVED] Window Manager doesn't load on startup
  52. [all variants] Paging Daemon
  53. [ubuntu] firebox problem
  54. [ubuntu] Abiword Problem: SCIM Japanese Input Problem
  55. [ubuntu] [SOLVED] need help installing djvulibre
  56. [ubuntu] Songbird cross-OS with iTunes in Vista
  57. [ubuntu] grub error 11
  58. [all variants] 4gb kernel patch for 32 bit
  59. [ubuntu] VMWare Uninstall
  60. [ubuntu] [SOLVED] trying to install conky
  61. [kubuntu] Transparent cube and popups / dialogs
  62. [ubuntu] Dual boot Vista and Ubuntu
  63. [ubuntu] HELP! blank screen due to a change in resolution
  64. [ubuntu] Creating live cd from install
  65. [all variants] USB Emulation/Redirection
  66. [ubuntu] Strange behaviour?
  67. [ubuntu] [SOLVED] Problem with repos
  68. [ubuntu] problems in wine , poser 7 don't find my system
  69. [ubuntu] Terminal Server Client hangs
  70. [ubuntu] [SOLVED] Transmission bittorrent client and TOR
  71. [ubuntu] Uppgrading to flash 10?
  72. [other] Ubuntu from Xubuntu
  73. [xubuntu] Xubuntu boot slow
  74. [kde] Mandriva
  75. [all variants] Conky SSL Email Python Script
  76. [ubuntu] CPAN broken
  77. [ubuntu] Updates wont install
  78. [all variants] 3D stress test for linux
  79. [ubuntu] Awn manager doesn't start up!
  80. [all variants] Help! fsck failed error...
  81. [gnome] gdmsetup Segmentation fault
  82. [other] Sticky bit
  83. [all variants] Changing the UUID to ntfs partition
  84. [ubuntu] trouble with java plugin for firefox 3 on hardy
  85. [ubuntu] Sign the Ubuntu code of Conduct - (7, 9, 'No public key') error
  86. [ubuntu] Is it just me? (8.04)
  87. [all variants] tar backup permission problems on users profiles
  88. [ubuntu] firefox address bar issue
  89. [ubuntu] No wireless driver! :O
  90. [all variants] Unicode in bash shell ?
  91. [ubuntu] clean installed Ubuntu won't shutdown
  92. [gnome] gwget assistance
  93. [all variants] [SOLVED] Multiple Monitors
  94. [ubuntu] Ubuntu won't boot
  95. [all variants] Hard Disk formatted improperly
  96. [xubuntu] Error when mounting other partition
  97. [ubuntu] Mozzila and the message...
  98. [ubuntu] Opacity, Guake and Compiz
  99. [ubuntu] keyboard not working until logout
  100. [all variants] Small linux for just PHP + Apache + MySQL
  101. [ubuntu] how to uninstall "depends" apps in ubuntu-studio-dekstop
  102. [other] Change font in vtty
  103. [ubuntu] Ubuntu with Apple's Cosmetics
  104. [all variants] ntfs-3g on Linux VERSUS ext2ifs on Windows
  105. [all variants] Cached files...where do they go?
  106. [ubuntu] laggy graphics
  107. [ubuntu] how is xorg used in ubuntu?
  108. [gnome] Panel Custimization
  109. how can you put a terminal on your desktop
  110. [ubuntu] Webmin and Curl
  111. [ubuntu] Shared Calendar
  112. [ubuntu] Hi I'm n the process installing Ubuntu for the first time!
  113. [kde] Compiz and AWN in KDE Hardy on an Inspiron 6000
  114. [ubuntu] Auto delete empty folders?
  115. [kubuntu] [SOLVED] Can't Mount Flash Card
  116. [ubuntu] Problem with telinit, rc scripts not executed?
  117. [ubuntu] Top and bottom bar not showing in Ubuntu 8.04
  118. [ubuntu] Lexmark X3470 not supported?
  119. [kubuntu] task bar font
  120. [xubuntu] New To Xubuntu, Fresh Install, Now Have Questions
  121. [ubuntu] Question about installing MSword with Wine
  122. [all variants] Remaster with MySQL
  123. [ubuntu] lag when I try to download
  124. [other] I lost wireless when rebooting
  125. [ubuntu] How Do I Install Google Earth?
  126. [kubuntu] No Hardware Drivers show up
  127. [ubuntu] I wanna sync directories between 2 laptops, XP and Ubuntu
  128. [all variants] Processes and system tune-up
  129. [ubuntu] PLEASE HELP!! I Need to undo rm.
  130. [ubuntu] Virus Scanner for Ubuntu
  131. [all variants] package inclusion nomination wiki/forum
  132. [ubuntu] Stuck in Low Graphics Mode
  133. [ubuntu] [SOLVED] Screenllet Issues -- Three of 8 Not Starting
  134. [ubuntu] Not able to pass a variable from grub to shell environment
  135. [ubuntu] [SOLVED] Suugestions for a Live Ubuntu Web Server Firewall?
  136. [ubuntu] Scrolling with laptop mousepad
  137. [ubuntu] Gcc
  138. [ubuntu] Ethernet adaptor no longer detected after upgrade
  139. [ubuntu] LXDE sets pcmanfm over nautilus in GNOME
  140. [all variants] [SOLVED] what is the default permissions for /usr/bin
  141. [ubuntu] [SOLVED] changing group on home directory
  142. [ubuntu] bash script question
  143. [ubuntu] [SOLVED] screensaver choppy
  144. [ubuntu] temp file cleaner
  145. [ubuntu] Desktop look: I want to understand...
  146. [ubuntu] Viewing Windows partition 8.04
  147. [ubuntu] Audacity can't record any audio from websites
  148. [ubuntu] Firefox is useless after today's update
  149. [ubuntu] Limit Kdevelop to one instance
  150. [all variants] Setting user keymap at console login
  151. [ubuntu] Code 39 extended barcodes
  152. [ubuntu] compiz-fusion installed but dont save config
  153. [ubuntu] installing beryl
  154. [ubuntu] Terminal "not responding". Sometimes just white screen when terminal opens.
  155. [SOLVED] Commandline: perform same actions as System > Preferences > Sound?
  156. [ubuntu] Firefox and javascript menus
  157. [ubuntu] Help! Printer HP Laserjet 1018... recognized but not working!!??
  158. [ubuntu] Scan large pages with regular scanner
  159. [ubuntu] Ubuntu freezes on screensaver + logging off/switching users
  160. [xubuntu] [SOLVED] "HASH" for "xubuntu-8.04.1"
  161. [ubuntu] High IOwait with gutsy
  162. [ubuntu] move to trash on NTFS partition
  163. [ubuntu] Cannot get WEP to work.
  164. [all variants] can't open ssh port
  165. [ubuntu] No USB audio w/ Mozilla or aMSN
  166. [ubuntu] problem with windows partition
  167. [ubuntu] howto backup entire folder into a zip
  168. [ubuntu] Envy Can't Get Nvidia Right
  169. [ubuntu] libstdc++.so.5 missing
  170. [ubuntu] grub error 13 -- help recovering windows on raid 0 stripe
  171. [ubuntu] Which one is The First to Configure ????
  172. [ubuntu] getting a windows .bat working
  173. [ubuntu] bootskin
  174. [ubuntu] Computer screen unable to read signal when my computer turns on
  175. [ubuntu] Problems with fstab
  176. [mythbuntu] mythbuntu?
  177. [ubuntu] Help with creating launchers
  178. [ubuntu] boot skin
  179. [ubuntu] gfx
  180. [ubuntu] downgrading drivers in envy
  181. [all variants] [SOLVED] "Sticky" Trash File
  182. [ubuntu] Problems with VNC over SSH
  183. [ubuntu] [SOLVED] Change Ubuntu theme into Windows 98
  184. [ubuntu] [SOLVED] Install gedit plugin?
  185. [ubuntu] HP Photosmart C4480 - will print, but won't scan
  186. [ubuntu] GRUB GFX Problem
  187. Endless Installation
  188. [ubuntu] Slow refresh in Compiz at 1600x1200, not at 1400x1050
  189. [all variants] Alt+Shift, Scroll Lock diode lights up? wtf?
  190. [ubuntu] Kind of a weird question but what's the best way to share pictures between users?
  191. [ubuntu] pimped-out desktop
  192. [all variants] apt-get purge not really "purgring"
  193. [ubuntu] gedit: snippets not in sidepane
  194. [ubuntu] Where can I get this theme? Please!
  195. [ubuntu] [SOLVED] minimizing?
  196. [ubuntu] /home in FAT32 or NTFS partition
  197. [ubuntu] [SOLVED] Enable touchpad after installing
  198. [ubuntu] How do I un install this?
  199. [ubuntu] Problem Starting Up WoW with wine in 8.04
  200. [all variants] Locales: What the *** is going on?
  201. [ubuntu] Windows always open top left
  202. [ubuntu] why was nail dropped from hardy?
  203. [ubuntu] TIP: recovering from corrupt archive
  204. [ubuntu] Multiple atd processes causing headaches
  205. [ubuntu] AWM (Avant Window Manager)
  206. [ubuntu] Windows appear behind top panal
  207. wubi + lvpm + asus eeepc 900
  208. [ubuntu] cron doesn't execute user crontabs
  209. [ubuntu] Boot Hang with 2.6.24-20-server
  210. [ubuntu] can't share files/Print$
  211. [ubuntu] Hibernate wake-up - wrong keyboard layout, and external HD name change
  212. [ubuntu] Web Link URLs are not Recognized
  213. [ubuntu] Changing Media Handling Programs
  214. [all variants] combine MB/CPU and HDD temps in one rrd graph
  215. [ubuntu] [SOLVED] ATI Radeon 9600 issue with compiz effects
  216. [other] No module named gtkmozembed (Pytrainer wont start)
  217. [ubuntu] [SOLVED] Mouse drivers?
  218. [ubuntu] [SOLVED] How to add a button to toolbar?
  219. [ubuntu] Missing Background and icons on boot
  220. [ubuntu] multiple desktop backgrounds
  221. [ubuntu] how to get the latest gstreamer installed
  222. [other] [SOLVED] whats GHz
  223. [other] [SOLVED] pc buyying help
  224. [ubuntu] [SOLVED] OMG-- Desktop Manager
  225. [gnome] Dual Displays not working
  226. [ubuntu] USB mouse after hibernate
  227. [all variants] [SOLVED] chown troubles
  228. [ubuntu] [SOLVED] Java in Flock (help me)
  229. [ubuntu] SPARC 20 install
  230. [ubuntu] Need a function on an output port
  231. [ubuntu] Usb Audio
  232. [SOLVED] Help with sources.list
  233. [ubuntu] x11vnc server error end of stream
  234. [ubuntu] Is there a Vista theme for Ubuntu 8? (also, WTF is Compiz)
  235. [ubuntu] Odd proprietary driver showing up
  236. [ubuntu] Digital Camera on ubuntu?
  237. [ubuntu] Installing Stata 10 with the Windows license
  238. [ubuntu] Lost Desktop
  239. [ubuntu] OS gets stuck shuting down
  240. [ubuntu] Setting resolution to 1900x1200 on Inspiron 1521
  241. [ubuntu] how to install clamav?
  242. [all variants] TrueCrypt on XP, LUKS on ubuntu
  243. [ubuntu] [SOLVED] hello, i get an error when trying to use sudo apt-get
  244. [other] Open Office Spreadsheet Help: Macros?
  245. [ubuntu] Cron won't wake me up
  246. [kubuntu] cannot launch superkaramba
  247. [ubuntu] in/out error
  248. [ubuntu] Playstation 3 + Ubuntu + wine running Counter Strike: Source
  249. [ubuntu] Game problem - Lbreakout2
  250. [ubuntu] About VI editor