In regard to the insufficient space available on /tmp/.
Instead of using an elaborate trick like 'disabling tmpfs, cloning repository' one should simply enlarge /tmp/ filesystem to sufficient size.
# sudo mount -o remount,noatime,size=6G /tmp/
Tmpfs size could safely exceed available amount of RAM - will utilise sapace on swap partition instead.
In my case 4GB RAM, 10GB swap - I can adjust tmpfs size up to 8GB without issues.
In case of using 'yaourt' with 'custmizepkg' simply create this rule.
/etc/customizepkg.d/scilab
addline#global#build() {#sudo mount -o remount,noatime,size=6G /tmp/
Search Criteria
Package Details: scilab 2025.0.0-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/scilab.git (read-only, click to copy) |
---|---|
Package Base: | scilab |
Description: | A scientific software package for numerical computations |
Upstream URL: | https://www.scilab.org |
Keywords: | algorithm analysis data development gui mathematics model modelica numeric numerical science scientific sdk simulation visualization |
Licenses: | BSD-3-Clause, GPL-2.0-or-later, CeCILL-2.1 |
Submitter: | td123 |
Maintainer: | carlosal1015 |
Last Packager: | carlosal1015 |
Votes: | 86 |
Popularity: | 0.016740 |
First Submitted: | 2011-12-07 20:36 (UTC) |
Last Updated: | 2024-10-26 02:56 (UTC) |
Dependencies (16)
- arpack (arpack-gitAUR)
- bwidgetAUR
- eigen (eigen-gitAUR)
- fftw
- hdf5-openmpi
- libmatio (libmatio-gitAUR)
- suitesparse
- ant (ant-gitAUR) (make)
- curl (curl-quiche-gitAUR, curl-http3-ngtcp2AUR, curl-gitAUR, curl-c-aresAUR) (make)
- gcc-fortran (gcc-fortran-gitAUR, gcc11-fortranAUR, gcc-fortran-snapshotAUR) (make)
- libxml2 (libxml2-gitAUR, libxml2-2.9AUR) (make)
- ocaml-num (make)
- pcre (make)
- pkgconf (pkgconf-gitAUR) (make)
- time (time-gitAUR) (make)
- tk (tk-fossilAUR) (make)
Required by (0)
Sources (1)
Latest Comments
« First ‹ Previous 1 .. 12 13 14 15 16 17 18 19 20 21 22 .. 29 Next › Last »
bartus commented on 2016-08-10 17:31 (UTC) (edited on 2016-08-15 11:42 (UTC) by bartus)
marker5a commented on 2016-07-13 19:46 (UTC)
@NyanNyanKoneko: For future reference, a slightly less disruptive method would be to just clone the AUR package and build the package on your disk. This would prevent you from having to clear out /tmp, which could cause some issues on a running system... also, doesn't require you to reboot :)
for example:
# mkdir ~/aur_build_directory
# cd ~/aur_build_directory
# git clone https://aur.archlinux.org/scilab.git
# cd scilab
# makepkg -i
Voila!
NyanNyanKoneko commented on 2016-05-05 01:54 (UTC)
Thanks for maintaining this awesome program. One issue I had while compiling was that I ran out of room in /tmp on my netbook with only two gigabytes of RAM. This is because the tmpfs service turns /tmp into a RAM disk with a maximum available space of half the system's RAM. In my case, it capped out at one gigabyte.
I was able to get around this by disabling the tmpfs service. With it disabled, the /tmp directory works like any other directory on the hard drive.
If anyone else has the same issue, here's what I did:
1) Run the following command to disable tmpfs: sudo systemctl mask tmp.mount
2) Restart.
3) Install scilab.
4) Delete all files and directories in /tmp. Example: sudo rm -r /tmp/*
5) Re-enable tmpfs with the following command: sudo systemctl unmask tmp.mount
6) Restart.
eolianoe commented on 2016-05-03 19:58 (UTC) (edited on 2016-05-05 13:12 (UTC) by eolianoe)
scilab does not compile and fails to run since the upgrade of hdf5-1.10.0. I will try to make a patch or to submit a legacy version of hdf5 in the AUR within the next days and any help is appreciated.
In the meantime you can use the binary version with the scilab-bin package [a].
[a] https://aur.archlinux.org/packages/scilab-bin/
EDIT : bugreport http://bugzilla.scilab.org/show_bug.cgi?id=14539
EDIT2 : added the package hdf5-1.8.16 [b] as a temporary workaround, keep trying to have a patch to build against extra/hdf5
[b] https://aur.archlinux.org/packages/hdf5-1.8.16/
eolianoe commented on 2016-04-19 20:09 (UTC)
@hiddenhand: building fine here. Could you send me an e-mail with the full build log in order to have more details. And please comment directly the java-freehep-vectorgraphics page rather than this one.
hiddenhand commented on 2016-04-19 17:01 (UTC) (edited on 2016-04-19 17:04 (UTC) by hiddenhand)
I'm getting stuck building java-freehep-vectorgraphics, am I the only one having this problem? It's not pulling the tar.gz from the source. I've also used yaourt and pacaur for this. Thanks
Edit: If it matters, I've also tried manually building it.
eolianoe commented on 2016-01-22 08:55 (UTC)
@KhazAkar: I managed to install some ATOMS packages. What kind of errors do you have?
Look at the Scilab wiki [1] and try the binary package [2] in order to see if the error is coming from your network or the package.
[1] https://wiki.scilab.org/ATOMS
[2] https://aur.archlinux.org/packages/scilab-bin/
KhazAkar commented on 2016-01-21 10:41 (UTC)
Hi!
After successfull install scilab I can't install any of ATOMS packages. :/
eolianoe commented on 2015-10-12 20:34 (UTC)
@rugaliz: could you send me the full build log in order to view all the compilations errors?
Pinned Comments
carlosal1015 commented on 2024-11-17 18:01 (UTC)
Open issue https://gitlab.com/scilab/scilab/-/issues/16429