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);
The details about the summer training program can be found here.
Hi All,
I am usig Ubuntu v7. Just wanted to know if I can use a broadband connection in my machine. I have earlier configured dial up connection with Fedora Core in my home, but not sure whether Broadband will be supported. (I read in some blogs that USB modem is not detected in Linux).
Thanks for any suggestions/comments.