Ubuntu :: Create Ramdisk Able To Hold Many Many Files?

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


ADVERTISEMENT

Debian Configuration :: Create A Ramdisk At Boot Time?

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

General :: Recursive Search For Files That Hold Some Specific Text?

Jan 18, 2011

How do I recursively generate a text file which has a list of all files on my server which contain a specific string anywhere in the files?

I know the following command can be used to replace a string recursively

find /var/www -type f -print0 | xargs -0 sed -i 's/old string/new string/g'

I do not want to replace the string, I just want a list of all files which contain the string.

View 4 Replies View Related

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 View Related

Ubuntu :: Permissions For My Home Directory Were Accidentally Changed From 'access Files' To 'create And Delete Files?

Nov 25, 2010

the permissions for my home directory were accidentally changed from 'access files' to 'create and delete files', and I changed them back, but ever since then I am not able to change any preferences/settings at all. power management, themes, panels, emerald, anything. my user account is supposed to be the administrator, and all the user privliges are checked. how to get control of my computer back?

View 9 Replies View Related

Ubuntu :: Hold Keys Down To Input Anything ?

Jun 18, 2010

I'm having an issue with the keyboard in ubuntu. I'm running 10.04 on my laptop. I must hold any key down for about 1.5 seconds for it to be input. It's like sticky keys.

View 5 Replies View Related

Ubuntu :: Hold Back On 10.10, Keep Getting Other Updates?

Apr 28, 2011

...and the answer isn't "use LTS". Maybe the next LTS whenever that comes out (12.whatever?), but we needed 10.10 for the ATI drivers. Anyway, 11.04 has hit and since I'm dealing with office machines and software developers who expect a stable environment, I want to hold back 10.10 as long as possible (or at least "as long as I need to test things"), both on desktop and server installs. I'm looking at 130+ other updates in Update Managar today and when I hit the install updates button I had to fumble for the cancel button because it went to the dist-upgrade screen. How can I tell what packages will trigger the Ubuntu upgrade so I can freeze them?

View 5 Replies View Related

Ubuntu :: Changing Ramdisk Size For 9.10?

Feb 17, 2010

Wine is one of the coolest things I've ever seen, but unfortunately it's still not enough to suit my needs as version 1.38 can't install any of the .NET libraries.

I'm trying to boot windows 7 on virtual box, but it seems to demand quite a bit of memory. The "recommended" amount is 512MB, and upon checking my kernel only has 488MB total ram with not much room to spare:

Code:
billy@billy-desktop:~$ free -m
total used free shared buffers cached
Mem: 488 462 25 0 53 193
-/+ buffers/cache: 216 271
Swap: 1939 17 1921

I've tried giving the virtual machine memory sizes in the area of 192-256MB, but that's way too much and the system locks up and aborts from it. Memory sizes in the area of 128MB is just too small and it throws an error that there just isn't enough ram to boot. So the only thing I can do to make this work is to increase the size of the ramdisk for my host OS so I can give more to the virtual machine (not to mention things like flash animations are horribly slow and I'd like to see them get more fluid).

I see that I have 16 ramdisks available to me:

Code:
billy@billy-desktop:~$ ls -l /dev/ram*
brw-rw---- 1 root disk 1, 0 2010-02-17 09:54 /dev/ram0
brw-rw---- 1 root disk 1, 1 2010-02-17 09:54 /dev/ram1
brw-rw---- 1 root disk 1, 10 2010-02-17 09:54 /dev/ram10

[Code]....

I looked at some guides here and there, but apparently my setup isn't quite the same. I don't have a menu.lst file in boot/grub, and I don't have a grub.conf file anywhere. So I don't know what file I'm supposed to edit for this.

View 2 Replies View Related

Ubuntu :: Mount A Ramdisk On Demand?

Feb 1, 2011

Trying to mount a ramdisk on demand when I need one, however gksudo is griping that the command is wrong. So, what's wrong with this command?

gksudo mount -t tmpfs -o size=1024m tmpfs /mnt/ramdisk

View 3 Replies View Related

Ubuntu :: Press And Hold For Right Click On Tablet ?

Jun 1, 2010

I have a tablet computer running 10.04 and I was wondering if there is a way under Linux to have click and hold be a right click like it is under Windows Xp/Vista/7 this is really the last piece of functionality I am missing on the system under Linux. I have tried easystroke but I do not like that I have to disable it in order to use Xournal on the system so that will not work for right clicking...

View 6 Replies View Related

Ubuntu :: Hold-ing A Package Using Dpkg --set-selections?

Oct 10, 2010

I'm trying to install wine1.3 but I don't want the (recommended) package ttf-mscorefonts-installer.In previous releases, I can run this to 'hold' the package and prevent it's installation:

