美文网首页
Computer Vision Environment Set

Computer Vision Environment Set

作者: 王鑫鑫_d516 | 来源:发表于2017-10-31 07:00 被阅读0次

    Environment Set up

    • use ssh login server
    • change file mode
    • upload a html to server
    • preview website

    use ssh login server

    We use bash which support your Linux command environment and make life easy!
    3 Steps as follow:

    1. Download and Install git
    image.png
    1. find and open it
    image.png
    1. command of login server
     ssh jq4387@csweb01.csueastbay.edu
    

    e.g.


    image.png

    change file mode

    [jq4387@csweb01 ~]$ chmod 755 public_html
    

    upload a html to server

    make a local directory public_html
    jump to public_html and new a file called test.html

    <!DOCTYPE html>
    <html>
    <head>
    <title>Page Title</title>
    </head>
    <body>
    
    <h1>This is a Heading</h1>
    <p>This is a paragraph.</p>
    
    </body>
    </html>
    
    scp test.html jq4387@csweb01.csueastbay.edu:public_html
    

    e.g.

    image.png

    preview website

    http://csweb01.csueastbay.edu/~jq4387/test.html
    

    local sever

    python -m SimpleHTTPServer 8000
    

    相关文章

      网友评论

          本文标题:Computer Vision Environment Set

          本文链接:https://www.haomeiwen.com/subject/mmyvpxtx.html