คิดว่าฉันจะดำเนินการต่อไปและรวมถึงตัวอย่างที่สมบูรณ์ของสิ่งที่ผู้คนสามารถรวบรวมและเรียกใช้สำหรับผู้ที่ไม่มีทักษะด้วย C โดยใช้คำตอบของ @BuvinJ
#include <stdio.h>
#include <string.h>
#include <fcntl.h> // open function
#include <unistd.h> // close function
#include "sys/syscall.h"
int main(); // Let's not worry about this for now
void dmesg( const char *tag, const char *msg, const int len )
{
const int TAG_LEN=3;
char buffer[128]={0};
memcpy( &buffer[0], tag, TAG_LEN );
memcpy( &buffer[TAG_LEN], msg, len );
int fd_kmsg = open( "/dev/kmsg", O_WRONLY );
write( fd_kmsg, &buffer, TAG_LEN+len );
close( fd_kmsg );
}
void dmesgWarn( const char *msg, const int len ){ dmesg( "<4>", msg, len ); }
void dmesgInfo( const char *msg, const int len ){ dmesg( "<6>", msg, len ); }
void dmesgDebug( const char *msg, const int len ){ dmesg( "<7>", msg, len ); }
int main(int argc, char **argv)
{
int getmysize = strlen(argv[1]);
printf("%d\n", getmysize);
printf("To be written: %s\nSize of argument: %d\n", argv[1], getmysize);
// dmesgWarn dmesgInfo or dmesgDebug
dmesgDebug(argv[1], getmysize);
};
หากต้องการเรียกใช้บันทึกข้างต้นเป็น kmsg.c และ gcc kmsg.c -o kmsg; sudo ./kmsg "สตริงที่คุณต้องการเพิ่มไปยัง / dev / kmsg"
make -C ...
ใน Makefile แทนของแท็บเพื่อคัดลอกเนื้อหาข้างต้นของ Makefile ไม่ทำงาน - อื่น ๆ อีกมากมายที่นี่ ฉันดูเหมือนจะไม่สามารถเพิ่มสิ่งนี้ในการแก้ไข ... ขอบคุณโดยคำตอบที่ดี