Code:
echo ttf-mscorefonts-installer hold | sudo dpkg --set-selections.However, this command doesn't prevent ttf-mscorefonts-installer from being installed along with wine1.3 in maverick.[code]....

it's just that dpkg isn't picking it up.What is going on here, and how can I place a package on permanent hold?

Note: I ended up installing wine1.3 by running:

Code:
sudo aptitude install wine1.3 ttf-mscorefonts-installer= but I don't believe that the package is actually on permanent hold.

View 2 Replies View Related

General :: How To Hold I/O Requests

Mar 23, 2011

I need to quiesce a VM manually and for that I need to somehow pause VM and hold incoming I/O requests.

View 3 Replies View Related

Ubuntu Networking :: Cannot Hold A Connection With Any Wireless Signal ?

Apr 3, 2010

For some reason my laptop cannot keep a connection with any wireless signal. I have tried several networks and resetting the router and it just doesnt work. Im not sure why...i have selected to connect to a certain network and it either takes forever to finally connect or doesnt connect at all. also when it does connect it only last a few minutes, meanwhile using win7 i have no issues with the connection.

View 2 Replies View Related

Ubuntu :: Autoclick Be Able To Hold Down The Left-click Button?

Jun 7, 2010

I can think of a lot of different situations when being able to "autoclick" would be really useful. By autoclick, I mean that I want to be able to hold down the left-click button and have it rapidly clickity clickity clickity as fast as the processor can handle.

One example is games where I have a semi-automatic weapon and I have to hammer the mouse button with my finger. It would be nicer to reduce the wear and tear on my trackpad.

View 5 Replies View Related

Ubuntu Networking :: Eth0 Can't Hold The Gateway Ip Address

Aug 21, 2010

I would like to configure the eth0 manually. I can configure the ip address and sub-netmask but the system can't hold my gateway ip address (I added). It will keep it 0.0.0.0. I have no problem when I getting IP address from DHCP server.

View 1 Replies View Related

Ubuntu :: Potential Launcher Icons Will Not Stay/hold

Aug 25, 2010

Initially on a fresh install, I install an icon theme to /usr/share/icons and a few extra icons that I use in desktop, taskbar, and menu launcher icons to /usr/share/pixmaps. Anyway, it all works just fine. Again, no problems at all.

Today, I decided why in the world would I separate the two, and why not just put all my icons inside my icon set in /usr/share/icons, and then just reset those launchers. No biggie.

However, for some odd reason icons that I've set in launchers on my taskbar and in the menu won't stay/hold, and it just remains a generic icon. Why? They are the EXACT same icons that were in /usr/share/pixmaps. All I did was put them inside /usr/share/icons/my-theme. I don't get it.

And just to see if it worked, I put them back inside the /pixmaps folder and they work. So obviously, not a big deal, but I would love to know why. What is the difference that is preventing me from having them all work in my /icons folder?

I've refreshed, restarted, and retried over and over to see if it was just a glitch, but to know avail.

View 4 Replies View Related

Ubuntu Servers :: Sudo Can't Hold Environment / Resolve This?

Oct 6, 2010

I'm with Linux 2.6.32-25-server #44-Ubuntu SMP Fri Sep 17 21:13:39 UTC 2010 x86_64 GNU/Linux , Ubuntu 10.04 Server
And I wanna execute the next script in bash profile code...

View 1 Replies View Related

Ubuntu :: Kubuntu Lock Or Hold Package Version?

Nov 25, 2010

Having trouble figuring this out. I've got a package that I've installed from out-of-repos and Kubuntu feels the need to "upgrade" this package to a version that I do not want to use. I've found out how to do this in Ubuntu, but not in Kubuntu. A commandline solution would be fine, although I've googled it and not come up with any working results.

View 2 Replies View Related

Ubuntu :: Show GRUB 2 Interface Only If Hold ESC At Boot?

Mar 14, 2011

Is there a way to show GRUB 2 interface only if you hold ESC at boot? If I remember well you can do it with GRUB 1.

View 3 Replies View Related

Ubuntu :: Sometimes Clicking Menus Won't Keep Them Open Unless I Hold Button / Fix It?

Aug 3, 2011

Does this happen to anyone else?

For example, sometimes when I create a bookmark in Chrome, you click the Folder button to have it popup a list of folders where you can put the bookmark. Sometimes clicking this causes it to pop open and stay open. Other times clicking it opens it for a second and then it immediately closes. To be able to select a folder when its acting like this I have to click and hold the mouse button and then select what I want while continuing to hold the button. This doesn't only happen in Chrome. Sometimes it happens while setting ubuntu settings in the OS itself or in other applications.

Is this a bug? Why is the behavior inconsistent?

View 1 Replies View Related

Red Hat :: Mount The Whole System Into The Ramdisk?

Dec 9, 2009

