+ Reply to Thread
Page 11 of 11 FirstFirst 1 2 3 4 5 6 7 8 9 10 11
Results 151 to 162 of 162

Thread: Linux

  1. #151
    Probably A Mammal
    Points: 14,488, Level: 78
    Level completed: 10%, Points required for next Level: 362
    bryangoodrich's Avatar
    Location
    Sacramento, California, United States
    Posts
    1,953
    Thanks
    221
    Thanked 419 Times in 387 Posts

    Re: Linux



    It's a URL. Copy and paste it into your browser. It doesn't work (404 error means the document isn't found). Take off CRAN and you have a working URL. That's all these repos are. A link to where some files are located (like an FTP).

  2. #152
    RotParaTon
    Points: 46,248, Level: 100
    Level completed: 0%, Points required for next Level: 0
    Awards:
    Discussion EnderPosting AwardFrequent PosterCommunity AwardMaster Tagger
    Dason's Avatar
    Location
    Ames, IA
    Posts
    9,080
    Thanks
    211
    Thanked 1,608 Times in 1,378 Posts

    Re: Linux

    Looks like you have an extra CRAN in there. You want to have
    Code: 
    deb http://cran.csiro.au/bin/linux/ubuntu precise/
    The iastate setup has the CRAN part as the root of the mirror so it looks different compared to other mirrors. But the CRAN part isn't always a part of a mirror's address.
    "His programming is malfunctioning. It begins! Get your weapons, he's going to become a killbot!!!" - bryangoodrich

  3. #153
    Super Moderator
    Points: 14,636, Level: 78
    Level completed: 47%, Points required for next Level: 214
    bugman's Avatar
    Posts
    1,493
    Thanks
    90
    Thanked 140 Times in 109 Posts

    Re: Linux

    Thanks bryan,
    I have pasted this into ...sources .list

    deb http://cran.stat.auckland.ac.nz/bin/...buntu/precise/

    and now get the following:

    E: Malformed line 11 in source list /etc/apt/sources.list (dist)
    E: The list of sources could not be read.
    The earth is round: P<0.05

  4. #154
    RotParaTon
    Points: 46,248, Level: 100
    Level completed: 0%, Points required for next Level: 0
    Awards:
    Discussion EnderPosting AwardFrequent PosterCommunity AwardMaster Tagger
    Dason's Avatar
    Location
    Ames, IA
    Posts
    9,080
    Thanks
    211
    Thanked 1,608 Times in 1,378 Posts

    Re: Linux

    There needs to be a space between the final ubuntu and the precise/

    Code: 
    deb http://cran.csiro.au/bin/linux/ubuntu precise/
    That space is important

    But you should be able to use the code I put in my previous two posts directly?
    "His programming is malfunctioning. It begins! Get your weapons, he's going to become a killbot!!!" - bryangoodrich

  5. The Following User Says Thank You to Dason For This Useful Post:

    bugman (11-10-2012)

  6. #155
    Super Moderator
    Points: 14,636, Level: 78
    Level completed: 47%, Points required for next Level: 214
    bugman's Avatar
    Posts
    1,493
    Thanks
    90
    Thanked 140 Times in 109 Posts

    Re: Linux

    Bryan, Dason,

    thats so helpful you guys. Thankyou both!

    So now that is set up, any additional updates will only require:

    sudo apt-get update
    sudo apt-get install r-base

    Is that right?

    That's sweet!!
    The earth is round: P<0.05

  7. #156
    Probably A Mammal
    Points: 14,488, Level: 78
    Level completed: 10%, Points required for next Level: 362
    bryangoodrich's Avatar
    Location
    Sacramento, California, United States
    Posts
    1,953
    Thanks
    221
    Thanked 419 Times in 387 Posts

    Re: Linux

    Did that work and install the latest version? You usually don't do it manually because your package manager (by default) periodically does checks for updates (i.e., it runs apt-get update which refreshes the indexes of the repos given your sources.list to identify updates). I know Ubuntu bugs the hell out of me by saying I have updates every day I need to look up (which amounts to clicking "okay" to update).

  8. #157
    RotParaTon
    Points: 46,248, Level: 100
    Level completed: 0%, Points required for next Level: 0
    Awards:
    Discussion EnderPosting AwardFrequent PosterCommunity AwardMaster Tagger
    Dason's Avatar
    Location
    Ames, IA
    Posts
    9,080
    Thanks
    211
    Thanked 1,608 Times in 1,378 Posts

    Re: Linux

    Quote Originally Posted by bugman View Post
    So now that is set up, any additional updates will only require:

    sudo apt-get update
    sudo apt-get install r-base
    I guess that works but I think it's more typically to use
    Code: 
    sudo apt-get upgrade
    in place of the install r-base.
    "His programming is malfunctioning. It begins! Get your weapons, he's going to become a killbot!!!" - bryangoodrich

  9. #158
    Super Moderator
    Points: 14,636, Level: 78
    Level completed: 47%, Points required for next Level: 214
    bugman's Avatar
    Posts
    1,493
    Thanks
    90
    Thanked 140 Times in 109 Posts

    Re: Linux

    Even better.
    The earth is round: P<0.05

  10. #159
    RotParaTon
    Points: 46,248, Level: 100
    Level completed: 0%, Points required for next Level: 0
    Awards:
    Discussion EnderPosting AwardFrequent PosterCommunity AwardMaster Tagger
    Dason's Avatar
    Location
    Ames, IA
    Posts
    9,080
    Thanks
    211
    Thanked 1,608 Times in 1,378 Posts

    Re: Linux

    Quote Originally Posted by bryangoodrich View Post
    Did that work and install the latest version? You usually don't do it manually because your package manager (by default) periodically does checks for updates (i.e., it runs apt-get update which refreshes the indexes of the repos given your sources.list to identify updates). I know Ubuntu bugs the hell out of me by saying I have updates every day I need to look up (which amounts to clicking "okay" to update).
    You can change how often it checks for updates. I think I have mine set to weekly but I rarely ever use the update manager. I just have an alias set to "uu" for "sudo apt-get update && sudo apt-get upgrade" which makes it easy enough to update my system.
    "His programming is malfunctioning. It begins! Get your weapons, he's going to become a killbot!!!" - bryangoodrich

  11. #160
    Super Moderator
    Points: 14,636, Level: 78
    Level completed: 47%, Points required for next Level: 214
    bugman's Avatar
    Posts
    1,493
    Thanks
    90
    Thanked 140 Times in 109 Posts

    Re: Linux

    Nice. Thanks.
    The earth is round: P<0.05

  12. #161
    Super Moderator
    Points: 14,636, Level: 78
    Level completed: 47%, Points required for next Level: 214
    bugman's Avatar
    Posts
    1,493
    Thanks
    90
    Thanked 140 Times in 109 Posts

    Re: Linux

    Quote Originally Posted by bryangoodrich View Post
    Did that work and install the latest version? You usually don't do it manually because your package manager (by default) periodically does checks for updates (i.e., it runs apt-get update which refreshes the indexes of the repos given your sources.list to identify updates). I know Ubuntu bugs the hell out of me by saying I have updates every day I need to look up (which amounts to clicking "okay" to update).

    Yeah it did. My manager hasn't been much of a manager in this respect. Im not sure if its a bug in Mint 13 or if I havn't configured my settings correctly.
    The earth is round: P<0.05

  13. #162
    RotParaTon
    Points: 46,248, Level: 100
    Level completed: 0%, Points required for next Level: 0
    Awards:
    Discussion EnderPosting AwardFrequent PosterCommunity AwardMaster Tagger
    Dason's Avatar
    Location
    Ames, IA
    Posts
    9,080
    Thanks
    211
    Thanked 1,608 Times in 1,378 Posts

    Re: Linux


    There is finally a reliable workaround to get Netflix Instant Streaming to work! It looks like right now it's only easily done using Ubuntu but I know I read something somewhere that implied to me that one could implement the same things in this workaround on other distros - it's just not as nicely packaged right now.

    Here is where I found about this: http://www.iheartubuntu.com/2012/11/...sktop-app.html

    Here is how to get it:

    Code: 
    sudo apt-add-repository ppa:ehoover/compholio
    sudo apt-get update
    sudo apt-get install netflix-desktop
    So excited!
    "His programming is malfunctioning. It begins! Get your weapons, he's going to become a killbot!!!" - bryangoodrich

+ Reply to Thread
Page 11 of 11 FirstFirst 1 2 3 4 5 6 7 8 9 10 11

Similar Threads

  1. Replies: 3
    Last Post: 11-12-2010, 07:48 PM
  2. Good linux software alternatives
    By termis in forum General Discussion
    Replies: 3
    Last Post: 10-18-2009, 02:31 PM
  3. help: SEM in linux with pre-typed syntax
    By owenpediatrica in forum R
    Replies: 2
    Last Post: 08-10-2009, 03:37 AM
  4. SPSS statistical software on Linux
    By cyberfriend in forum SPSS
    Replies: 0
    Last Post: 11-08-2008, 01:37 AM
  5. Installation of R under LINUX PLATFORM
    By regina_verghis in forum R
    Replies: 2
    Last Post: 10-18-2007, 09:15 PM

Tags for this Thread

Posting Permissions

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








Advertise on Talk Stats