Results 1 to 10 of 10

Thread: Recommended apps to install

  1. #1
    Join Date
    Mar 2013
    Beans
    12

    Recommended apps to install

    inside of a week still since my ubuntu installation, and was wondering what applications people would consider as essential, whether they're utilities or whatever.

    i'm not much of a command line type (done a small amount as a legacy of my mac background), i'd call myself an enthustiac dabbler, are there any helper type apps for this area of linux ?

    or is it book is best, if so can anyone recommend a good (relatively inexpensive) book for a beginner.

  2. #2
    Join Date
    Mar 2013
    Beans
    12

    Re: prolly been asked a few times before.

    oh great, really shouldn't post just afer waking up, just seen the sticky about command line helping.


    i'll expand on the original question somewhat then, i really would like to get to grips with compiling as it looks like i am going to need a few driver modules that aren't off the shelf so to speak.
    Last edited by sparklyballs; March 15th, 2013 at 03:37 AM.

  3. #3
    Join Date
    Mar 2012
    Location
    Near one of my computers
    Beans
    307
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: prolly been asked a few times before.

    For sure there's some software you'll want just to have.

    ubuntu-restricted-extras - this is for mp3's and flash and stuff like that.
    openjdk-7-jre and icedtea-7-plugin - if you want java support.

    Then some others that you might like.

    rhythmbox - my favorite music player
    vlc - my favorite video player
    geany - favorite code editor
    asunder - rip cd's
    bleachbit - for cleaning unneeded files
    gufw - a firewall if you want it
    deluge - my favorite bittorrent client
    fortune-mod - display fortunes via command line

    You can look at these in the software center and install them or you can install them on the command line. To install packages you use `apt-get' and the arguement `install'. Because it need root privelidges, you use sudo, which is S uper U serDO . The super user is the root user, but you can't use that account like your own, it's only there for `administration'.

    So the command all together would be
    Code:
    sudo apt-get install
    But you need to tell it which packages too so it really is
    Code:
    sudo apt-get install package-name package2 ... packageN
    #and to remove
    sudo apt-get remove package-name
    you can update and upgrade packages too using this method. Using
    Code:
    sudo apt-get update
    #and
    sudo apt-get upgrade


    To view the manual page for a command use the man command.
    Code:
    man <command_you_want_to_know_about>
    I recommend at least skimming the apt-get man page.

    Best of luck with Ubuntu/Linux. Welcome to Ubuntu. If you want more information on using the Ubuntu desktop, go to the dash and type help and press enter. If you don't know what the dash is, press the windows key, or command key if you're on a mac.

    And just for fun, the Advanced Bash Scripting Guide. Its pretty useful, at least after you've learned a lot of it.

    Kopkins
    Last edited by Kopkins; March 15th, 2013 at 04:47 AM.

  4. #4
    Join Date
    Mar 2013
    Beans
    12

    Re: prolly been asked a few times before.

    thank you for your reply kopkins, I shall look at that link you sent a little later.

  5. #5
    Join Date
    Oct 2009
    Location
    Reykjavík, Ísland
    Beans
    13,647
    Distro
    Xubuntu

    Re: Recommended apps to install

    Changed the thread title to a more informative one.
    Bringing old hardware back to life. About problems due to upgrading.
    Please visit Quick Links -> Unanswered Posts.
    Don't use this space for a list of your hardware. It only creates false hits in the search engines.

  6. #6
    Join Date
    Nov 2009
    Beans
    Hidden!
    Distro
    Kubuntu 20.04 Focal Fossa

    Re: prolly been asked a few times before.

    Quote Originally Posted by sparklyballs View Post
    i'll expand on the original question somewhat then, i really would like to get to grips with compiling as it looks like i am going to need a few driver modules that aren't off the shelf so to speak.

    you will need build essentials for compiling. and instructions are usually provided in the packaged driver module (such as how to do it, prerequisites...).
    Read the easy to understand, lots of pics Ubuntu manual.
    Do i need antivirus/firewall in linux?
    Full disk backup (newer kernel -> suitable for newer PC): Clonezilla
    User friendly full disk backup: Rescuezilla

  7. #7
    Join Date
    Apr 2011
    Location
    Mystletainn Kick!
    Beans
    13,611
    Distro
    Ubuntu

    Re: Recommended apps to install

    Quote Originally Posted by sparklyballs View Post
    inside of a week still since my ubuntu installation, and was wondering what applications people would consider as essential, whether they're utilities or whatever.

    i'm not much of a command line type (done a small amount as a legacy of my mac background), i'd call myself an enthustiac dabbler, are there any helper type apps for this area of linux ?

    or is it book is best, if so can anyone recommend a good (relatively inexpensive) book for a beginner.
    synaptic package manager.

    I don't think there is such a thing as must have, but if you want to try out a bunch of different apps, installing through synaptic is far easier and quicker than the software center.
    Splat Double Splat Triple Splat
    Earn Your Keep
    Don't mind me, I'm only passing through.
    Once in a blue moon, I'm actually helpful
    .

  8. #8
    Join Date
    Feb 2008
    Beans
    5,078
    Distro
    Xubuntu 16.04 Xenial Xerus

    Re: Recommended apps to install

    If you have a webcam, Cheese
    From the Google site, Chrome
    GIMP
    Audacious
    ubuntu-manual

    As previously (but inaccurately) suggested, build-essential

    What makes you think you might need driver modules?

  9. #9
    Join Date
    Oct 2012
    Beans
    47
    Distro
    Ubuntu Gnome 13.10 Saucy Salamander

    Re: Recommended apps to install

    If you want to learn about compiling then you could check out linux from scratch. It will teach you how to compile a linux distro from source.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •