Fedora :: Verifying Files Written To A DVD?
Dec 26, 2009
I've been having trouble writing to DVDs on one computer, and I am trying to figure out whetgher the problem is hardware or software related, or, perhaps, both. The brasero CD/DVD writer puts the md5 checksums of each of the original files in a hidden file on the DVD. I think it then calculates the sums of the copies and compares, but the last time I did it, it told me it had permission problems with the drive, and that failed. When I put the DVD in, udev finds it and mounts it in /media with me as its owner. Apparently, brasero mounted it some other way, and presumably that caused the problem.
Secondly, after I brought it up again, I went into the /media mount point and did md5sum on the files there. One of them a gzipped tar file, produced and input/output error. Yet if I use cmp to compare that file with the original it finds no difficulty. So what is going on? Finally, I have tried to write shell scripts which use cmp to compare the original files with the copies. The general form is
cd XXXX
find $* >> /tmp/X
for i in `cat /tmp/X`
do
cmp $i YYYY/$i
done
where XXX is the mount point in /media and YYY is the original directory containing the relevant files. This works fine except that if the file names have spaces in them, the shell script treats each word as a new file name. So I need some way to arrange things so that `cat /tmp/X` returns the complete file name. Nothing I've tried works.
View 3 Replies
ADVERTISEMENT
May 9, 2011
I'm trying to create a torrent file via the command line. I used "transmisson-create", but since the .torrent file is binary I can't read it using "less" or "nano". Is there a way of verifying that the torrent I created was correctly done? I know I could probably upload the .torrent file to my public server and then use another torrent client to test, but I simply want to see what's inside the .torrent file to verify that it got all the files I wanted. I cd'd into the directory with the files that I want to torrent and ran the following command.
Code:
$ transmission-create -p -t http://tracker.openbittorrent.com/announce *
View 4 Replies
View Related
May 26, 2011
Is there a way in svn to verify if an already existing file tree that "should"be at a given revision is in fact correct at that revision?I had an earlier revision and obtains patches via svn diff for subsequent revisions, and applied them up to a given revision (or head). Now consider that perhaps some error happened during the application of these patches, or perhaps a file just got corrupted. What I would want to do is just verify if the tree I have now at this revision is the exactly tree I would get at this revision ... without actually pulling down the whole revision.Note, I want to do this for exports, not for checkouts. That may make it simpler since the result of svn diff seems to only be for the actual data files.
View 14 Replies
View Related
Apr 13, 2011
How to find a file which is being written recently in directory of 1000 files?
View 8 Replies
View Related
Aug 30, 2011
Im trying to install ubuntu 11.04 over my current fedora 15 due to lack of compatibility with my itouch 4g.
Heres the steps i take:
Open LiveUSB-creator.
Point to .iso file for 11.04.
Select proper device
Then it gives me an error like so:
There was a problem executing the following command:
A more detailed error log has been written to '/tmp/liveusb-creator.log' ISO MD5 checksum verification failed.
View 4 Replies
View Related
Apr 28, 2010
Trying to use the html editor 'Arachnophilia'... here are the instructions on their website. ".Open a command console (Linux: shell console), move to the Arachnophilia program directory, type "java -jar Arachnophilia.jar" For convenience, this command can be made part of a shell script, and those using X windows can easily make a desktop icon." hoping someone can explain how to run this program.. using a new install of fedora 12 (which has java)...i'm a newbie, trying to go open source on a low end laptop - LOVE Fedora .[URL]..
View 14 Replies
View Related
Apr 27, 2011
My company have Linux and mac machines ,so I have mac format (HFS) hdd and linux format (ext3) hdd, In the linux os , mount a mac hdd ,it just can read and can't be written. The mac hdd 's format is HFS OR HFS+ , how to write this hdd in the linux .
View 1 Replies
View Related
Jun 8, 2010
I recently downloaded a source file from [URL] and wanted to compile it for fedora. I found that the source was written for ubuntu as all the instruction in README file was for ubuntu machine. Can I compile the source for fedora?
View 13 Replies
View Related
Oct 18, 2009
I had Fedora11 (default layout) running on a separate hard drive (winXP on the other drive). After the FC drive failure I replaced the drive and did a fresh install again. This time I tried a custom layout to keep the /home on a separate partition. The installation went without a hitch, but on first boot the system hangs with "Verifying DMI Pool Data......"
XP boots fine though. Looks like grub doesn't get loaded. I can boot with the installation cd and get into recovery mode, everything seems fine on the fedora disk. Fdisk result:
Grub.conf:
View 2 Replies
View Related
Sep 9, 2010
I use the show-leaves yum plugin, and sometimes I use that info to remove some unnecessary packages. But that list can be long, so I write them on a text file.
1) Instead of removing packages one by one is there a way to remove all packages written in that text file?
2) Why isn't the output of the show-leaves plugin compatible with the output of "package-cleanup --leaves"?
View 1 Replies
View Related
Mar 30, 2010
Is there a command that can be run to verify that a users cron job has run successfully?
Platform is Ubuntu 8.04 LTS.
I have scripts in /home/useraccount/bin/
running
crontab -l
While logged in as user results in:
# m h dom mon dow command
@hourly /home/useraccount/bin/script_1
@hourly /home/locateruser/bin/script_2
I realize scripts could send email or write to a log with a timestamp, but wondering if there is just a way to verify it ran from the command line.
I ran
ps -ef|grep cron
... and it shows
root 4358 1 0 Mar12 ? 00:00:00 /usr/sbin/cron
Not sure if this indicates it is running the jobs though....
View 4 Replies
View Related
Nov 20, 2010
I just started dual booting Ubuntu 10.10 on my mini 10v with OS X a couple days ago, so I'm still pretty new to Linux.
But anyhow, I was attempting to change my User ID number so I could access the files in my User folder on my OS X partition. So, I tried entering the following commands:
sudo usermod -u 501 yourusername
sudo chown -R 501 /home/yourusername
Of course, smart me should've realized I should've been logged out and on a different administrative account to do this. But I didn't, and I believe the second command didn't work. So, whatever, I thought I'd try logging out and logging in as root.
So, I logged out, tried logging in as root, and of course, no dice because I didn't know the password. So then I tried logging onto my account and upon logging in, I got two errors. One was about ".ICEauthority" and I didn't keep track of what the other one was.
Great. So I did a quick google for the error, then tried entering these codes:
$ sudo chown user:user home/user/.ICEauthority
$ sudo chmod 664 /home/user/.ICEautority
$ exit
[Code].....
And again, I think the last one didn't work. So, I looked up how to login as root, changed the password and logged in as root successfully. Then, whilst in root, I entered:
/usr/sbin/usermod -u 12345 joeuser
/usr/bin/find / -user 701 -print | xargs -t chown joeuser
/usr/bin/find / -user 701 -exec chown joeuser {} ;
Upon entering those, I logged out and logged back into my account and everything was a complete success. No error messages anywheres AND I could access the files in my Mac user folder.
So, here's my question. How can I make sure I have all the right permissions I need? Or do I already have the all of the permissions I had before changing my user id?
Did those last three lines of code I entered "override" all of the codes I had entered previously? I just want to make sure verify I have all the correct permissions necessary so I don't run into any issues later on.
View 5 Replies
View Related
May 5, 2011
I was a windows XP user and one fine day my windows crashed and blue screen of death appeared. I have downloaded Ubuntu and created an ISO image on my pendrive with the help of the another computer as per the steps mentioned on the linux website. Now when am tryin to boot my corrupt PC with pendrive i cannot move beyond the comment " verifying DMI pool data" nothing happens later.
View 3 Replies
View Related
Apr 30, 2011
opensuse v11.3
linux 2.6.34.8-0.2-desktop x86_64
It took me 3 tries to get is ISO image that matched the md5 checksum on the download site. At 8 - 10 hours each it was a PITA. The first simply aborted 1/3 of the way through (HTTP direct link). The second used wget, got a full file but the checksums didi not match. The magic method was Bitorrent.
All this has left me with an uneasy feeling about the contents of the DVD created from the ISO. Is there a way to test the DVD contents?
View 9 Replies
View Related
Mar 1, 2010
I am reasonably technical but new to Linux. I almost guarantee there will be simple things that I don't understand. I am trying to get a USB wireless adaptor working with aircrack-ng and have managed to find that I should have the mac80211 drivers installed and active to support the rtl8187L and B chips. (I also need to patch them apparently, but first things first).
I am working with Ubuntu 8.04LT (I am fairly sure) and do not seem at the moment to be able to update to a more recent version on the target machine. The kernel is 2.6.24-27. I followed instructions to blacklist the r8187 and ieee80211 modules, which seemed to go quite smoothly.
I now need to get the mac80211 module loaded, but can't find out how. The information at Aircrack-ng and related sites seems to indicate that I expect the drivers to be already in my build of Ubuntu but they do not seem to be loading. The suggestion seems to be that they will load automatically. I have found some stuff in /lib/modules/2.6.22-14 and /lib/modules/2.6.22-27, and also in /usr/src/linux-headers-2.6.24-27 which is probably relevant but I don't know what if anything to do with it. If anyone needs more detailed information, just tell me what you need to know, and how to get it.
View 1 Replies
View Related
Mar 10, 2011
I need with some iptables rules. I've done all I can, Googling all over, to cover as many exploits as possible and the following script is what I've come up with. The current set up works and I've checked with NMAP. I just need some sort of confirmation that this is pretty much what I can do.
Code:
LAN="eth0 eth1"
RANGE=10.1.0.0/17
WAN=eth2
# Delete all existing rules
[code]....
Also, if I wanted a broadcast to be relayed to all subnets within a defined range, how would such a iptables rule look like? I need this in order to find a networked Canon MP640 printer.
View 1 Replies
View Related
Jun 5, 2010
I open an ODS file and edit it and save, fine. But sometimes and for no readily apparent reason it refuses to save the document with the error message:"Error saving the document <filename>: Write error. The file could not be written". I have upgraded my version of OpenOffice but the issue remains. Once it starts with that error the only way to save the file is to actually abandon my change and restart OOffice. Today I lost an hours stuff as the auto save was also failing but not giving me any warning it was failing. I'm not sure if this is an OpenOffice, file system, Fedora or permissions issue though I've not noticed anything similar with other applications. Have set permissions to 777 but still get the error.
View 3 Replies
View Related
Apr 27, 2011
I want to download the dev snapshot of Synfig from SourceForge
[URL]
The link on this page includes some kind of checksum I tried to MD5 and SHA1 the downloaded file from the link, it won't match Downloaded it again, same thing Is there something wrong with this file (damaged upstream)?
View 3 Replies
View Related
May 24, 2010
My used OS:
Linux version 2.6.18.8.xs5.5.0.13.442
(gcc version 4.1.2 20061115 (prerelease) (Debian 4.1.1-21))
After executing
[code]...
View 2 Replies
View Related
May 20, 2011
I was dual-booting Windows 7 and Ubuntu 10.10 till recently. Then I had to reinstall Windows. After re-installation of Windows I did not try to restore Grub and deleted Ubuntu partitions on disk thinking that I'll install newer Natty version. But now when I try to install Ubuntu 11.04 using pen drive it gets stuck in bios showing message "Verifying DMI pool data ....". I also tried to boot GParted, memtest and Windows 7 with the same pen drive. Same thing occurred with GParted and memtest but Windows 7 installation did not stuck and went as usual. So I guess it's not hardware.
View 5 Replies
View Related
Nov 20, 2009
I've been trying to burn Suse 11.2 to a DVD now for a couple of days but I keep running into trouble. When verifying a disk after burning Suse on it it keeps giving me errors. I've tried Nero and ImgBurn, different burners, different ISOs, different burning speeds (downloaded via torrent and http) but it keeps giving me the verification error.
The only thing I haven't tried is a different brand of DVDs but until now I've never had any problems with this brand.
View 9 Replies
View Related
Dec 24, 2010
I installed ubuntu 10.10 on a machine that had windows 7 x64. itts installed on a seperate HD, but now when I boot to the harddrive with windows 7 all i get is "verifying DMI pool data" how do I fix this so I can get back to windows 7 as well?
View 9 Replies
View Related
Jan 31, 2011
I've been having a lot of problems solving my HDD mounting problems and renaming. It finally worked, but I had to delete everything from fstab. As crazy as it sounds, it worked, when I turn my computer on, they automatically mount. They are all working fine. I will attach screen shots too. As you can see my fstab is blank, I was just wondering, is this a problem? Or is it totally normal?
View 4 Replies
View Related
Apr 7, 2011
How do I run a program I've written in C++? I'm new found some tutorials to study from but didn't find anything on how to run it. I'm using text editor too write it and saved it as .cpp but everytime i open it it just shows what i wrote it doesn't run it.
View 9 Replies
View Related
Nov 1, 2010
I was attempting to get crontab to kick off a daily job, but the job wont start. I opened /var/log/messages and noticed all the logs were from 6 months ago. I cleared the log and then did a tail -f so I could watch it for activity. I then hit my box with anunsuccessful log in attempt. Nothing happened to the log. The uptime of my box is 22 days and the logs that were in it before I cleared it were from months ago.Is there a daemon I can check or another file I can mod to get logs writing again?
View 3 Replies
View Related
Apr 6, 2011
I wanted to develop a cross platform GUI application.So I thought I would research on Firefox.I havent been able to find out which GUI framework is FireFox using ?Is it GTK, QT, or what ?
View 14 Replies
View Related
Aug 22, 2010
I have a huge disk image backed up using dd.
I need to restore the disk image but dd is very silent.
How can I monitor its progress?
View 3 Replies
View Related
Jun 7, 2011
I've a problem with the welcome message. As you can see the welcome message with landscape-sysinfo is written twice. The second welcome message is the older one which is something like frozen:
Code:
login as: oliver
oliver@xx.de's password:
Linux xx 2.6.32-32-server #62-Ubuntu SMP Wed Apr 20 22:07:43 UTC 2011 x86_64 GNU/Linux
Ubuntu 10.04.2 LTS
Welcome to the Ubuntu Server!
Documentation: [URL]
System information as of Wed Jun 8 01:40:26 CEST 2011
35 packages can be updated.
0 updates are security updates.
Last login: Wed Jun 8 01:30:28 2011 from xx.de
oliver@studi:~$
View 1 Replies
View Related
Apr 19, 2010
I need to filter the log from a massive wget. I want to remove the progress lines and only leave the last one. Now each progress line starts with a newline '
View 2 Replies
View Related
Apr 4, 2011
I don know how this happened, but my system only recognizes an disk when the disk is blank. If thereÅ› anything on it it won mount it. Why is this happening?
View 6 Replies
View Related