Debian Installation :: Change Ramdisk Files To Alter Repository?
Mar 14, 2011
Once I've booted my Etch install disc, are there some parameters in configuration files I can edit in the ramdisk filesystem that will allow me to install Squeeze instead? Or, even, paramters I can edit to point at the archive.debian.org repository to install Etch?
Why:
I've got a Sun Ultra10 with IDE drives (hard disk and cd drive) on which I previously had Etch installed. I recently tried to upgrade it to Squeeze, botched the upgrade, and formatted the drive. I'm now trying to install Squeeze from scratch.
When I use the Squeeze disc (debian-6.0.0-sparc-xfce+lxde-CD-1.iso), it cannot detect my IDE drives. I also have the disc I originally used to install Etch, way back when. It will boot and detect the drives, but cannot install because Etch is no longer in the repositories.
View 2 Replies
ADVERTISEMENT
Jun 24, 2011
I've just installed Debian 6.0.1a on a HP Proliant ML115, the install seemed to go ok. As it began to start up it 'Grub Bootloader' loaded then on the screen after the bootup froze at 'Loading initial ramdisk'
Unfortunately im a complete novice to debian
View 10 Replies
View Related
Oct 2, 2014
So I managed to install Debian Jessie on a MSI G70 2PE Apache Pro that came with Windows 8.
First I partitioned some space on the laptop. Then I put on the net install cd for Debian and installed it on UEFI mode. It installed correctly.
Now I'm on Grub and when Debian tries to boot it gets stuck on "Loading initial ramdisk". The cursor under it doesn't even blink. The only way to get out of there is by Ctrl-Alt-Delete. Secure Boot is turned off. Fast boot is also off. If I try to boot on recovery mode gets stuck all the same.
The options on my grub are
Debian GNU/Linux
Advanced options for Debian GNU/Linux
Windows Boot Manager (UEFI on /dev/sda2)
System Setup.
If I choose the Windows option, Windows boots, no problem.
If I choose the edit option for the Debian entry this is what it shows
Code: Select allload_video
insmod gzio
insmod part_gpt
insmod ext2
set root='hd0,gpt6'
if [ x$feature_platform_search_hint = xy ]; then
[Code] ....
What is happening and what should I try to make this work? Could it be a graphics card issue since this computer has a Nvidia Gpu?
View 1 Replies
View Related
Aug 21, 2010
If I understand everything right I can use simple cd to create an install of my system then config everything and create an archive of /etc,/var,/usr and that give me a backup of my changed files. but what I am not able to do is create a script to replace the files with the archived version of the config files automatically. I need it to be ran as a post intall script or to configure the conf files as part of the install. what I configure on every reinstall. apache,proftpd,mysql,php,and wordpress. Since I am still learning I reinstall a lot and standard backups have not been working for me. But I can put the whole install including backup on one cd. Is there a way replace only the change files from the archive. or getting a list of just the modafied files on my system.
View 1 Replies
View Related
Apr 24, 2011
I'm building my own ubuntu variant for low resource systems at the moment. It's based from the ubuntu 10.10 minimal install (12mb iso). It uses openbox as the window manager and SLiM as the login/display manager.
What I would like two know is how to have a few config files that are on the live cd to be altered for the installed system. Specifically, SLiM autologin, but I'll probably find other things to change aswell. Basically a sort of "first boot script".
View 4 Replies
View Related
Jan 11, 2011
I have a question about /etc/services file. If I open ports in firewall, do I need to alter /etc/services file in order for certain apps to work?
kpasswd 464/tcp # kpasswd
kpasswd 464/udp # kpasswd
# Theodore Ts'o <tytso&MIT.EDU>
# 465 is illegal used by eMail Server
smtps 465/tcp # eMail Server
#urd 465/tcp # URL Rendesvous Directory for SSM
igmpv3lite 465/udp # IGMP over UDP for SSM
# Toerless Eckert <eckert&cisco.com>
digital-vrc 466/tcp # digital-vrc
digital-vrc 466/udp # digital-vrc
Above example shows if 465 tcp isn't altered, Postfix MTA fails to listen on 465 tcp port. What if there's a bigger span 3000:7000 TCP/UDP, is there a need to alter each line by hand?
View 2 Replies
View Related
Apr 7, 2010
I am making the transition to either Ubuntu or Kubuntu in the next couple days. I have been running the Win7 evaluation version which is pretty much just Win7 Ultimate.Two are internal, four are external. All of them are NTFS. So are my pen drives (512MB and 8GB). Will these Linus distros be able to access these drives? If so, to what degree? Everything I have read online so far seems to give Linux a mixed track record when it comes to working around NTFS security, etc.
View 2 Replies
View Related
Mar 7, 2011
I know that Rhel without purchasing we cant do yum update,I heard that Rhel and centos are similar we can change the repository of Rhel to take from yum repo of centos. can you please list out the steps to carry it out.
View 3 Replies
View Related
Mar 22, 2011
Quote:
[root@localhost srvmdk]# yum install git
Loaded plugins: axelget, fastestmirror, langpacks, presto, refresh-packagekit
Adding en_US to language list
Loading mirror speeds from cached hostfile
[code]....
whenever I try to install something via yum, it automatically downloads stuff from mirror.cse.iitk.ac.in as shown above. However, i thinks there's some problem in that mirror because installation freezes after sometime and I have to start again. How do I change my mirror to another one, possibly nearest and fastest to me other than that?
PS: I use plugins axel and fastestmirror.
View 2 Replies
View Related
Apr 23, 2010
I created a ram disk with this command: sudo mount -t tmpfs -o size=2048M,nr_inodes=500k,mode=777 tmpfs /var/cache/apt-build/build When I run apt-build, I got an error message that the disk is full (unable to copy file or something). But no disk was full when I checked with 'df'.
we know the maximum of files created from the nr_inodes number? Or is there any other option that determines the max number of files created?
View 2 Replies
View Related
Feb 2, 2011
what the correct way is to add '/sbin' to my users environment path which is not present when I run the command 'env'?
Code:
carlos@db1:~$ env
TERM=xterm
SHELL=/bin/bash
SSH_CLIENT=192.168.1.115 35495 22
SSH_TTY=/dev/pts/0
[code].....
I would like to add /sbin to all future user's I create with 'useradd' and including my already existing user account above. Can someone tell me the correct way in Debian to change my current user environment to have /sbin in their path as well as how to add this for all future users? I looked at /etc/profiile and there are two lines that look relivant:
Code:
if [ "`id -u`" -eq 0 ]; then
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
else
[code]....
I'm guessing the 2nd PATH line is for users and the 1st one is for root, right?
View 3 Replies
View Related
Oct 25, 2010
I have a Dell laptop and have multi-media buttons, some of which control the audio volume. But once a game is running like Sauerbraten, I cannot control the volume. The controls within the game are relative to the master volume, so if the volume is too low, I have to exit the game to adjust it.
View 1 Replies
View Related
Jan 26, 2010
I have a freshly installed Ubuntu Karmic 32 bits installed in an old machine (Pentium 4 512 Mb RAM) and I'm having a severe problem with apt-get. No matter what repository I choose, I can't update the repository files. I get the following error during a
[Code]....
View 2 Replies
View Related
Apr 22, 2011
I just performed my very first linux install. I used the Debian 6.0.1a iso. I made it all the way through the installation with no problems whatsoever. I was able to select the version from the grub screen, still everything seemed to be going fine...then it froze. I attached an image of the screen where the system froze:
Its basically the loading screen, times 4! At the top left in case its too hard to read, it says: Loading Linux 2.6.32-5-686, then...Loading initial ramdisk... This sounds all fine and dandy to me but it freezes here. I've tried searching the forums and google for an answer and have come up empty...I'm sure someone has had this problem but it seems to be a tough thing to search for. Would appreciate all the help I can get! Oh and btw, here are the system specs:
circa 2001ish Dell Dimension 4300
P4 1.4ghz
256 ram
onboard video etc...
View 2 Replies
View Related
Apr 30, 2011
Howto create squeeze self compiled kernel with initial ramdisk?I need some more details, I never done before.
View 14 Replies
View Related
Jun 1, 2011
On Debian Etch I used to understand how to change boot kernel parameters with Grub. You could just edit menu.lst.
With the newer Grub in Squeeze I am without a clue! I want to set up a ramdisk, say 128 Megs in size, and add that to my boot parameters so that it is created every time the machine starts. Do I set something in /etc/default/grub ?
View 3 Replies
View Related
Feb 1, 2010
I have built a kernel with a ramdisk(ramdisk.image.gz) included. Also in the kernel command line I specified root=/dev/ram0. I am trying to use this ramdisk to load a loopback file as the root filesystem off a fat partition. This is /sbin/init from the ramdisk.
#!/bin/sh
mount -n -t msdos /dev/mmcblk0p1 /mnt
losetup /dev/loop0 /mnt/linux/linuxdsk.img
mount -t ext2 /dev/loop0 /mnt2
[Code]....
The problem is both umount and blockdev report "device is busy". I want to free up this RAM any suggestions?
View 1 Replies
View Related
Aug 21, 2013
I have just installed Debian Wheezy on an E6XX Intel platform and after loading ramdisk, the screen goes black and I cannot use the system.
*) In the beginning, I tried to pass "nomodeset" in Grub, but after loading ramdisk, it tries to change screen's resolution and it goes blank.
*) gma500 output in dmesg can be seen in [1] at the bottom of this page.
*) I tried passing "GRUB_GFXMODE=640x480
GRUB_GFXPAYLOAD_LINUX=640x480" + update-grub, but it keeps failing.
*) I examined EDI's monitor output through "sudo get-edid |sudo parse-edid" (see [2] below), it seems that it is not possible to get the EDID information from the screen correctly. However, I am using this screen with xrandr with Debian Squeeze and I have no problems.
>>>>>>>>>>>>>>>>> [1] dmesg about "gma500"
[ 10.164297] gma500 0000:00:02.0: setting latency timer to 64
[ 10.164325] gma500 0000:00:02.0: Enabling MSI failed!
[ 10.164923] [drm] internal display is MIPI display
[ 10.167632] gma500 0000:00:02.0: VBT signature missing
[ 10.167828] Stolen memory information
[ 10.167840] base in RAM: 0x3f800000
[Code] ....
The EDID data should not be trusted as the VBE call failed
Error: output block unchanged
parse-edid: IO error reading EDID
View 4 Replies
View Related
Dec 1, 2009
I have install fedora 12 (i686) from Live CD. Now i want to install some package. I typed comand like this:
Code:
yum install some_package_name
But i have an error:
Code:
Error: Cannot retrieve repository metadata (repomd.xml) for repository: fedora. verify its path and try again i looked at /etc/yum.repos.d:
Quote:
[fedora]
name=Fedora $releasever - $basearch
failovermethod=priority
#baseurl=http://download.fedoraproject.org/pub/fedora/linux/releases/$releasever/Everything/$basearch/os/
[code]....
View 2 Replies
View Related
Feb 14, 2010
Today I installed Fedora12 from the DVD, so this is my first contact with all of you. The last years I ran very well with gentoo, but the time for system maintenance got to big the last few times I updated the system, so I decided to change and here am I. The Problem: My system is newly installed from the DVD and I was trying to run the first update, but got the following errormassage by KPackageKit:
Code:
Error Type:
Error Value: Error getting repository data for installed, repository not found
File : /usr/share/PackageKit/helpers/yum/yumBackend.py, line 3125, in
main()
File : /usr/share/PackageKit/helpers/yum/yumBackend.py, line 3122, in main
backend.dispatcher(sys.argv[1:])
File : /usr/lib/python2.6/site-packages/packagekit/backend.py, line 710, in dispatcher
self.dispatch_command(args[0], args[1:])
[Code]...
It occured after informing me about the amount of packages that need to be updated and a message about some dependencies that have to be newly installed. At the moment I'm a bit lost about what to do. Also I realy don't know which system-information would be useful - let me know and I will answer.
View 2 Replies
View Related
Jul 28, 2010
I installed Fedora 13 in my new system from DVD image. Now I want to update all repositories. I coul'nt update. error message as below: Error: Cannot retrieve repository metadata (repomd.xml) for repository: fedora. verify its path and try again
View 3 Replies
View Related
Nov 18, 2009
So after deciding to upgrade the existing fedora install on my laptop from 11 to 12, I decided to use the preupgrade method. After grappling with the boot space issue by clearing out an old kernel that was deemed safe to remove by the python script on the preconfig wiki page and then using tune2fs, I left the computer to do it's thing, periodically checking back on it. I come back to my computer, and after an apparent restart I see this message spat out at me:
Code:
ramdisk: incomplete write (3537 ! 5123)
write error
kernel panic - not syncing : VFS : unable to mount root fs on unknown block (0,0)
I need this laptop up and running for tomorrow and I would appreciate any help given. I have a Fedora 11 live CD running on the laptop and there seems to be an extra 210 filesystem present with the folders efi, grub, lost+found in there, as well as some config files, elf-memtest86+-400, what seems to be .img file amongst other things. If necessary, I can provide a screenshot.
View 11 Replies
View Related
Apr 19, 2010
I just installed Fedora Core 12 and when attempting use the update utility am receiving the following error:
[code]...
View 3 Replies
View Related
Jun 9, 2010
I updated my up to date F12 to F13. I have what must be a 640X480 display with no way to change it. I get an error:
"Error: Cannot retrieve repository metadata (repomd.xml) for repository: pgdg90. Please verify its path and try again" on all Yum commands so no yum installs are possible. I don't have the /usr/bin/GLX command So theAIGLX doesn't work.
View 1 Replies
View Related
Mar 18, 2011
I just did a fresh install of F14 using a Live USB. I can't do a yum update, I'm getting Error: Cannot retrieve repository metadata (repomd.xml) for repository: fedora.I've done a yum clean all and I've tried coping the .repos from another F14 system that's working fine.
View 4 Replies
View Related
May 26, 2010
i'm currently using puppy linux 431. and i want to replace it with fedora LXDE but i encounter this error upon booting using livecd.
Quote:
RAMDISK: incomplete write (XXXXX!= XXXXXX)
write error
Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0)
View 11 Replies
View Related
Jun 7, 2011
On my Laptop, I installed Debian under the file "/" and the partition on which I have all my files under "/var". While this isn't really a big issue, when I originally installed Debian, I had the intention of having all of my files on a partition that I would auto-mount later so that when I upgrade my system by reinstalling it, I would only have to change the system partition and let everything else stay the same.. I can live without changing my /var if I can only do so by a re-install...
View 2 Replies
View Related
Feb 1, 2011
How to mount an ISO file, change some files and save it after changes?
View 4 Replies
View Related
Jan 19, 2011
I'm new to Debian. I've read the documentation on this but it is too heavy for a new user to understand. I would like to change the default permissions for newly created files/directories.
I want all newly created files by 'user1' to have the default permissions of:
1. "owner can read and write"
2. "group can read and write"
3. "other can read only"
Permission 1 and 3 are already default. But I would like number 2 to be default as well. (the current default for group is read only).
View 9 Replies
View Related
May 14, 2010
not trolling for a flame war but I simply added the testing repository earlier and did an apt install of just lottanzb and it ended up taking ages and installed lots of new files and removed things like Epiphany etcetera, and that one command had me having to reinstall as it messed everything up so it wouldn`t work at all even the shell was messing up.I have never had Windows break totally from an install, but first try with Linux and it did so could someone explain why an apt-get install lottanzb would change all my libraries, config files etcetera with the testing version over Lenny stable?
View 14 Replies
View Related