Click Here
Home Blog Gallery Links Tutorials Projects
Update 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

The current progress image with the GParted utility shown.
I've removed almost any unneeded application from the build since I'm creating an ultimate Recovery cd as it should be. I'll later post detailed info how to create one yourself. Screenshot taken from the VirtualBox.
[C++] Random Junk V3 2010-07-05 12:31
This version works under linux perfectly
Quote:
#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";
}
[C++] Random Junk Generation 2010-07-02 20:16
There's a new random generation code whitch was succefully coded from scratch. The thing is that it output random junk symbols all time. The code is below :D
Quote:
#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(){
while(1) cout << (char) (rand() % 255);
}
Linux Hack Uncovered 2010-04-18 20:39
This hack shows the info for all users found on linux mashine by executing commands with their rights (works even with users that can't be normally su'ed on :D)
It outputs info like:
User root (Groups: root)
Id: uid=0(root) gid=0(root) grupės=0(root)

Command Line To try on:
Quote:
$ cat /etc/passwd | cut -d":" -f1 | sort | xargs -I {} -i sudo -u {} bash -c 'echo -e "User `whoami` (Groups: `groups`)\nId: `id`\n";'

Add a Comment

Get Your IP Instantly
Name:
Enter the text from the image below to the text field next to it (text is case sensitive):
Captcha
Email:

Name:
Password:

Enter Captcha (Case Sensitive):
Captcha


Register
English
Lietuviškai

RSS Feed
Main Content
Animation
Carmageddon
Programming
Technology
Electronics
Gaming
Linux
Anything
Site News

Unique visit count:
140 visits on page.
726 visits on site.
Detailed Statistics
Misceleanous Content