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. [all variants] where to get help how to work with uniconvertor?
  2. [ubuntu] Ubuntu server crashes
  3. [ubuntu] WINE Dependency Error
  4. [ubuntu] MX Revolution + xbindkeys/xmacroplay - Executing mouse-context sensitive key macros
  5. [ubuntu] Ubuntu 8.10 crashes
  6. [ubuntu] Random lockups, requiring power cycle/reset, using OpenGL
  7. Folders & Locations
  8. [ubuntu] new to ubuntu
  9. [ubuntu] Winxp Fat32 File Share setup?
  10. [ubuntu] Cursor installation
  11. [ubuntu] 8.10 and RAID
  12. [ubuntu] [SOLVED] Auto Update is gone from my startup.
  13. [ubuntu] Problem mounting FakeRAID
  14. [ubuntu] [SOLVED] Will anyone help
  15. [ubuntu] Kopete Webcam Issues
  16. [ubuntu] SFTP User
  17. [ubuntu] [SOLVED] Automatic drive mounting
  18. [ubuntu] SMB file share suddenly available only by IP
  19. [ubuntu] [SOLVED] Change permissions of deleted user's home folder
  20. [ubuntu] Share external drive via Samba
  21. [ubuntu] [SOLVED] Create launcher from commandline?
  22. [ubuntu] rebuilding Raid 5
  23. [all variants] Why does .dmrc require 644 permissions?
  24. [ubuntu] resolution keeps resetting after restart
  25. [ubuntu] Can I install Ubuntu from a USB flash drive or memory stick?
  26. [ubuntu] noob with printer question
  27. [ubuntu] Windows gaming
  28. [ubuntu] [SOLVED] Cyberbit for CJK in Latex
  29. [ubuntu] Why is 8.10 Crashing constantly?!
  30. [ubuntu] Bluetooth headset issues in 8.10.
  31. [ubuntu] [SOLVED] Where are font settings stored?
  32. [ubuntu] what's wrong?
  33. [ubuntu] Pendrive Install Grub 17
  34. [other] How website builders work
  35. [ubuntu] Where is hplip sourceforge net
  36. [ubuntu] Saving a file
  37. [ubuntu] custom kernel and then burn install
  38. [ubuntu] Boot is no longer "quiet" although flag is still there
  39. [all variants] Sharing a ZFS-fuse zpool
  40. [ubuntu] problems with update dependencies
  41. [ubuntu] postfix problem, sasauthd not found
  42. [ubuntu] monitor broke my laptop's video/sound
  43. [ubuntu] OpenOffice Missing Text
  44. [ubuntu] Logout button/menu thing disappeared
  45. [all variants] OpenCL implementation
  46. [ubuntu] Live USB Stick doesn't seem like it will happen.
  47. [ubuntu] The GRUB 17 that won't go away.
  48. [ubuntu] System Cleaning Software
  49. [ubuntu] Shift no longer recognized
  50. [gnome] How do you remove the resize bar on the Window List
  51. [ubuntu] Boot problems
  52. [all variants] Install Windows (XP) to USB or SD using Ubuntu
  53. [ubuntu] 2 noob question
  54. [ubuntu] existing dual boot xp to be used by VM
  55. [all variants] [SOLVED] Adding proposed repository via command line
  56. [ubuntu] [SOLVED] Scanner Not Found after upgrade to Intrepid Ibex
  57. [ubuntu] [SOLVED] I can no longer boot ubuntu 8.10 because of ccsm
  58. [other] Can McAfee VirusScan disable GRUB?
  59. [ubuntu] amsn webcam in display picture
  60. [ubuntu] Font Hinting Issues With ImageMagick Annotate
  61. [ubuntu] cant connect to the port designet to ssh
  62. [ubuntu] Long Distance VNC/RDP/NX/ETC
  63. [ubuntu] Here's a few random questions I have about customizing my Ubuntu
  64. [ubuntu] [SOLVED] ATI Radeon HD4850 video card and 1440 X 900 Screen Resolution
  65. [ubuntu] need help for ubuntu instaling
  66. [ubuntu] Cannot Connect with Wifi
  67. [ubuntu] Where can I find a detailed glossary for the terminal?
  68. [ubuntu] HDD sowing as full when there is space
  69. [ubuntu] Rootkit check
  70. [ubuntu] Change to Ubuntu usplash
  71. Worked fine, now boot crashes
  72. [ubuntu] Occasional display corruption with ATI drivers
  73. [ubuntu] Samba sharing; Can't enable sharing
  74. [ubuntu] [SOLVED] DX Ball game for Ubuntu
  75. [ubuntu] chown on 206,682 items
  76. [all variants] Using Kernel 2.6.24-nn with Intrepid Ibex (v8.10)
  77. [ubuntu] Could not start the X server
  78. [ubuntu] Desktop effects could not be enabled
  79. [ubuntu] Help to restore repartitioned hard drive
  80. [ubuntu] JAVa jre plugin ....killing me help
  81. [ubuntu] Android SDK help
  82. [ubuntu] [SOLVED] Reg:- Security of Linux
  83. [ubuntu] Default Chess and Brutal Chess flicker in 3D
  84. [ubuntu] cannot access website after host change
  85. [ubuntu] apt-get mergelist errors
  86. [ubuntu] Connect Palm Treo 750 with Ubuntu 8.1
  87. [ubuntu] How to "Generate package download script" to download LAMP???
  88. [ubuntu] [SOLVED] Initial account and system privileges
  89. [ubuntu] ubuntu eee
  90. [all variants] ASCII code for a character?
  91. [all variants] Fake RAID device
  92. [ubuntu] Installing fonts
  93. [ubuntu] Symbolic linking directories???
  94. [ubuntu] Weird title bar of windows when using compiz
  95. [ubuntu] vlc dvd menu question and update question
  96. [ubuntu] Ktorrent locations
  97. [all variants] Howto: Installing Vuze on 32bit and 64bit
  98. [ubuntu] A few sound questions
  99. [kubuntu] [SOLVED] black themes
  100. [ubuntu] GNOME does not start
  101. [ubuntu] Kde 4.2 Theme
  102. [ubuntu] [SOLVED] how to boot? /boot partiton on usb, rest on encrypted lvm
  103. [ubuntu] 8.10 live dvd username and password
  104. [ubuntu] trouble with version 7.04
  105. [ubuntu] vsftpd - Create new FTP user, not system user?
  106. [ubuntu] Partitions not listed in /etc/fstab - where are they configured?
  107. [ubuntu] Yahoo meesenger
  108. [all variants] [SOLVED] cairo-dock preferences?
  109. [ubuntu] Genius Slimstar pro problem
  110. [ubuntu] How can I get a Verizon UM150 Broadband Modem to work?
  111. [SOLVED] Permissions Unchangable in extra HD?
  112. [ubuntu] Emacs 23 package?
  113. [ubuntu] Problem with Pidgin and Empathy - too many authorization requests
  114. [ubuntu] I really screwed this up....
  115. [ubuntu] Terminal /Desktop
  116. [ubuntu] Can't login to ubuntu because the password.
  117. [ubuntu] Screen Resolution resets to 4:3, need16:9
  118. browse files root.disk w/o booting or mounting
  119. [all variants] How to get control of the time
  120. [ubuntu] [SOLVED] nvidia sound card problem
  121. [ubuntu] squid - ERROR Running Copy
  122. [ubuntu] DELL Inspiron 600m, Ubuntu 8.04 no desktop effects?
  123. [ubuntu] Fat 32 USB stick will not mount, thinks its NTFS?
  124. [ubuntu] Not detected web camera
  125. [ubuntu] Login manager problem
  126. [ubuntu] Unnecessary Background Processes
  127. [ubuntu] Workspace switcher preferences help
  128. [ubuntu] Dim display when idle
  129. [ubuntu] I can't get my USB work!
  130. [ubuntu] Ubuntu Hardy Heron installation adventures
  131. Help needed on EQ Overflowing
  132. [ubuntu] perl: warning: Setting locale failed
  133. [ubuntu] Connecting to a TV, need help getting correct resolution
  134. [ubuntu] Xorg Screwed Up
  135. [ubuntu] How To Login Into Ubuntu?????
  136. [ubuntu] Firefox speed...Anyone else having this problem right now?
  137. [other] I screwd up with compiz
  138. [ubuntu] Google Chrome
  139. [all variants] Compatibility between Gnome & KDE!
  140. [all variants] Questions about init.d and rc*.d
  141. [all variants] Bulk Rename issues
  142. [ubuntu] [SOLVED] Question about main menu customization
  143. [ubuntu] New HDD`
  144. [all variants] Pidgin timestamp format (picky question)
  145. [ubuntu] Problems With mouse click
  146. [xubuntu] I can't get into my BIOS
  147. [ubuntu] problem with dd backup - no such file or directory
  148. [ubuntu] Quick emerald question from a newbie.
  149. [ubuntu] Kylix Libraries ??
  150. [all variants] [SOLVED] Can't run executables on second hard disk
  151. [ubuntu] Itunes DVD backup discs unreadable in nautilus
  152. [kubuntu] Can't install Firefox 3.0.5 on Kubuntu 8.10 Intrepid Ibex
  153. [ubuntu] Replaced Xp with Vista while Ubuntu was already installed and now not booting
  154. [ubuntu] banshee won't close to tray and displays no tray icon
  155. [ubuntu] Synce Help
  156. [ubuntu] What other cli apps should I recommend besides these?
  157. [other] Windows and XP problems
  158. [ubuntu] USB is SLOW
  159. [ubuntu] Can't find Transmission main settings for Clutch
  160. [ubuntu] extracting image files from archives
  161. [ubuntu] Rtorrent Basics
  162. [ubuntu] amsn and microphone
  163. [ubuntu] ubuntu 8.10 on usb stick
  164. [all variants] Hellanzb / unrar creates files that have wrong permissions... possible umask problem
  165. [ubuntu] problem compiling old g++ code
  166. [ubuntu] Really slow file transfer on external drives
  167. [ubuntu] TV-out for thinkpad X61
  168. [ubuntu] quick easy question i hope
  169. [ubuntu] How to add 1366x768 screen resolution?
  170. [ubuntu] c++ programming...
  171. [ubuntu] Cannot move windows.
  172. [all variants] Logitech G51 & Creative SB SE & Pulse audio
  173. [ubuntu] Javascript rendering in FF3
  174. [ubuntu] [SOLVED] PHP not opening
  175. [ubuntu] Burning CDs
  176. [ubuntu] 8.10 <ctrl> <alt> <del> not showing option to turn off
  177. [all variants] Removing xmessage gui *.sh scripts
  178. Has Wubi cost me all my data?
  179. [SOLVED] hp device manager
  180. [ubuntu] Partition Deleted and Data Lost
  181. [ubuntu] hard drive wont mount-Please Help
  182. [ubuntu] [SOLVED] Catching my royal...........
  183. [all variants] Before I install the driver...
  184. [ubuntu] Auto Complete in terminal w/ up arrow
  185. [ubuntu] how do i save rezo settings
  186. [all variants] Ping Pong?
  187. [ubuntu] Unable to boot Ubuntu via grub
  188. [ubuntu] Help I Lost All My Files Yes I am Pathetic
  189. [SOLVED] xrdb won't merge .Xdefaults - error
  190. [ubuntu] Dual Monitor Help
  191. [ubuntu] purchased programs?
  192. [kubuntu] taskbar on desktop messed up
  193. [ubuntu] Disable automatic unmount of USB drives
  194. [ubuntu] Question about uninstalling Ubuntu without CD-Drive
  195. [ubuntu] email filtering on maildir archive - fo use with offlineimap
  196. [ubuntu] Mouse/touchpad pointing results in scrolling down
  197. [ubuntu] official source of apt/sources.list
  198. [xubuntu] + gOS3.0: laptop, error, noscreen found...
  199. [ubuntu] Text missng from various applications?
  200. [ubuntu] Tail with GUI ??
  201. [ubuntu] Are there iso images of earlier Ubuntu versions?
  202. [all variants] Upgrading filesystem to ext4
  203. [ubuntu] forgot to install
  204. [ubuntu] [SOLVED] Help, ubuntu install.
  205. [ubuntu] Run two applications after 20 sec
  206. [How To] Get a webcam to work in Ubuntu 8.10 Intrepid
  207. [ubuntu] asus v3 help load ubuntu
  208. [ubuntu] adding website icons to desktop screen
  209. [ubuntu] Help with uninstallation of VLC
  210. [ubuntu] Password prompt
  211. [ubuntu] Can't use livecd and I'm stuck
  212. [ubuntu] NFS File Permissions coexisting with Samba
  213. [all variants] Echo a message on all terminals?
  214. [ubuntu] How to install webcam (gspca) with a custom kernel? Is there a guy that managesthat ?
  215. [kubuntu] [SOLVED] Ati Driver Splash Screen Problem Kubuntu 8.10
  216. [ubuntu] Qemu 0.9.1 and GCC
  217. [ubuntu] Push mail for ubuntu server/System logs
  218. [ubuntu] Compiz/desktop effects assistance
  219. [all variants] Medibuntu servers down causes MAJOR headaches!
  220. [ubuntu] Using laptop to control bluetooth device
  221. [all variants] ubuntu Ultimate Edition
  222. [all variants] Markings in synaptic package manager
  223. [ubuntu] Remote desktop on internet browser
  224. [ubuntu] Install/Update to non-current kernel
  225. [ubuntu] [SOLVED] Randomly crashes
  226. [ubuntu] PySDM messed up my fstab
  227. [ubuntu] Accidentally typed "sudo chown -R kaska /" Plz help
  228. [ubuntu] help urgent ,how to recover or get back
  229. [all variants] aptitude not connecting
  230. [ubuntu] How to use sudo within the GUI?
  231. [ubuntu] Using an installation that has been fsck'd and repaired
  232. [ubuntu] [SOLVED] Can't Copy Japanese Files
  233. [ubuntu] [SOLVED] Emerald and Compiz problem -- loosing title bar!
  234. [ubuntu] Emerald and Compiz problem -- loosing title bar!
  235. [all variants] Installing KDE in addition to Gnome
  236. [ubuntu] Question about themes
  237. [SOLVED] [SOLVED] password too short
  238. [ubuntu] [SOLVED] When was Ubuntu first time installed?
  239. [ubuntu] Set Password for PDF Files Created Using CUPS-PDF
  240. root.disk transfer
  241. [ubuntu] anyone having trouble with this website?
  242. [ubuntu] SynCE issues: create_partnership.py: command not found
  243. [ubuntu] Problem Installing
  244. [all variants] Problem Using ctrl+ Keys in Terminal
  245. [ubuntu] Wierd graphical issue.
  246. [ubuntu] Old versions of Skype for Linux ? Which versions do you still have on your disks?
  247. [ubuntu] Random quotes with GDM theme -- any ideas?
  248. [ubuntu] Rise Of Nations.
  249. [ubuntu] Section mismatch warning in kernel rebuild: how serious is it?
  250. [kde] KDE apps can't save bookmarks in GNOME