Fedora :: How To Make Backup File In F12
May 10, 2010
I would like to make a backup file from my fedora 12, in case if I have any problem with it, I could restore all my programs and settings from OS, I used do this with northon ghost in windows, but now in linux I don't know for sure. Yesterday I made a backup, in the end it was 34gb of his size, I wanna backup only what is used, how I do this?
View 7 Replies
ADVERTISEMENT
Dec 14, 2009
I have an issue that my BACKUP drive is listed twice. (internal FAT) I am running F12 32b. I have it listed in FSTAB so it will automount & set the permissions. I did this in the earlier versions I upgraded from. I would like to either get rid of the other entry or, if easier, make it auto & set permissions but I don't know where it is.
View 11 Replies
View Related
Nov 10, 2010
This script simply deletes files older than a certain age (in this case 7 days) from a certain location; I use it to purge old backups nightly, and it works as expected:
# delete backups older than 7 days
find /mnt/backup/* -mtime +7 -exec rm -Rf {} ;
The problem is, every morning I get an email with an error message something like this:
find: `/mnt/backup/subfolder': No such file or directory
View 2 Replies
View Related
Sep 13, 2010
Can some one give me a sample of a crontab for backing a directory please, System is Ubuntu 9.04Quote:
#!/bin/bash
# this file is an automated backup script, backup.sh.
# this backs up my domain site.
[code]....
View 7 Replies
View Related
Jun 8, 2010
I have this little problem. I wanna backup a big file that is constantly growing. Is there any way to make one backup and then have some way to take incremental backup of it?
View 2 Replies
View Related
Jun 26, 2010
Attempting to create a backup script to copy files from one file system to a remote file system.
When I try this I get:
Quote:
# tar -cf - /mnt/raid_md1 | gzip -c | ssh -i ~/.ssh/key -l user@192.168.1.1 "cat > /mnt/backup/fileserver.md1.tar.gz"
tar: Removing leading `/' from member names
Pseudo-terminal will not be allocated because stdin is not a terminal.
ssh: Could not resolve hostname cat > /mnt/backup/fileserver.md1.tar.gz: Name or service not known
[Code].....
I know that the remote file system dir is RW and the access is working fine. I am stumped...
View 3 Replies
View Related
Nov 17, 2010
When I try to compile some Java code on Ubuntu 10.10 (kernel 2.6+) using make and a Makefile.
I get an error indicating that the make utility cannot execute the java compile command (javac).
The error reads: /bin/bash: line 6: .: /usr/local/jdk1.5.0_18/bin/javac: cannot execute binary file
I am executing make as root. I have enabled permissions on all directories in the path /usr/local/jdk1.5.0_18/bin/javac and on javac itself.
I get this error whether using a jdk installed via ubuntu apt-get, or whether I install the jdk myself. And I get it using either Java 1.5 or 1.6
My machine has an 80386 processor. I notice the make utility is built for i686-pc-linux-gnu
However, I can manually compile using javac.
I can compile calling javac from within a bash script.
I can compile using the java compiler gcj from the command line: gcj --main=HelloWorld HelloWorld.java -o HelloWorld.exe
But I cannot compile java code from the makefile. Any reasons why I might be getting this error?
View 4 Replies
View Related
Aug 2, 2011
i am trying to make a script in which i can drag a file (with spaces in file name ) and it will scp the file to another computermy code is
Code:
echo "--------------------------------------------"
echo "drag file now"
[code]....
View 7 Replies
View Related
Apr 6, 2010
I want to make a file called file roller for Ubuntu 9.10. The folder has a file called install.sh and some others that are make.
I figure first I need to make a file and then run install.sh to install. But I don't know how to do this.
View 2 Replies
View Related
Apr 9, 2011
I have installed an application manager(monitoring application) on my linux server. Now, i need to have backup schedule for my application. The application itself has executive file to backup database.But when i put this file in my crontab to schedule the backup program it wont run!50 09 * * * root /opt/ME/AppManager9/bin/BackupMysqlDB.sh
View 1 Replies
View Related
Aug 10, 2011
I want to make a backup from my Email and my Favorites from Mozilla.
But which folders I have to make a backup from.
View 3 Replies
View Related
May 30, 2010
So I was doing the update to 10.04 when a freak thunderstorm knocked out the power. I can no longer load onto ubuntu from the HDD. I have been told to either do an emergency back up using the 10.04 live disk. I am not sure what to do when it comes to that. I have also heard I can just repair the boot file on the HDD. I don't know how to do that either. I wouldn't mind I fresh install but I do not want to lose any of my data.
View 9 Replies
View Related
Jan 1, 2011
I'd like to have a list of changes from default install or installed packages, and modified configs in order not to to waste space on binaries. This way, when restoring the script can just check if the packages are there, do configs match, and adjust accordingly.
View 3 Replies
View Related
Jan 12, 2011
How do you make a backup disc of your files, pictures and music in a quick, efficient way?
View 1 Replies
View Related
Mar 3, 2010
What is best to make a image or a backup.
Whit what for program.
By a image form what partion do i have to make a image.
By backup what directory to backup.
so that when by linux is corrupt i can do a reinstall.
View 7 Replies
View Related
Jul 9, 2011
I am trying to create a script which will backup all my data to a remote ftp serverI need to tar all folders inside /data separately /data/as - /data/as/001 - /data/as/002 - /data/as/003 /data/as/004 - etc etcfor dir in */; do dir=`echo $dir | tr -d '/'`; echo $dir; tar czf $dir.tar.gz $dir; done
View 1 Replies
View Related
Jan 13, 2011
Newly installed Lucid and several programs to get it just the way I like it. I went to make a backup of the entire system with remastersys for the second time (first time was ok) but everytime it says iso file too big, which it is at 16gb plus. I have been through and double checked that my personnel files, pics, music, movies are all removed and my virtual machine. When checking with "Disk usage analyzer" it says I have 158.8GB free but when I check the home file system itself it says I have 150.1GB free. Note the missing 8.1GB. I believe this is the root of my inability to make a backup.
View 2 Replies
View Related
Mar 10, 2011
I'm trying to make a backup script with rsync that backups "/opt/example" to /mnt/sharedfolder/backup
And with each output the name would show the date of the backup & time. Then there would be 5 backups each time before the oldest would get replaced. I found something that I think does what I need but every time I run it I get this message.
Code:
rsync error: syntax or usage error (code 1) at main.c(1511) [Receiver=3.0.7]
./backupscript.sh: 65: /mnt/hgfs/bminecraft/: Permission denied
BTW /mnt/hgfs/bminecraft/ is chmoded to 755 and yes that is the correct path.
[Code]....
View 2 Replies
View Related
Aug 23, 2009
I'm trying to add a scheduled full backup to the crontab file, but the full backup never completes; it always stops somewhre in the file system. I guess is b/c the os is updating those files or has them open. I've tried to use the --exclude options but still it always hangs somewhere else.... this is what I'm usingtar -zcvpf /mnt/storage/backup/fullbackup1.tar.gz --exclude=/mnt --exclude=/sys --exclude=/proc --exclude=/lost+found --exclude=/net --exclude=/srv / > /mnt/storage/backup/fullbackup.log
View 1 Replies
View Related
Oct 1, 2010
I have decided to remove Windows from my disk, but I want to keep my current install of Ubuntu.
One possibility that sprang to mind was to make an image out of my Ubuntu install.
Since I dual boot, the disk is numbered "SDA2" (extended) "SDA5" (root) and then there is Swap. (Windows is the first part of the disk)
One question sprang to mind:
If I make an image out of it, what happens to the numbers? Will there be any conflicts? Not to mention the question of which program would be best (and easiest to use, preferably with a GUI, since I want to save time, not learn code).
And if I would go for a binary dump to an external disk (to put it back when the destination disk is empty), would the same problems arise? Or would that bring even more problems, like the issue of the swap partition, which I would have to receate, since it wouldn't fit on the "dump disk"?
This is all because the whole thing sounds very similar to placing the ubuntu partition to the front of the disk, which, as I have been told, is not a good idea.
View 9 Replies
View Related
Jan 16, 2011
My ubuntu login window seems to be chrased and seems no way to restore it. I was planning to move ahead with reinstalling it but could any1 tell me how can i copy data to external hard disk. I am in Mannual restore section with promt staying at root@ubuntu :/#
View 9 Replies
View Related
Apr 20, 2011
As I checked some online backup solutions I have found information that all of this which I checked have only clients for Win or Mac. But I'm looking for solution with Linux client.As I have read some info on one of the Googled page Linux probably is ready for being an online backup solution as is.So my idea is to create automatic (in the background) backup of my files (photos and docs) with my outside hosting server. I have unlimited shared hosting server with ftp access. Is there any option to built such solution to make backup synchronisation between my Linux comp and shared hosting? What should I get to know to start with such option?
View 1 Replies
View Related
Aug 1, 2011
I have been using backintime so far. Now I am changing to 64bit and have installed backintime. I received first some kind of warning that the snapshots were converted to some new format. But still I can not do any snapshots with it, I am simply told backintime could not make any backups.
View 3 Replies
View Related
Dec 5, 2010
I would like to make a backup of my /home directory onto a NAS device, and have whatever software is used for the purpose update (new and changed files) every night, or perhaps everytime there is a period of inactivity. Any suggestions for a GUI package that will do this?
I do not want a complete backup each time, just the new or changed files. Also prefer software that backs up to a mirror of the original (i.e., uncompressed folders and files)
View 1 Replies
View Related
Aug 6, 2011
I need to make a scheduled backup of repository of subversion in ubuntu. E.g., backup the repository at 13.00 pm every Monday. May I need to write some hook scripts to do that? And I also have to recover the backup of repository. If possible, I want to backup the trunk of repository
my repository is project1
/project1
/trunk
/tags
/branches
View 6 Replies
View Related
Sep 20, 2015
I want to back up an entire Linux system on a 3Tb external Western DIgital USB3 drive.
I do not want to reformat it from what it is, apparemtly NTFS.
Is there a utility that can act like a file manager like mc, that will permit me to create an ever expanding (to 320Gb) TAR file that will retain all the original file permissions. I have had nothing but disappointment with Linux backup utils with a FAT32 external drive, and I am concerned if I just try an tar the entire drive at once, with around 3 million files, I might run out of memory.
View 5 Replies
View Related
Jun 21, 2010
is it recommended to download an iso file of fedora 13, will the file be destroyed?because i did it twice and it seems not working.
View 6 Replies
View Related
Jun 7, 2010
I have a x86_64 i5 processor running Fedora 13.When I run the make file,I get the following error.Can someone help me out please?
# make
making all in ./lib...
make[1]: Entering directory `/home/Anil/Downloads/glut-3.7/lib'
[code]....
View 4 Replies
View Related
Jun 23, 2011
If I have a file in which data is written which leads to the increase of this file size
Is it possible to make a constraint such that this file size mustn't exceed certain size
let say 5 MB for instance
View 6 Replies
View Related
Feb 23, 2010
I am having fedora 10 running on 64 bit machine. I want to upgrade to fedora 12 using preupgrade.
Now as per my knowledge it downloads all rpms from Internet, i not having that much huge bandwidth me, so that option is not feasible for me.
I am having fedora 12 iso file: Fedora-12-x86_64-DVD.iso
How can i configure preupgrade to use iso file rather then downloading all rpms and download only what is necessary.
View 4 Replies
View Related