Getting error code(1) when installing MSSQL server in Ubuntu 16.04 - Ask Ubuntu
getting error code(1) in installing mssql server in ubuntu 16.04
error: machine must have @ least 3.25 gigabytes of memory install microsoft(r) sql server(r).
but have 283.4 gigabytes free.
when microsoft structured query language (sql) says needs 3.25 gb of free memory talking ram (random access memory) or volatile memory.
when have 283.4 gb of memory free talking non-volatile memory aka hard disk storage or solid state disk (ssd) storage.
although both "memory" comparing apples oranges both "fruit".
to see how ram have available use command free
terminal. ie:
$ free total used free shared buff/cache available mem: 8031732 1614708 4377704 750208 2039320 5357500 swap: 8191996 0 8191996
the first row "mem:" refers ram. second row "swap" refers hard disk swap space we'll call "backup ram" lack of better term.
the first column total installed ram / swap (in case 8 gb each), second how used , third how "free". in case 4 gb of ram free , 8 gb of swap free.
to increase free ram can close web browser, music players, videos, etc.
Comments
Post a Comment