摘要: [Linux] 使用 SCP 指令,讓您傳送檔案至遠端、下載檔案當我們使用 Linux 系統時,可能需要一些傳送檔案的動作,此時就可以使用 SCP 這個指令,即可不須透過隨身碟等方式,幫你將檔案傳送至另一端 Linux 電腦~接著我們看看如何使用~~假設我們有兩台電腦…..A電腦 IP : 1.1.1.1B電腦 IP : 1.1.1.2[上傳]若目前使用A電腦,我們要將 A電腦 某個檔案,傳送至 B電腦 中,可以這麼輸入scp[-P Port][-pr] [-l 速度] [傳送至遠端的檔案] [遠端帳號@IP:放置的路徑]ex. scp -P 1234 -pr/home/user/temp/ 阅读全文
posted @ 2012-10-26 20:31 jeremyatchina 阅读(331) 评论(0) 推荐(0) 编辑
摘要: ;hello.asm[SECTION .text]global _start_start: jmp short ender starter: xor eax, eax ;clean up the registers xor ebx, ebx xor edx, edx xor ecx, ecx mov al, 4 ;syscall write mov bl, 1 ;stdout is 1 pop ecx ;get the address of the string from the stack mov dl, 5 ;length of the string int 0x80 xor eax, e 阅读全文
posted @ 2012-10-26 20:09 jeremyatchina 阅读(251) 评论(0) 推荐(0) 编辑