Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
Hi - I'm new to Linux and have a problem. The machine I'm working runs Debian Linux Version 2.6.12.6-arm1 and, to install a piece of software on it, I need to copy a 122 MB file to the /tmp directory. It will not let me because it says there is not enough space. df -h gives Filesystem Size Used Avail Use% Mounted on
rootfs 9.3G 430M 8.9G 5% /
/dev/root.old 13M 11M 2.3M 83% /initrd
/dev/root 9.3G 430M 8.9G 5% /
tmpfs 100K 0 100K 0% /lib/init/rw
tmpfs 62M 0 62M 0% /dev/shm
tmpfs 10M 8.0K 10M 1% /tmp
/dev/sda1 190M 11M 170M 6% /boot
/dev/sda6 288G 49G 240G 17% /mnt/disk1
which looks to me like I have enough space in /tmp. Is it possible to change this and, if so, how?
Tom
Your /tmp directory is located on tmpfs, which is volatile RAM. Currently only 10MB is allocated for /tmp, which is why you're getting the not enough space error. Assuming you have the RAM available, you can remount /tmp with more space:
Code:
mount -t tmpfs tmpfs /tmp -o size=200M,mode=1777,remount
Hi - The instructions to install the software on this machine said to enter
LC_ALL= /opt/ssods4/etc/init.d/rc.ssods start
and the software would automatically run when the machine is started. This does not happen. Each time I restart the machine I have to re-enter this line.
Anyone any ideas on what I did wrong?
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.