Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


Please convert these putty cmds into a suitable form that is executable on Cent OS
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

Please convert these putty cmds into a suitable form that is executable on Cent OS

rahulksrahulks Member
edited July 2013 in Help

these cmds are for Ubuntu

sudo apt-get update

sudo apt-get install mysql-server

sudo apt-get install mysql-client

sudo apt-get install apache2

sudo apt-get install php5

sudo apt-get install proftpd

sudo apt-get install ssh

sudo apt-get install ia32-libs

sudo apt-get install unzip

Comments

  • Google is your friend :)

  • netomxnetomx Moderator, Veteran

    CentOS uses yum instead of apt-get

  • SpeedBusSpeedBus Member, Host Rep
    edited July 2013

    sudo apt-get update = yum update

    sudo apt-get install mysql-server = yum install mysqld

    sudo apt-get install apache2 = yum install httpd

    sudo apt-get install php5 = yum install php

    sudo apt-get install unzip = yum install unzip

    sudo apt-get install proftpd = yum install proftpd

    sudo apt-get install ssh = yum install openssh-server

  • How about this?

    yum install mysqld httpd php unzip proftpd openssh-server -y

    Thanked by 1Droidzone
  • yum update
    yum install mysql-server
    yum install mysql
    yum install httpd
    yum install php
    yum install proftpd (needs the EPEL repo)
    yum install openssh
    yum install ld-linux.so.2
    yum install unzip
    
  • not sure about centos but as @Rallias should works.

    AFAIK i can apt-get install mysql-server mysql-client apache2 php5 proftpd ssh ia32-libs unzip with Debian

  • Do you know what is google?

  • apt-get update is not the same as yum update. On CentOS there's no identical command, as each update or install command will update the database as required.

  • @Bogdacutuu said:
    apt-get update is not the same as yum update. On CentOS there's no identical command, as each update or install command will update the database as required.

    cough yum check-update cough

  • @zen why be so complicated.
    Yum install mysqld httpd php unzip proftpd openssh-server -y

  • perennateperennate Member, Host Rep
    edited July 2013

    Q: how many LE*ers does it take to answer a question?

    A: As many as there are LE*ers. +1 to StackOverflow/Exchange :)

  • yum yum yum yum

  • I am actually surprised at the question "Please convert these putty cmds". What are putty cmds? Doesnt the author know the difference between apt-get and putty, and what each one does?

  • Yummy

  • upfreakupfreak Member
    edited July 2013

    How about "yum install apt -y" and all is well? (more info : http://support.rightscale.com/06-FAQs/FAQ_0063_-_How_can_I_use_apt-get_on_CentOS_based_images? )
    OK.. here is some real help http://yum.baseurl.org/wiki/apt2yum

  • @Rallias said:
    cough yum check-update cough

    Yeah, but it's not like the install or update commands don't do that anyway.

  • vedranvedran Veteran

    yum install apt?

  • flyfly Member

    uninstall centos and install debian

  • @fly said:
    uninstall centos and install debian

    lol.. Yea, that works!

  • @Bogdacutuu said:
    Yeah, but it's not like the install or update commands don't do that anyway.

    I'm just saying it IS possible in Centos, contradictory to your claim.

Sign In or Register to comment.