Ok that’s removed it from Chloes account so there are no referenced to Chromium on Chloes desktop but it’s made no difference to the main account (which is ok )
EDIT
it’s still listed under preferences in the other kids account
Ok that’s worked so now there is no references to Chromium in either of the kids accounts,
As SSB’s are not system wide and I can now only access web addresses from the main account and I will now have to find the best way of copying web addresses over to the kids accounts if we need to create any new SSB’s,
Storing a copy of web addresses in a text file and placing it in a shared folder would be the ideal way I think, that way it would only be a matter of copying and pasting the web address from the text file into ice on the kids accounts
Can you tell me the best way of creating a shared folder that can be accessed from any account on the PC ?
From an admin account, create a directory somewhere … such as:
sudo mkdir -v /Publicly_Shared
make it read/write/execute by everyone:
sudo chmod 777 /Publicly_Shared
Now from each account, create a symlink (called Shared) to that directory in their respective home directories:
ln -s /Publicly_Shared ~/Shared
The above is only an example … you can put the shared directory anywhere (including a user home directory, or indeed /home … say if you have a separate /home partition), and call it whatever you wish.
if you don’t want everyone to have “execute” permission (just read/write) in that directory … change the chmod command to 766 instead of 777 … then only the owner:group have execute permission.
Ok that worked perfectly thanks, only one other thing is troubling me which is why am I able to access any home folder from any account ie in Chloes account I can easily access any of the other accounts by navigating to /home/ and I can access any files in any users home directory is this normal ?
Yes it’s normal … standard directory permissions are 755
Owner = read/write/execute
Group = read/execute
Other = read/execute
If you want to mask them off from everyone else … you could change the /home/
directory permissions to 750
but then it would probably be a good idea to add your “admin” account to the group … so your admin account can read what’s in there.
I think I’ll just leave it as it is, everything is fine and working well
I know I said in my last post that that was the last thing well that’s not strictly true in fact it’s not even remotely true but this is the last thing
I’ve installed a 20gb HDD for extra storage (FUJITSU MPE3204AT (/dev/sdb1) but it’s loking for a password to access it and I would like to make it easily available to all users
can you tell me how I can add it to /etc/fstab so it mounts on startup
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sda1 during installation
UUID=0743a623-5621-4247-ac93-4146d21cd3a9 / ext4 errors=remount-ro 0 1
# swap was on /dev/sda5 during installation
UUID=26ae14d3-4443-408e-a2a1-69a25017917e none swap sw 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto,exec,utf8 0 0