<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, error, cannot open archive, /home/salvatore/maple11/lib/, for writing</title>
    <link>http://www.mapleprimes.com/questions/41448-Error-Cannot-Open-Archive-homesalvatoremaple11lib</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Thu, 11 Jun 2026 09:41:08 GMT</lastBuildDate>
    <pubDate>Thu, 11 Jun 2026 09:41:08 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, error, cannot open archive, /home/salvatore/maple11/lib/, for writing</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, error, cannot open archive, /home/salvatore/maple11/lib/, for writing</title>
      <link>http://www.mapleprimes.com/questions/41448-Error-Cannot-Open-Archive-homesalvatoremaple11lib</link>
    </image>
    <item>
      <title>Maple is correct</title>
      <link>http://www.mapleprimes.com/questions/41448-Error-Cannot-Open-Archive-homesalvatoremaple11lib?ref=Feed:MaplePrimes:error, cannot open archive, /home/salvatore/maple11/lib/, for writing:Comments#answer77230</link>
      <itunes:summary>You are trying to save your package into Maple's global library -- and it refuses to do so, which is as expected.

savelib is a rather low-level command.  You should look into LibraryTools, and LibraryTools:-Save in particular.  Note how you usually have to specify an archive, one which is writeable by you.</itunes:summary>
      <description>You are trying to save your package into Maple's global library -- and it refuses to do so, which is as expected.

savelib is a rather low-level command.  You should look into LibraryTools, and LibraryTools:-Save in particular.  Note how you usually have to specify an archive, one which is writeable by you.</description>
      <guid>77230</guid>
      <pubDate>Sun, 29 Apr 2007 21:16:43 Z</pubDate>
      <itunes:author>JacquesC</itunes:author>
      <author>JacquesC</author>
    </item>
    <item>
      <title>solved</title>
      <link>http://www.mapleprimes.com/questions/41448-Error-Cannot-Open-Archive-homesalvatoremaple11lib?ref=Feed:MaplePrimes:error, cannot open archive, /home/salvatore/maple11/lib/, for writing:Comments#answer77227</link>
      <itunes:summary>Ok, 

I've created a init text file in /lib directory with the savelibname command, and it work proprely.

Tk you!
S.</itunes:summary>
      <description>Ok, 

I've created a init text file in /lib directory with the savelibname command, and it work proprely.

Tk you!
S.</description>
      <guid>77227</guid>
      <pubDate>Mon, 30 Apr 2007 12:18:38 Z</pubDate>
      <itunes:author>sasomao</itunes:author>
      <author>sasomao</author>
    </item>
    <item>
      <title>init file</title>
      <link>http://www.mapleprimes.com/questions/41448-Error-Cannot-Open-Archive-homesalvatoremaple11lib?ref=Feed:MaplePrimes:error, cannot open archive, /home/salvatore/maple11/lib/, for writing:Comments#comment85606</link>
      <itunes:summary>If you put it into the /lib directory, then that is a 'global' init file for everyone on your computer (and all maple sessions).  It is more usual to put the init file in your home directory (wherever that is, depending on your platform).</itunes:summary>
      <description>If you put it into the /lib directory, then that is a 'global' init file for everyone on your computer (and all maple sessions).  It is more usual to put the init file in your home directory (wherever that is, depending on your platform).</description>
      <guid>85606</guid>
      <pubDate>Mon, 30 Apr 2007 16:41:54 Z</pubDate>
      <itunes:author>JacquesC</itunes:author>
      <author>JacquesC</author>
    </item>
    <item>
      <title>Tk you for the help
So I've</title>
      <link>http://www.mapleprimes.com/questions/41448-Error-Cannot-Open-Archive-homesalvatoremaple11lib?ref=Feed:MaplePrimes:error, cannot open archive, /home/salvatore/maple11/lib/, for writing:Comments#comment85609</link>
      <itunes:summary>Tk you for the help

So I've created a folder inside "lib" and I've added this address with the line:

savelibname:= .../lib/newdossier;

and this seems to work.
A question: I've to add this address any time I open maple, or the program remember it?

Tk you
S.
</itunes:summary>
      <description>Tk you for the help

So I've created a folder inside "lib" and I've added this address with the line:

savelibname:= .../lib/newdossier;

and this seems to work.
A question: I've to add this address any time I open maple, or the program remember it?

Tk you
S.
</description>
      <guid>85609</guid>
      <pubDate>Sun, 29 Apr 2007 21:41:17 Z</pubDate>
      <itunes:author>sasomao</itunes:author>
      <author>sasomao</author>
    </item>
    <item>
      <title>use Maple initialization file</title>
      <link>http://www.mapleprimes.com/questions/41448-Error-Cannot-Open-Archive-homesalvatoremaple11lib?ref=Feed:MaplePrimes:error, cannot open archive, /home/salvatore/maple11/lib/, for writing:Comments#comment91398</link>
      <itunes:summary>You can put the assignment in the Maple initialization file.  See ?maple for details.  For linux, create a text file ~/.mapleinit with the line&lt;pre&gt;
libname := "/home/yourname/maple/lib/newdossier", libname:&lt;/pre&gt;More useful might be something like&lt;pre&gt;
# ~/.mapleinit - Maple initialization file
# This is read each time Maple is started or restarted.
# Assign global variable mylib and reassign libname and savelibname to use it.

mylib := "/home/yourname/maple/lib/newdossier":  # adjust as appropriate
libname := mylib, libname:
savelibname := mylib:&lt;/pre&gt;


</itunes:summary>
      <description>You can put the assignment in the Maple initialization file.  See ?maple for details.  For linux, create a text file ~/.mapleinit with the line&lt;pre&gt;
libname := "/home/yourname/maple/lib/newdossier", libname:&lt;/pre&gt;More useful might be something like&lt;pre&gt;
# ~/.mapleinit - Maple initialization file
# This is read each time Maple is started or restarted.
# Assign global variable mylib and reassign libname and savelibname to use it.

mylib := "/home/yourname/maple/lib/newdossier":  # adjust as appropriate
libname := mylib, libname:
savelibname := mylib:&lt;/pre&gt;


</description>
      <guid>91398</guid>
      <pubDate>Sun, 29 Apr 2007 22:02:17 Z</pubDate>
      <itunes:author>Joe Riel</itunes:author>
      <author>Joe Riel</author>
    </item>
  </channel>
</rss>