You are not logged in.
Pages: 1
I got an error while trying to update something about running out of space but I was able to delete some older packages and install the upgrade.
Now it's about 95% full and I want to change the drive to the other backup drive (it's currently the Xandros smaller OS drive).
I checked the preferences option in Synaptic but couldn't find anything.
Any ideas?
Offline
Synaptic is just the frontend of apt-get. The default location of which for downloaded packages is /var/apt/cache/archive. So if you have run out of disk space on the SSD, you can create a symbolically linked folder on your USB drive to /var/apt/cache/archive.
Offline
Okay I think I understand but how would I go about doing that...?
PS- you see how in the middle all of a sudden it started putting a space between the letters...? What's the key combo to do that! I hate it!
Offline
anyone know...? =/
Offline
Regarding the text issue, the key combination is Shift + Space. You can find more information on that issue in this thread. ![]()
Last edited by Sage_Harpuia (2008-08-02 11:24:06 am)
Offline
OME9A wrote:
Okay I think I understand but how would I go about doing that...?
You can try like this:
Open File Manager > create a folder named "archives" in your USB drive > click into that folder > then select "Tools" menu > "Open Console Window".
Now you should be in a konsole terminal with the path at something like /media/D:/archives>
Next rename the existing folder /var/apt/cache/archives, then copy its content into the new "archives" folder in your USB drive, and create a symbolic link to /var/apt/cache/archives.
sudo mv /var/apt/cache/archives /var/apt/cache/archives.orig cp -R /var/apt/cache/archives.orig/* . sudo ln -s /media/D:\/archives /var/apt/cache/archives
Be careful with the "D:\" thing. You can type "D:" first, then press [TAB] to allow the system to autocomplete the rest. Also change D to the correct drive letter your system has assigned to your USB drive.
Then you can proceed to install program as usual.
To return to original settings: delete the symbolic link and rename the folder "archives.orig" back to "archives":
cd /var/apt/cache/ sudo rm archives sudo mv archives.orig archives
Offline
albkwan: great post! It would be nice if you put that in the wiki!
Offline
lagagnon wrote:
albkwan: great post! It would be nice if you put that in the wiki!
When I have time! There are too many wiki post I am working on now.
Offline
Pages: 1