Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - patcunha

Pages: [1] 2 3
1
Installation and Upgrades / logon script to set wallpaper
« on: April 23, 2009, 06:54:28 pm »
Hello!

I wonder if you know how to make a logon script to ebox to work with windows xp machines so that I can set a wallpaper in my users sessions. This is a simple way to advertise some activities going on in my school.
Can this be done? The wallpaper image should be saved somewhere in the server.
Can you help me?

2
Installation and Upgrades / the domain is not accessible
« on: January 14, 2009, 01:08:06 pm »
Hi!

I have this problem in my school in one classroom where we have Dell computers!
They are all the same model, and have the same software (win xp sp2) and configuration, but only in 3 computers I get this error when trying to login in the domain. The error message says: a computer account couldn't be found in the domais or the password is incorrect.

It isn't a hardware problem! I think!
Any help?

3
Installation and Upgrades / Re: winscp user folders
« on: November 12, 2008, 12:09:04 pm »
No one?

It must be a very simple solution, but ...

4
Installation and Upgrades / Re: winscp user folders
« on: November 11, 2008, 02:05:53 pm »
I can't connect with winscp with my user!
My user has admin privileges in file sharing.


5
Installation and Upgrades / winscp user folders
« on: November 07, 2008, 12:54:46 pm »
Hi!

I need my teachers to be able to see students folders (collect the content of those folders) and I'm using winscp.
How can I tell them (the teachers) to connect?
Is there a samba user? With the root user is easy, but...

Need advise, please!

6
Installation and Upgrades / logon script II
« on: October 22, 2008, 04:38:02 pm »
Hi!

We have many students using our network with Win XP computers.
In order to have the students data stored in My Documents and in the Desktop folder how can I redirect these folders to the server? I suppose this is made by a logon script, right?

7
Installation and Upgrades / Re: Manually add samba users
« on: September 17, 2008, 03:16:49 pm »
So, the script for deleting users would be like this:
Code: [Select]
#!/usr/bin/perl

use strict;
use warnings;

use EBox;
use EBox::Global;

EBox::init();
my $usersModule = EBox::Global->modInstance('users');

my @users = ();
open(my $USERS,"users");
while(my $line = <$USERS>) {
   chomp ($line);
   my $user;
   my ($username,$fullname,$password) = split(',',$line);
   $user->{'user'} = $username;
   $user->{'fullname'} = $fullname;
   $user->{'password'} = $password;
   push(@users,$user);
}
close($USERS);

foreach my $user (@users) {
   $usersModule->delUser($user->{'user'});
}

1;

There must be a file named users which content is only the username of the users to be deleted. Is that it? Like this:
Code: [Select]
7a01,
7a02,
.
.
.

8
Installation and Upgrades / Re: Add-On: BackupPC request.
« on: June 01, 2008, 03:03:12 pm »
Can restore be used to make a image of a PC and cast this image to a lot of other PCs through the network?

9
Installation and Upgrades / Re: Logon scripts
« on: May 24, 2008, 12:46:12 pm »
Where shall I put the logon scripts?

10
Installation and Upgrades / Add-on: Pykota
« on: May 16, 2008, 08:14:03 pm »
Hi!

I think including this software would be a good idea!
http://www.pykota.com/
What do you think?

11
Installation and Upgrades / Re: oki B4300
« on: May 15, 2008, 05:42:30 pm »
I did that but I still can't print anything!!!

The fact that I now have a domain shouldn't interfere with this?
The printer is installed in the client and is in the same network (the IPs are in the same network).
Doesn't print! :'(

12
Installation and Upgrades / Re: drbl
« on: May 15, 2008, 05:38:18 pm »
I'm trying to do this by following the instructions in the official site mentioned above!

The first step involves 2 commands:

Code: [Select]
wget http://drbl.nchc.org.tw/GPG-KEY-DRBL
apt-key add GPG-KEY-DRBL

The first line worked fine, but the second returns an error:
Code: [Select]
apt-key: command not found
Can you help me?

13
Installation and Upgrades / Re: DHCP
« on: May 15, 2008, 04:35:49 pm »
Right! ;)

14
Installation and Upgrades / DHCP
« on: May 14, 2008, 07:04:40 pm »
Hi!

I have configured my DHCP server by adding fixed addresses.
I didn't add ranges.

When I try to make a PC client to get is IP and its MAC address is not listed in the fixed addresses, it is not able to get a valid IP and connection is limited.

PCs with listed MAC addresses connect fine!

What is wrong?

15
Installation and Upgrades / Re: Group folders
« on: May 12, 2008, 06:17:52 pm »
Quote
you could do stuff like: all users belonging to a given group will have administration privileges for all the shares.

Yes! I'm very much interested!
Thanks!

Pages: [1] 2 3