We started Summer Training 2009. IRC logs can be found here.
Can you join us in #dgplug on irc.freenode,net
Event Pics can be found at
http://picasaweb.google.com/makghosh/DGPLUGFAD
http://www.flickr.com/photos/subhodipbiswas/tags/dgplugfad2009/
===Day 1===
Paul W. Frields, the fearless Fedora Project Leader and long time contributor to the Fedora Docs project, is going to conduct a session on Fedora Docs as part of dgplug’s summer training.
what does the file /etc/fstab contain??
is it something related to disk quotas..???
#include<stdio.h>
#include<sys/types.h>
#include<pwd.h>
#include<unistd.h>
#include<stdlib.h>
int main()
{
uid_t uid;
gid_t gid;
struct passwd *pw;
uid = getuid();
gid = getgid();
printf("User is %s\n", getlogin());
printf("User IDs : uid=%d, gid=%d\n", uid,gid);
pw= getpwuid(uid);