1、首先,連接相應linux主機,進入到linux命令行狀態下,等待輸入shell指令。
② linux系統中怎麼查看python腳本代碼
Python代碼文件用文本編輯器軟體打開就能查看了,文本編輯器軟體比較常見的有Vim和gedit,Vim是一個命令行的文本編輯器,如果新手用不好Vim,可以選擇gedit,gedit是幾乎每一種Linux發行版都自帶的軟體,是圖形界面的,在終端中輸入gedit就可以啟動它。
③ linux怎麼使用vim運行代碼
第一首先在電腦上打開Linux系統。
然後打開終端窗口。
第二然後用vim命令打開文件。
再用i鍵進入插入模式。
第三然後按esc鍵就可以退出插入模式。
再按v鍵可以進入可視模式。
第四然後可以多個字元進行文本操作。
再用CTRL鍵加v鍵可以操控文本塊。
第五然後再可視模式下,按緊shift鍵。
再按:鍵就可以進入到命令模式。
第六然後用w可以保存修改的操作。
再按q就可以退出模式。
④ Linux中,運行一個C語言程序如何運行
1、打開kali linux的終端。創建一個文件並命名為test.c。在終端輸入:touch test.c。
⑤ linux能夠識別的程序代碼是什麼
1、讀取文件全部內容
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char* argv[])
{
char ch;
FILE* fp;
unsigned long int count = 0;
char buf[1025] = {0};
// 這里要求我們在輸入兩個參數,第一個為 exe 路徑,第二個為 文件名
// 如 file_test.exe test.txt
if (argc != 2)
{
printf("Usage: %s filename\n", argv[0]);
exit(EXIT_FAILURE);
}
if ((fp = fopen(argv[1], "r")) == NULL)
{
// 如果文件打開失敗(通常是文件不存在),則結束程序
printf("Can't open %s\n", argv[1]);
exit(EXIT_FAILURE);
}
while ((ch = getc(fp)) != EOF && count < 1024)
{
// 顯示文本內容並計數
buf[count] = ch;
count++;
}
fclose(fp);
printf("%s\n", buf);
printf("File %s has %lu characters\n", argv[1], count);
return 0;
}
2、cJSON解析字元串
編譯選項要加 -lm
示例源串
{
"server": {
"nodes": [{
"ip": "10.76.76.190",
"port": 6379
}, {
"ip": "10.76.76.191",
"port": 6380
}, {
"ip": "10.76.76.192",
"port": 6381
}],
"password": "admin"
},
"isssl": true
}
登錄後復制
示例代碼(每一行記得判空,編譯時加-lm選項)
#include <stdio.h>
#include "cJSON.h"
int main(){
char c[] = "{\"server\":{\"nodes\":[{\"ip\":\"10.76.76.190\",\"port\":6379},{\"ip\":\"10.76.76.191\",\"port\":6380},{\"ip\":\"10.76.76.192\",\"port\":6381}],\"password\":\"admin\"},\"isssl\":true}";
cJSON* root = cJSON_Parse(c);
cJSON* json_server = cJSON_GetObjectItem(root, "server");
cJSON* json_isssl = cJSON_GetObjectItem(root, "isssl");
cJSON* json_password = cJSON_GetObjectItem(json_server, "password");
cJSON* json_nodes = cJSON_GetObjectItem(json_server, "nodes");
int i = 0;
for (; i != cJSON_GetArraySize(json_nodes); ++i) {
cJSON* each = cJSON_GetArrayItem(json_nodes, i);
cJSON* json_ip = cJSON_GetObjectItem(each, "ip");
cJSON* json_port = cJSON_GetObjectItem(each, "port");
printf("ip %s\n", json_ip->valuestring);
printf("port %d\n", json_port->valueint);
}
printf("password %s\n", json_password->valuestring);
printf("is ssl %s\n", json_isssl->valueint ? "true":"false");
cJSON_Delete(root);
}
3、curl拿到回傳的數據
編譯選項要加 -lcurl
頭部選項參考
https://curl.se/libcurl/c/curl_easy_setopt.html
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <curl/curl.h>
struct string {
char* ptr;
size_t len;
};
void init_string(struct string* s) {
s->len = 0;
s->ptr = malloc(s->len + 1);
if (s->ptr == NULL) {
fprintf(stderr, "malloc() failed\n");
exit(EXIT_FAILURE);
}
s->ptr[0] = '\0';
}
size_t writefunc(void* ptr, size_t size, size_t nmemb, struct string* s) {
size_t new_len = s->len + size * nmemb;
s->ptr = realloc(s->ptr, new_len + 1);
if (s->ptr == NULL) {
fprintf(stderr, "realloc() failed\n");
exit(EXIT_FAILURE);
}
memcpy(s->ptr + s->len, ptr, size * nmemb);
s->ptr[new_len] = '\0';
s->len = new_len;
return size * nmemb;
}
int main(void) {
CURL* curl;
CURLcode res;
curl = curl_easy_init();
if(curl) {
struct string s;
init_string(&s);
curl_easy_setopt(curl, CURLOPT_URL, "https://www..com");
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, "test");
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, writefunc);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &s);
res = curl_easy_perform(curl);
printf("列印數據:\n%s", s.ptr);
free(s.ptr);
/* always cleanup */
curl_easy_cleanup(curl);
}
return 0;
}
4、獲取隨機數
#include <stdio.h>
int main(int argc, char* argv[]){
srand((int)time(0));
//列印 32位 test 隨機數,並用16進製表示
int test2 = rand();
printf("%lx \n", test2);
// 列印 64位 test 隨機數,並用16進製表示, 016代表不足16位的部分,補零,llx代表列印64位的16進制數
unsigned long long test = ((unsigned long long)rand() << 32) + rand();
printf("%016llx \n", test);
return 0;
}
5、定義按位的結構體
總結,按照位定義結構體,一定要都按照位定義,不然會出現意想不到的錯誤,而且一定要定義無符號的
#include <stdio.h>
#pragma pack (1)
struct test1 {
unsigned char cloud_id:3;
unsigned char vendor_id:4;
unsigned short machine_id;
unsigned long long current_time:41;
};
struct test2 {
unsigned char cloud_id:3;
unsigned char vendor_id:4;
unsigned short machine_id:16;
unsigned long long current_time:41;
};
int main(int argc, char* argv[]){
printf("test1 大小 : %d \n", sizeof(struct test1));
printf("test2 大小 : %d \n", sizeof(struct test2));
return 0;
}
6、按位列印01位元組碼
#include <stdio.h>
// 修改type後面的類型,可以查看各種數的位元組碼
#define type unsigned int
void print_bin(type num)
{
int len = sizeof(type);
int n = 8;
int i, j, k;
unsigned char *p = (unsigned char*)&num + len -1;
for (i = 0; i < len; i++) //處理len個位元組
{
j = *(p - i); //取每個位元組的首地址
for ( k = 7; k >= 0; k--) //處理每個位元組的8個位
{
if (j & (1 << k))
printf("1");
else
printf("0");
}
printf(" ");
}
printf("\r\n");
}
int main(int argc, char* argv[]){
type a = 100;
print_bin(a);
return 0;
}
登錄後復制
7、列印16進制位元組碼
#include<stdio.h>
typedef unsigned char uint8;
#define HEXDUMP_LINE_LENGTH 16
void hex_mp(uint8* data, int length)
{
uint8* p = data;
int i, line, offset = 0;
while (offset < length)
{
printf("%04x ", offset);
line = length - offset;
if (line > HEXDUMP_LINE_LENGTH)
line = HEXDUMP_LINE_LENGTH;
for (i = 0; i < line; i++)
printf("%02x ", p[i]);
for (; i < HEXDUMP_LINE_LENGTH; i++)
printf(" ");
for (i = 0; i < line; i++)
printf("%c", (p[i] >= 0x20 && p[i] < 0x7F) ? p[i] : '.');
printf("\n");
offset += line;
p += line;
}
}
8、列印位元組碼簡易版
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
void main() {
unsigned char Buf[] = "123456";
unsigned int len = strlen(Buf);
char* Buf1 = (char*)malloc(len * 3 + 1);
int i = 0, k = 0;
for (; i < len * 3; i += 3, k++)
snprintf(&Buf1[i], 4, "%02x ", Buf[k]);
printf(Buf1);
free(Buf1);
}
9、逐級創建文件夾
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
int mkdir_recursively(char* dir) {
if (NULL == dir)
return 1;
size_t len = strlen(dir);
char* str = malloc(len + 1);
if (NULL == str)
return 1;
strcpy(str, dir);
int i = 0;
for (i = 0; i < len; i++) {
if (str[i] == '/') {
if (i == 0)
continue;
str[i] = '\0';
if (access(str, 0) != 0) {
if (mkdir(str, S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH)) {
free(str);
return 1;
}
}
str[i] = '/';
}
}
if (len > 0 && access(str, 0) != 0) {
if (mkdir(str, S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH)) {
free(str);
return 1;
}
}
free(str);
return 0;
}
int main() {
mkdir_recursively("/home/test/abc/edf")
⑥ linux虛擬機下bash shell編程,製作一個音樂播放器,可以實現用代碼打開mp3文件嗎
可以,本質上也就是命令行調用。試試ffmpeg
⑦ Linux如何運行代碼
什麼代碼?編譯的?shell的?還是解釋程序的?
如果是shell代碼如下
sudo chmod 755 xxxx(xxxx是你的文件名,這一步是給你的代碼可運行許可權)
然後在文件所在目錄下使用./xxxx(xxxx是文件名)
如果是編譯代碼參考你的編譯器
如果是解釋型代碼一般可以通過解釋器名稱+文件名即可運行