Fedora :: Putting Kickstart File Onto USB Flash Drive
Dec 1, 2009
Here is a way to prepare a USB flash drive to save your kickstart file to it, and then read the kickstart file from the USB drive during a new Fedora installation.A USB flash drive is recognised by the Linux kernel as just another hard drive.This is how I set up my USB flash drive to use it to store my kickstart file on.You will need a working Linux system to set up the USB drive.
View 2 Replies
ADVERTISEMENT
Oct 30, 2009
I'd like to install centos from a USB stick on to a hard drive and also include a custom kickstart on the USB stick to run post-build scripts or install additional packages, which the additional packages would also be on the USB stick..Are there any howto's already written?
View 2 Replies
View Related
Mar 24, 2009
I'm looking for a way to make a bootable floppy that has drdflash.img, my flash utility and my bios file on it for a bios recovery disk. This is on a board that has a failed bios, so everything is pretty much dead (except for the humble floppy drive). I don't have a screen to work with so this floppy needs to be able to run the utility and automatically flash the chip for me. I've heard this is possible, but am unable to find clear instructions on how to do any of this. I know the basics of it is to copy the bios file and flash utility to a floppy along with a bootdisk that will run these things (sometimes the .bat file needs to be modified in order to do this automatically). So I've downloaded drdflash but it came as a .img and I don't think it can be 'just' copied to disk. I came across the 'dd' command but have also heard its nicknamed 'data destroyer' or words to that effect.
View 4 Replies
View Related
Jan 4, 2009
I have recently been given the task of setting up some thirty odd netbooks with F10 and i was wondering if there is a way to generate a kickstart file from the first netbook (my one lol ) that i have setup to our needs so as to use it to create the same install on the rest of the netbooks. i had thought that i could use the anaconda-ks.cfg file in root's home dir but it is not at all representative of the custom package list i chose during the install.
View 8 Replies
View Related
Apr 8, 2011
how can i configure a kickstart file in fedora 14?
View 2 Replies
View Related
Feb 24, 2011
I was reading this tutorial & it shows swap at the beginning of drive. [URL]
Although I've already installed slackware & put the swap at the back of os, I would still like to know the benefits and purpose of putting at the beginning.
View 14 Replies
View Related
Jun 29, 2015
I am talking about this :-
Code: Select all[$] sudo cp debian-8.1.0-amd64-netinst.iso /dev/sdb
This is from [URL] ....
I could do two things :-
a. Do a pv and see if that works the same ?
b. Do an alias for pv which is cp
PV seems wrong when trying to copy an .iso image for booting.
View 3 Replies
View Related
Mar 30, 2011
I have Debian 5 XFCE currently installed on my old desktop. I cant open my flash drive, it doesnt pop up on the desktop, nor is it in the file manager. I read that you can add it to the fstab list but I dont know how to do it.
My flash drive shows up as sda1 in lsusb.
get my flash drives working, thats how I install packages.
View 11 Replies
View Related
Jun 2, 2011
how can I either copy a file (say, ~/file.txt) directly to the flash drive? I know that I can use the command
Code:
sudo cp ~/file.txt ???
to copy it, but what goes in the question marks?
View 1 Replies
View Related
Jul 13, 2011
I am pretty much a noob when it comes to Linux. But I desperately need to do exactly what the title of this thread says.I have this ISO file which is a bootable CD image. But instead of booting off of a CD, I want to boot from a USB flash drive. I understand that I can't simply just burn it with ImgBurn or whatever, and then just drag and drop the files and folder to a USB flash drive. Because hidden files, bootloader, etc. would not be visible and not copied. I know I'm in for some special software in order to copy every single byte from that ISO image to my USB flash drive.
I did try extracting the ISO with PeaZip (7-zip based) under Windows Vista, but that didn't work out very well. It resulted in a few files and folders, totaling in at about 2 KB, while the source ISO file is actually some 50 MB. WinRAR, on the other hand, would simply just create an empty folder where to put the files (no files created/extracted), flash before my eyes and call it a day ("complete").I have learned from other posters on other forums that there is this Unilx program/command called DD. How can I use DD to accomplish this task?
View 2 Replies
View Related
Jul 3, 2010
I'm trying to move a tar file from my ext3 linux box onto a FAT32 usb flash drive but keep getting
mv: failed to preserve ownership for `/dir/blah.tar.gz': Operation not permitted
View 3 Replies
View Related
Aug 11, 2010
I have a Tomato router and it has the capability to have its logs go to a external server. syslog is the obvious choice for this. So I enabled remote logging on my linux server's syslogd (syslogd -r) and I can see all of the logs in /var/log/syslog. What I want to do is take everything that comes from the IP of my router (10.0.0.1) and divert it to its own file like /var/log/tomato to avoid polluting my syslog with external logs.
I can't find any examples of someone doing this. My only solution is to get a script together that strips out any line in /var/log/syslog with 10.0.0.1 in it and puts the line into /var/log/tomato and have the script run as a cron job, but that seems unnecessarily messy.
Unless someone knows that there is a solution, I'm 95% sure that syslog doesn't support this after reading more in-depth of the man page. So I need to migrate to syslog-ng or make a crazy script that runs with cron.
View 3 Replies
View Related
May 28, 2011
OK I have a simple script that does:
Code:
# Create temporary file:
pwFile="~/Tmp/temp.cnf"
echo "$password" > "$pwFile"
But I get an error message:
Code:
~/Tmp/temp.cnf: No such file or directory
View 3 Replies
View Related
Sep 18, 2010
Years ago on AIX I used to create a file of key strokes, including function keys (mainly F3 and F12) into a file, and used that file as input to an INFORMIX program, to automated tasks, something like this:
fglgo myprogram.fgo <keystrokefile.txt
Now, I'm using Aubit language on GNU/Linux, and I'd like to do the same kind of thing, but I can't recall how I worked out the chars for the function keys, I'm using a different emulation (xterm), and I can't work out what characters to put in the key stroke file. My $TERM variable contains "xterm". If I type "infocmp", I get this:
Code:
# Reconstructed via infocmp from file: /usr/share/terminfo/x/xterm
xterm|xterm terminal emulator (X Window System),
am, bce, km, mc5i, mir, msgr, npc, xenl,
colors#8, cols#80, it#8, lines#24, pairs#64,
acsc=``aaffggiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~,
[Code]....
1. Is the above infocmp output the place I should get the information I need?
2. What chars do I need to put into my file to simulate me pressing F3 and F12?
3. Is there a way for me to put such chars in a file by just pressing those function keys (I tried a here document, but that doesn't work (it's as if the function keys are not even pressed)).
View 5 Replies
View Related
Oct 23, 2010
I have a problem with my script. The problem is the system keeps rebooting after I put the directory file in .bashrc. The intentional for putting the file in .bashrc is to run the script automatically after login as root, I don know why is this happen. It was working fine for the first time without putting the file in bashrc. I could break the loop after hitting the "ESC" key. would it be the script problems?
Here is my script
count=20
while [ $count -gt 0 ];do
sleep 1
echo Press ESC to break the operation
((count=count-1))
[Code]...
View 11 Replies
View Related
Apr 11, 2010
I have an older Pentium 3 laptop, a toshiba portege 7140CT. It's one of those laptops designed to be light and easy on battery, so that means no CD drive and no floppy. You have to have the docking station to use optical media.... and I don't have it. I was given this machine for free some years back. I have a USB external DVD-RW drive, and what I want to do is configure GRUB to kickstart a CD/DVD boot from it if possible. obviously, being an old P3 laptop the BIOS has no concept of USB boot. is there a way to pull this off?
View 1 Replies
View Related
Jun 22, 2010
can I change the ECC code for a block of a file stored on a flash drive by any means ? of a file stored on a HDD (though I don't think there would be a difference between the two)Maybe , through some hardware interrupts or anything like that?Also if possible I need the solution to be in C/C++.
View 4 Replies
View Related
Aug 22, 2010
I always have a problem in simple user mode when I insert a USB key. Can't mount, can't open with file manager. I'm obliged to open a simultaneous root session, to do what I want to manage the usb key.
In my user manager, I don't know wich group I have to add to this simple user (it's me) so I am allowed to manage the usb key.
View 6 Replies
View Related
Jan 1, 2010
Running Red Hat (not sure of the build atm) and I need to be able to put all of the IP blocking in a separate file. It will eventually be uploaded to a large number of hosting accounts, and modified from time to time...so it isn't feasible to modify that many httpd.conf files each time we need to add an IP to be blocked. In httpd.conf I can add the "Deny from" line to the following directive and blocks it just fine:
Code:
<Directory "/var/www/html">
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
[code]....
There is an include to pick up all *conf files in ../conf.d, and everything else in there is working just fine. I created a file called robots.conf; it currently has a set of mod_rewrite rules which work. So I added this to that file:
Code:
<Directory "/var/www/html">
Order allow,deny
Allow from all
Deny from 123.456.789.098
</Directory>
It is not blocking access from the IP with it in there.I've done all of the usual things; restarted Apache, cleared browser cache etc. I can also block it using that same directive in a local .htaccess.
View 2 Replies
View Related
Mar 18, 2010
I have been using a boot disk with a kickstart file that calls rpm files that are on RHEL4.8. The rpm files tk-devel,tcl-devel,nss-devel and nspr-devel respond back during the install of RHEL5.e with a pop-up saying they do not exist,but when I look on the RHEL5.4 DVD they do exist in the Workstation directory.
View 1 Replies
View Related
Mar 29, 2010
I made a persistent install of Ubuntu on a flash drive. I made changes to that installation. The software (Unetboontin) sets this all up. I think it partitions it for you. How do I image that flash drive to another flash drive?
View 9 Replies
View Related
Aug 3, 2010
I tried to set up an alias for update, upgrade and clean by putting this line into my .bach.rc file
Code:
#alias ud= 'aptitude update && sudo aptitude upgrade && sudo aptitude dist-upgrade && sudo aptitude autoclean' but when I type ud I get this error message, by the way I tried the bash.rc entry both commented and uncommented with the same result.
[Code]..
View 4 Replies
View Related
Feb 6, 2011
I would like to back up my flash drive in case it gets lost or damaged.the flash drive is bootable with ext2 and a fat partition.the drive is on /dev/sdb1.I think the dd command would back everything up and when restored to a different flash drive everything would boot fine and be as before.I was wondering wow should I use this command to backup and restore or if there is a better option.
View 3 Replies
View Related
Apr 20, 2011
How do I format a Flash Drive in Fedora 14 KDE?
View 3 Replies
View Related
Nov 30, 2010
I downloaded the iso file from fedora's official site and copied the iso to my pendrive... to be able to install Fedora through pen drive i downloaded Universal-USB-Installer-1.8.1.5 and used it locate the iso file in my pen drive... after Universal-USB-Installer-1.8.1.5 did its job, i booted my pc and proceeded to the installation.. there was a 'install on hard disk option' and chose it... it asked me for a new password, my location etc. but when i chose the install option it prompted me an error saying that i dun have enough space to install fedora... how do i locate my drive during installation , so that i cud install it on my desired drive... it shows me two options, one is the pendrive while the other is "AMD something.... "(dun remember the exact name") whenever i select on the AMd.
View 4 Replies
View Related
Sep 9, 2011
Im taking the class now in college once a week. My professor said that we need to install any Linux operating systems so I chose Fedora, but he said we need at least 16GB free of space to install it in our computer, sadly i only have 1GB space left remaining. I told him about it and he told me about installing Fedora in my flash drive that has space of 16GB. I really am interested in this course and want to understand all of this stuff so can anyone tell me the process to install Fedora into flash drive so I can boot it anywhere else other than home? Also since he said I need 16GB to install it don't I got to buy 32GB flash drive at least?
View 2 Replies
View Related
Mar 29, 2011
Here is the issue. I am reading in a outside text file and putting in the string on that line into a char array that is already allocated.
Code:
int main(int argc, char *argv[])
{
[code]....
View 1 Replies
View Related
May 5, 2009
I'm interested in trying out Fedora but would use it on my current Netbook (an ASUS eeePC 1000HE). I currently have Mandriva on it though which I don't want to stop using.Can I install it on a Flash Drive? If so, would it be in a sense a LiveDVD type of installation or could I actually do an install on the Flash Drive to use it as a Hard Drive? If so, what would the minimum flash drive size be?
Also, if I use the Flash Drive as a hard drive would it still have to use the internal hard drive or can all 3 partitions (swap, root, and home), be on the flash drive? Would it be possible to run it on more than one machine since I also have an Acer Aspire One?
View 1 Replies
View Related
Oct 17, 2009
After searching the boards, I dug through the udev man pages and rule files looking for a way to modify the default automount options for USB flash drives. Apparently, the options are somewhere else. Is there a simple way to add noatime to the default mount options?
Currently, the flash drive is automounted as follows:
I'm using Fedora 12, beta RC 2 in case that makes a difference.
View 3 Replies
View Related
Jan 10, 2011
I downloaded the 32 bit Fedora 14 and burned the image to DVD. I didn't want to try to install it on the HDD because the last time I tried to install a distro that used Grub and not Grub2, the only OS I could get into from the boot screen was that OS that I installed with Grub.
I went ahead with the install in hopes that it would see my 4G flash drive, sdc was present so that is where I installed it. I mounted / in sdc1 and the bootloader in sdc. Everything seemed to install, install finished and said I could reboot. On reboot it tried to boot from the USB but just sat there, it never did boot.
[Code]...
View 10 Replies
View Related