Ubuntu 11.10 Oneiric Ocelot launched

krishnandu.sarkar

Simply a DIGITian
Staff member
Well, then why were you trying to install NVIDIA Drivers??

BTW May be that's the reason Compiz failed. Don't know whether Compiz works with Onboard GPU. Wait for others to confirm.
 

anandharaja

In the zone
iam not try to install any GPU driver, just changed the settings in compiz , just hangs few seconds and everything disappeared. i don't know to get back them

i think problem may be due to compiz
 

krishnandu.sarkar

Simply a DIGITian
Staff member
Ohh sorry..!! Thanks ico :D

@OP I don't think Onboard GP supports all the features in Compiz, so may be because of Compiz it crashed. Keep them to default with minimal modifications if needed.

BTW is it working fine after restarting??
 

doom2010

Journeyman
I installed ubuntu alongside with Win7.When i am in ubuntu i see the file system which created ubuntu and other OS(like - 50 GB Filesystem,65 GB Filesystem etc). So can u plz Tell me how can i change these directory through the terminal? Means i want to use other OS's partitions through terminal.
 

nims11

BIOS Terminator
you need to mount your other partitions to access them.
eg. if you want to mount /dev/sda5 (which is an NTFS partition), the following will mount it to the /mnt directory.
Code:
sudo mount /dev/sda5 /mnt
now the contents of /dev/sda5 can be seen in /mnt
unmount it by sudo umount /dev/sda5
 

doomgiver

Warframe
thats one way to do it, by my way, the partitions will always be availabe and you wont have to manually mount the every time

do this :

sudo mkdir /media/mount1
sudo mkdir /media/mount2

sudo mount -t ntfs-3g /dev/sda5 /media/mount1
sudo mount -t ntfs-3g /dev/sda6 /media/mount2

after doing this, run this :

gedit /etc/fstab

and paste everything here. use spoiler tags like this, coz its gonna be big
put the file contents here
 
Top Bottom