Showing posts with label gujarat board. Show all posts
Showing posts with label gujarat board. Show all posts

Wednesday, September 2, 2009

Gujarat Board - Introduction to Computers

Dear Computer Teachers,
As we know there are two lessons based on scripting in Standard 12th Gujarat board. below you can find links for solved lab exercises for your reference to effectively guide your students for same.

how to download :
Select the below link copy and paste it in to addressbar of your web browser open the page to download the respective script

Linux & Open Source - Standard XII - Solutions for Lab Exercise Chapter 13 & 14
Lesson No. 13 [Problem - 1]
http://rapidshare.com/files/274582939/script1.sh.html
Lesson No. 13 [Problem - 2]

Monday, July 20, 2009

Download Enjay ThinClient Setup for RHEL4

Gujarat Board School - RHEL 4 in syllabus

This is an Easy way to use both Windows and Linux simultaneously without restarting your pcs

Download Enjay ThinClient Setup for RHEL4
http://rapidshare.com/files/253332780/RHEL4.tar.bz2.html

This setup is only for people using enjay thinclient cards thin clients

Script for Creating Easy Samba Share

RHEL4 Gujarat Board Schools Standard XII - std 12

download the archive from :
find sharecrt file
double click on file with mouse
select "run in terminal"

Map drive in windows PC
go to file browser
select map network drives
and give the path as follows : \\data\data

there is option for another drive :

go to file browser
select map network drives
and give the path as follows : \\data\data1

mounting NTFS in RHEL4



RHEL4 in Gujarat Board School Std XII (standard 12)

:::: Loading NTFS drives in RHEL4 ::::
--------------------------------------------------------
1. Copy kernel-module-ntfs-2.6.9-5.ELsmp-2.1.
20-0.rr.4.10.i686.rpm to /root/Desktop
(or any where in this case)

2. Open Terminal Window (right click desktop
- first option)

3. type following command (# is prompt so do
not type #)
# rpm -ivh /root/Desktop/kernel-module-ntfs
-2.6.9-5.ELsmp-2.1.20-0.rr.4.10.i686.rpm

# modprobe ntfs

Note : Now you can mount any NTFS partition connected
to your RHEL4 system
Note : NTFS partition do not have write facility

Write facility can be provided but it is a lengthy process
and not very useful in our case

:::: Mounting NTFS Partitions ::::
--------------------------------------------------------
Open Terminal window
use following command to find NTFS Partition on Hard
Drive
# fdisk -l

Disk /dev/hdb: 160.0 GB, 160041885696 bytes
255 heads, 63 sectors/track, 19457 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

Device Boot Start End Blocks Id System
/dev/hdb1 * 1 3888 31230328+ 7 HPFS/NTFS
/dev/hdb2 3889 19457 125057992+ 5 Extended
/dev/hdb5 14977 14988 96358+ 83 Linux
/dev/hdb6 14989 16204 9767488+ 83 Linux
/dev/hdb7 16205 18028 14651248+ 83 Linux
/dev/hdb8 18029 19244 9767488+ 83 Linux
/dev/hdb9 19245 19457 1710891 82 Linux swap

Note : in above eg. /dev/hdb1 is NTFS Partition
(try and identify your NTFS partitions
accordingly)
Make a directory to mount this NTFS partition

# mkdir /mnt/win_c_drive

# mount /dev/hdb1 /mnt/win_c_drive

# cd /mnt/win_c_drive (use ls to see the file and folder
list)

# open your file browser and browse to /mnt/win_c_drive
to see in directory listing in GUI

:::: Un-mount partition ::::
--------------------------------------------------------
# cd /

# umount /mnt/win_c_drive