Posts

Showing posts from February, 2018

Network File System

Image
Network File System We designed a NFS server which helps us to transfer files and directories between a different systems in the same network.You can also designed your own NFS server by the help of our team Programmerix. We share some method with you so that you can make our own nfs server with the help of Redhat 7.3 operating system(Linux). 1)NFS:- Network File System is a server-client protocol used for sharing the files bwteeen computers on a common network. We can directly access to any files on the remote file system. NFS protocol can't be run on Windows operating system because Window is not NFS compatible. Rather than NFS we use SAMBA protocol on windows to transfer the files. 2)Steps:-  ⦁ On Server(redhat 7.3):- 1) install the software **NFS_UTILS** -------yum install -y nfs-utils 2)Configure nfs server ------- create a directory like data(or any name) anywhere ------- now open the file /etc/exports vim /etc/exports -------- ...

Disable USB storage device from Linux system

Disable USB storage device from Linux system  Our team has decided to share the knowledge of Linux system between the groups of people...There are two methods to disable the USB device from the linux system .We use redhat 7.3 linux operating system for our channel.If you like the content please subscribe our channel. 1)Method-1:- ** create a configuration file in directory /etc/modprobe.d ** file name should be usb-storage.conf ** write the following commands in that file using any editor ** install usb-storage /bin/true ** restart the system 2)Method-2:- ** unmount the storage device ** umount /dev/sdb1 ** if you want to use the pendrive in future mount it to any location  ** mount /dev/sdb1  /a Linux Worms   gmail