how could i mount the whole system into the ramdisk?I follow the article "http://www.linuxquestions.org/questions/red-hat-31/building-a-diskless-redhat-enterprise-linux-cluster-765393/",and it works.when i use the "df -h" on the diskless client .I find many system driectory is mountted from image_server.when i stop the connection between img_server and diskless client,the diskless client stop working. my question is how can i mount the whole system into ramdisk.

View 2 Replies View Related

Ubuntu :: Finish Creating Raid1 Ramdisk/hdd Partition?

Mar 8, 2011

After some hours of googling, I've managed to increase the size of the default ramdisks (/dev/ram0-16) to 1 GiB each, I raided them together with mdadm to try it out, then created a filesyste, mounted it etc etc. No problems. The problem comes when I used gparted to move my windows partition over and in the unallocated space (1 GiB), I created an unformatted partition (/dev/sda2)Now when I try to create the raid array I get the following:

Code:
:~$ sudo mdadm --create /dev/md0 -l 1 -n 2 /dev/ram0 /dev/sda2
mdadm: Cannot open /dev/sda2: Device or resource busy

[code]....

View 2 Replies View Related

Fedora :: Hold Of Kernel-Packages

Sep 30, 2009

I use another kernel on my eeepc which is specially adjusted for the Hardware Needs of this little machine.

The source of this kernel is: [url]

But since today I have the problem that the updater would like to update the vanilla kernel from the Fedora Repos.

Even though there aren't any versions of this vanilla kernel already installed. So I don't know what causes this mistake and would like to prevent this kernel from auto-updating.

View 1 Replies View Related

Software :: Using A Modem As Hold Music

Mar 21, 2011

I have seen a few options out there but, has anyone know of a real good piece of software that you can use a internal voice modem in place of a on hold music device? I think it's out there but I haven't found a decent one. I have seen them for answering machines and such, but an on hold would be cool.

View 1 Replies View Related

Ubuntu Servers :: Set The Server To Hold The Domain From A Dynamic Ip Address?

Sep 25, 2010

I have 4 servers that I got at auction and they now have ubuntu running with gnome interface.I installed apache2 and tried to edit the conf file but i am not sure if it is a router issue a dns or the config.I am trying to figure out how to set the server to hold the domain from a dynamic ip address and also how to create some test page to see if i can acess from the internet.

I have purchased some books on the command lines and how ubuntu works, I am understanding it so far, but dont know how to have a directory for the dns request to point to for the sitewhat i want to do with the servers...voipeb server for about 4 websites - one is for a volunteer rescue organization, another for a test auction site and 2 portfolio sitesremote file access- if possiblealso on a side note, is it possible to have a message relay from one cell phone or transmit to the server and have it send sms message to cell phones? - this will be used for the rescue group as well.

View 3 Replies View Related

General :: Keeping A RAMdisk Out Of Swap

Dec 15, 2010

I'm using some milters on a Sendmail box that recommends using a RAMdisk [tmpfs] to store temporary files, the performance benefits of which are quite noticeable. However, the problem is if a huge number of messages are all delivered at once this partition can be pushed off the physical memory and into swap. When this happens the performance tanks to about 1/20th to 1/30th of normal.Is there anything I can do to keep a tempfs from being swapped to disk?

View 3 Replies View Related

OpenSUSE Hardware :: About RAMDISK Size ?

May 18, 2010

Does anyone know is there any size limitation when doing RAMDISK under SUSE Linux?

View 9 Replies View Related

OpenSUSE Hardware :: How To Set Ramdisk Size

Aug 4, 2011

Have such a question: how to set ramdisk size? Ramdisk: How do you install and set up Ramdisk under Linux (CentOS, RHEL, Fedora)? | Technology: Learn and Share

Here is some article, but somehow GRUB setting takes no effect, size is still limited to 100MB. I need to get ramdisk with size about 700-1500 MB.

View 9 Replies View Related

General :: Can't Find RAMDISK Initialized

Sep 30, 2010

I am trying to config the RAM disk on CentOS 5.5

/etc/grub.conf
title CentOS (2.6.18-194.el5)
root (hd0,0)

[code].....

View 2 Replies View Related

Software :: Large RamDisk DVD Install?

Jun 20, 2010

I am trying to boot a ramdisk and am getting the following error:16384 ram0 (driver?)

16384 ram181 (driver?) No filesystem could mount root, tried:ext2 iso9660. Kernel panic - not syncing:VFS:Unable to mount root fs on unknown-block (1,0)

This is RHEL5 so input the ramdisk_blocksize into isolinux.cfg:
DEFAULT linux
LABEL linux
KERNEL vmlinuz
APPEND initrd=initrd.img root=/dev/ram0 ramdisk_blocksize=1024 ramdisk=2969600 rw init=/etc/rc.d/rc.sysinit

[Code]...

View 9 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved