Software :: Mounting Multiple ISO Files
Jun 18, 2010
Is there an easy way to mount multiple disc images? I want to have all five Debian DVDs mounted at once, so if I try to install software from them, I don't have to insert the disc and it just automatically loads from the image.
View 1 Replies
ADVERTISEMENT
Apr 27, 2011
Is it possible to present multiple LUNs from 1 SAN with 1 NFS server? Currently, my NFS server is directly connected to my FC SAN. Do I have to install and configure multipathing for this to work OR is this just not possible to do over one connection?
View 6 Replies
View Related
Aug 23, 2010
I am to rename all the files within a directory (which contains multiple subdirectories) recursively without invalid characters.
I tried the coding posted above.
find . -type f -printf '%p
' | while read file; do
oldfile=$(basename "$file")
newfile=$(echo "$oldfile" | sed 's/[^A-Za-z0-9_.]/_/g')
if [ ! "$newfile" == "$oldfile" ]; then
echo mv "$file" "${file%$oldfile}$newfile"
code....
but I get an error on both of them stating "find: bad option -printf find: [-H | -L] path-list predicate-list"
View 9 Replies
View Related
May 16, 2010
I'm trying to build a custom setup that requires a flash drive and a CD to both be mounted to root. Applications, boot data, and other static directories are on the CD, while /home, /opt, and /tmp are on the flash drive. Is there a special option I can enter into fstab to allow this? If not, I intend to modify my kernel to allow this, but I'll need to find the sources that control this function.
View 4 Replies
View Related
Jul 12, 2010
Say I have an image of a file system. I made it with dd by copying it off my USB stick. e.g. "sudo dd if=/dev/sdb1 of=./image.ext2" I can mount said image with the command: "sudo mount -t ext2 -o loop ./image.ext2 /mnt/" Now, say instead of copying a partition with dd, I copy a whole drive. e.g. "sudo dd if=/dev/sdb of=./image.img". sdb had 2 partitions on it. How can I mount those separate partitions without copying that image back onto the USB drive?
View 1 Replies
View Related
Jun 14, 2011
have a large amount of 7z files in multiple folders which I need to extract.The directory structure is like this:
/main-folder/
multiple subfolders/
1 or more 7z files per subfolder
I would like to get the output of this action in one separate folder, all together in 1 folder.How can I do this?
View 7 Replies
View Related
Aug 20, 2011
I often use the rpl command to make changes to multiple html files at once. For example:
rpl -R '<br />' '<br /><br />' mydirectory However, I haven't been able to figure out how to change multiple lines. For example, let's say I want to change all occurrences of :
<br />
<br />
to:
<br />
I've tried
rpl -R '<br />
<br />' '<br />' mydirectory
but that didn't work. how to do this with rpl or some other way?
View 9 Replies
View Related
Jul 29, 2010
I setup samba file sharing to auto mount in fstab. Everything works great except when a computer has more than on user account.
The folders in mnt are owned by root and ownership changes to the first user account no matter what user logs in. So only the first user can edit files in the mounted share.
Anyone got a clue why this is happening? Seems the mount folders should be changing ownership to the user that is logged in.
View 2 Replies
View Related
Aug 25, 2009
How can you create a script to move or copy files from a main directory into multiple directories below the main directory.
View 7 Replies
View Related
Sep 1, 2011
I have the French ISO files for rosetta stone and to install them I need them to be mounted as a CD so the actual program will find them and extract them. I attempted using Furius to shove them in a loop and that didn't seem to work.
View 4 Replies
View Related
Mar 1, 2011
I have a .dd file from testdisk on an external hard drive. how do I mount this image to read it?
View 9 Replies
View Related
Nov 7, 2009
I'm new to linux,so i'm confused with MOUNTING files. give differences and unique functions of the FSTAB, MTAB, /PROC/MTAB files.
View 2 Replies
View Related
Feb 6, 2011
I want to mount my partition that was previously under Windows. I have mounted it through YaST2 to /docs with ext4, made formatting, the folder is shown, but I can not create any file or enter any folder on it (however I can enter folder /docs where only 1 folder "lost and found" exists.
View 2 Replies
View Related
Feb 2, 2011
I don't know anything about Unbuntu I installed it because I had a virus and I didn't have a copy of windows. I have an extra HD with lots of media on it. At first it seemed to show up but then it disappeared. I did the sudo commands and the disk shows up as sdb. I have no idea what I am doing or what to do and all the guides keep talking about adding partitions and programs I have to dl from the net. This is a stand alone computer with no net connection.
View 2 Replies
View Related
Jul 19, 2009
i have an old version on my comp Redhat v 3.1.4-4 i am trying to mount and copy files to the ufd.
View 1 Replies
View Related
Mar 29, 2010
I have a gziped dd image backup of my entire hda drive (osx and ext4 partitions) that I created with the following command:
dd if=/dev/sda |gzip > image032810.gz
Can I mount this image file to pull off individual files from individual partitions?
View 6 Replies
View Related
Mar 8, 2010
I have just reinstalled Centos 5.3 on a new harddisk. I would like to copy some files from another harddisk which is also install with Centos 5.3. I have followed some guide in the internet but failed to mount the old harddisk. I got "unknown filesystem type 'lvm2pv'" error when trying to mount /dev/sdb2.
Details:
View 5 Replies
View Related
Jun 15, 2011
I have a question?! have a linux server which was administered by my good friend who has passed away and I have been asked to take over. the server has debian installed (installed oct 2008 and would have been the latest version) and I am looking to backup the smb shares to a external usb disc. I have formatted and mounted the disc and found a script he wrote to automate the backup run from a cron tab. Looking through the script the mount commands dont look quite right to me particulary as the owner will swap drives every day. everything else appears to be working fine! the command to mount in the script is'
mount /mnt/usb
and unmount;
unmount /mnt/usb
I think it should be' mount /dev/sdc1 /mnt/usb
and to unmount . umount /dev/sdc1 /mnt/usb
am I talking nonsense here or I on the right track?
View 2 Replies
View Related
Oct 9, 2010
syslog, messages and kern.log are incredibly huge files that are taking up a lot of space on my hard drive. Is it safe to remove them and/or to reduce logging so it doesn't take such an enormous amount of hard disk memory? If so, how can I reduce the logging so it doesn't produce logs that are 10s of GB in size?Also, mounting a drive places it into the folder /media. Will it become problematic if the size of the mounted drive exceeds the amount of free space available on my Ubuntu partition?
View 4 Replies
View Related
Jul 26, 2011
I'm trying to mount some CIFS shares (NetApp) to my Ubuntu 11.04 desktop (64-bit).I am mounting it as a domain user with admin rights and full control over the share.ter mounting it as root, all the files are owned by root and I can't modify them from my non-root user.Here is how I am mounting the share:
mount -t cifs -o domain=example,username=example-user,password=mypassword //myfiler.example.com/myshare$/mydir /mnt/myshare/
This share is a qtree under a volume with security type set to NTFS. (Although I have also tried security type = Mixed) We don't configure user-level access to shares on the filer, we create directories and lay down permissions on those from the Windows side. (Although I have tried explicitly adding my domain user to the access list for the share)
View 5 Replies
View Related
Jan 21, 2010
First of all, in whether I have interpreted this correctly: [url]
Where we want all users to be able to restore backups. This involves nfs exporting and mounting the backup directory ON THE SAME MACHINE, no...?
I have been trying to fix this all day, and can't figure out why its not working.
All my /etc/fstab /etc/exports /etc/hosts.allow /etc/hosts.deny must be correct as the file mounts (after booting, but NOT ON booting) with:
All the necessary (I think) services are starting on boot:
On bootup I receive the error:
Code:
I have other filesystems mounted from another server which all mount fine. Its just this one.
View 1 Replies
View Related
Oct 6, 2010
I have opened a file using vi i.e. abc.txt now I have given : new xyz.txt
two files now opened in the vi My problem is i can scroll through abc.txt only. how to scroll the xyz.txt also
View 7 Replies
View Related
Feb 20, 2010
how do i move multiple files at once using the command line?
View 4 Replies
View Related
Mar 4, 2010
I am converting .tif images to .eps and am trying to do a bunch of them at once. I have tried
Code:
convert *.tif *.eps
but this doesn't do it.
View 2 Replies
View Related
Jun 12, 2010
I often have a need for printing multiple files. Therefore I found a Nautilus script that would allow me to do this. However often many of the files a Microsoft Office doc-files. Since I do not really want to convert every single file (as that would defeat the purpose of bundle printing) I tried to figure out how to print these, as the commands "lpr" og "cupsdoprint" cannot process these. I have found a printing command using the CLI part of OpenOffice, but I cannot get it to do multiple selected files.
The command is:
Code:
soffice -p "/path/of/file.doc"
How can I use this in a Nautilus Script so I can print multiple files?
View 1 Replies
View Related
Jul 19, 2010
I would like to have multiple php.ini files for multiple sites.
I've a production site (word wide available) and a test site (available to some selected IP-addresses). I would like to set some different PHP settings for the test site, for example, 'error_reporting' and 'display_errors'.
Is this possible? I'm not looking for some CGI hack, unless it wouldn't work any other way.
View 2 Replies
View Related
Aug 6, 2010
I made some files belong to root, so that my sister couldn't read them while she was staying with me, there were about 40 files altogether but I did them all at once by change the permissions of the folder and clicking "apply Permissions to enclosed files" but now I want to change them back to belonging to my user account so Opened a gksudo nautilus windows and I went on folder properties and set the permissions to [user] and clicked apply to enclosed files, but it only did the folder. I tried selecting all the files and changing them all at once that way but it won't let me, how can I make the files belong to me again, other then one by one? I dont know how to use the CLI that much.
View 4 Replies
View Related
Sep 11, 2010
find a software similiar to [URL]whit gui for ubuntu ? or some kind of nautilus script ?
View 9 Replies
View Related
Apr 17, 2009
I use a mencoder line to convert .avi to .mpg (dvd player compatible), it works well but i can only do one file at the time. It requires giving the input and output directories and the files name. I tried using (*.avi *.mpg in the command) on the directory but it just add up all the .avi and convert them into one huge .mpg. My goal is to have a script that would convert all the .avi files from a directory to the same amount of .mpg and also keep the naming of those files. Here is what i work with on single files:
Code:
mencoder -oac lavc -ovc lavc -of mpeg -mpegopts format=dvd -vf scale=720:480,harddup
-srate 48000 -af lavcresample=48000
-lavcopts
[code]....
View 3 Replies
View Related
Mar 20, 2010
I am fairly new to Linux and was needing some help on a comparing more than 2 files. I am try to come up with something that would compare at least 10+ different files to a master file and give me an output of what is missing.
Example would be: a.txt, b.txt, c.txt, d.txt compare each of them to the master.txt file, than output the missing text for each file into new file.
I came across comm and diff commands, am I looking in the right place or is there a much easier way of doing this?
View 2 Replies
View Related