Welcome. There you'll find some info for Linux operating system, e.g. how to hack it.
Newest Images in GalleryToday's Most Popular Images
Latest Blog EntriesUpdate on Xubuntu livecd: Internet Bugs | 2013-07-20 22:27 |
---|
After a quite time I tried to remake the Ubuntu Linux Live CD according to the guide I posted before. After some digging I finally noticed the file /etc/resolf.conf didn't get created after livecd booted up. As in the picture above, /etc/resolv.conf gets recreated by typing sudo dhclient eth0 in the console but some problems may still be there.Reference on similar bug here: https://bugs.launchpad.net/relinux/+bug/1045757
Edit: This can fixed removing the /etc/resolv.conf if it exists before making the cd, and making a sym-linking in the chroot environment to other file as shown below. Quote: |
---|
ln -nsf ../run/resolvconf/resolv.conf /etc/resolv.conf |
| XUbuntu Linux Live Recovery and Rescue CD | 2011-04-17 17:16 |
---|
Alot of time went when I started to develop the Ubuntu Recovery Rescue CD with Xfce Desktop Environment. I created it almost based on guide posted on the link below with some other tweaks.
Link: https://help.ubuntu.com/community/LiveCDCustomizationFromScratch
| [C++] Random Junk V3 | 2010-07-05 12:31 |
---|
This version works under linux perfectlyQuote: |
---|
#include <iostream>
#include <cstdlib> //for compiling under linux
using namespace std;
void junk();
int main (int argc, char * argv[]){
srand( time(NULL) );
junk();
}
void junk(){
int size=1024;
cout << "\x1B\x5B\x48\x1B\x5B\x32\x4A";
for(int i=0; i<size; i++) cout << (char) (rand() % (127 - 32) + 32);
cout << "\n";
}
|
|
Go to Blog to see all entries.
|
Add a Comment