Txt

Byte sized tech know-how.

  • Home
  • About

Tag Archives: mount

13 May

A Shell Scirpt to Mount ISO files

A Shell Scirpt to Mount ISO files – call it using the command moustiso.sh ImageFile.iso. You need a folder called /mnt/Image for this to work


#!/bin/sh
sudo mount -o loop "$*" /mnt/Image/
admin Posted in Code, Linux image, iso, Linux, mount, scirpt, shell 3 Comments
15 May

Mount Windows Network Share with Samba

Use this command to mount a share on a windows system. It uses Samba.


mount -t smbfs -o username=user,password=pass //WinClient/share /mnt/share
admin Posted in Command Line, Linux command, Linux, mount, network, samba, share, windows Leave a comment
11 Feb

See Mounted File Systems

Shows all mounted file systems in Linux


cat /proc/mounts
admin Posted in Command Line, Linux command, file, Linux, mount, partition, proc, system Leave a comment
28 Jan

Mount Windows Partion

Mount a Windows FAT partition. If it is an NTFS partion, use ‘ntfs’ instead of ‘fat’. Make sure that the kernel support ntfs if you want to do that.


mount -t vfat /dev/hda5 /mnt/d
admin Posted in Command Line, Linux command, fat, Linux, mount, ntfs, partition, windows Leave a comment
26 Jan

Command to mount a Samba Share in Linux

Mount a windows network share in Linux using Samba


mount -t smbfs -o username=user,password=pass //WinClient/share /mnt/share
admin Posted in Command Line, Linux command, Linux, mount, network, samba, share, smbfs Leave a comment
19 Jan

Force an Unmount

Force umount when the device is busy


fuser -km /mnt/hda2
admin Posted in Command Line, Linux busy, command, device, force, fuser, Linux, mount, umount Leave a comment
29 Apr

Mount ISO Images

Mounting ISO Images in Linux


mount -t iso9660 -o loop <Image_File> <Mount_Point>

How to Mount ISO/MDF Images in Linux

admin Posted in Command Line, Linux command, image, iso, Linux, mount Leave a comment

Post navigation

Categories

  • Code
  • Command Line
  • Configuration
  • CSS
  • HTML
  • internet
  • JavaScript
  • Linux
  • Mobile
  • Perl
  • PHP
  • Python
  • Ruby
  • Uncategorized

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org
Fruitful theme by fruitfulcode Powered by: WordPress
↑