For Linux systems:
cqtdeployer -bin myexecutable
For Windows systems:
cqtdeployer -bin myexecutable.exe -qmake C:/Qt/5.15.0/min_gw/bin/qmake.exe
For Linux systems:
cqtdeployer -bin myexecutable
For Windows systems:
cqtdeployer -bin myexecutable.exe -qmake C:/Qt/5.15.0/min_gw/bin/qmake.exe
cd $DATABASE_LOCATION
echo '.dump'|sqlite3 $DB_NAME|sqlite3 repaired_$DB_NAME
mv $DB_NAME corrupt_$DB_NAME
mv repaired_$DB_NAME $DB_NAME
sqlite3 your_database.db ".recover" | sqlite3 new_database.db
/etc/ssh/sshd_config düzenleyerek portu değiştirebiliriz
#Port 22 olan kısmın kommentini kaldırıp istenen port yazılmalıdır
Method 1
system(" sysctl -w net.ipv4.icmp_echo_ignore_all=1 ");
Method 2
? : Uboot komutlar hakkında bilgi almak için
printenv : Şuan cihazın açılışı için set edilen ayarları görmek için
mmc info : Cihazda bulunan mmcleri görmek için
fstype mmc 0:1 : mmc 0 partition 1 için dosya sisteminin ne olduğunu görüntüler
fstype mmc 0:2 : mmc 0 partition 2 için dosya sisteminin ne olduğuu görüntüler
fatinfo mmc 0:1 : fat dosya sistemine sahip bir partition hakkında ayrıntılı bilgi sağlar
fatls mmc 0:1 : fat dosya sistemine sahip bir partitionda bulunan dosyaları listeler
ext4ls mmc 0:2 : ext4 dosya sistemine sahip bir partitionda bulunan dosyaları listeler
#include <linux/init.h>
#include <linux/sched.h>
#include <linux/oom.h>
static int __init my_init(void)
{ pr_info("Welcome to the SlyEmbed kernel programming..\n");
return 0;
}
static void __exit my_exit(void)
{ pr_info("Bye bye ....\n");
}module_init(my_init);
module_exit(my_exit);
MODULE_AUTHOR("SlyEmbedded Academy");
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Samle kernel modular program");
</code></pre>