Skip to content

Commit 4b22953

Browse files
committed
Fixed redirections and added better cross linking
1 parent 1f453a0 commit 4b22953

7 files changed

Lines changed: 40 additions & 23 deletions

.openpublishing.redirection.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,32 +2,32 @@
22
"redirections": [
33
{
44
"source_path": "docs/linux/sql-server-linux-get-started-tutorial.md",
5-
"redirect_url": "docs/linux/sql-server-linux-overview.md",
5+
"redirect_url": "/sql/linux/sql-server-linux-overview",
66
"redirect_document_id": false
77
},
88
{
99
"source_path": "docs/linux/sql-server-linux-connect-and-query-sqlcmd.md",
10-
"redirect_url": "docs/linux/sql-server-linux-setup-tools.md",
10+
"redirect_url": "/sql/linux/sql-server-linux-setup-tools",
1111
"redirect_document_id": false
1212
},
1313
{
14-
"source_path": "docs/linux/sql-server-linux-setup-suse-linux-enterprise-server",
15-
"redirect_url": "docs/linux/quickstart-install-connect-suse.md",
14+
"source_path": "docs/linux/sql-server-linux-setup-suse-linux-enterprise-server.md",
15+
"redirect_url": "/sql/linux/quickstart-install-connect-suse",
1616
"redirect_document_id": false
1717
},
1818
{
19-
"source_path": "docs/linux/sql-server-linux-setup-red-hat",
20-
"redirect_url": "docs/linux/quickstart-install-connect-red-hat.md",
19+
"source_path": "docs/linux/sql-server-linux-setup-red-hat.md",
20+
"redirect_url": "/sql/linux/quickstart-install-connect-red-hat",
2121
"redirect_document_id": false
2222
},
2323
{
24-
"source_path": "docs/linux/sql-server-linux-setup-ubuntu",
25-
"redirect_url": "docs/linux/quickstart-install-connect-ubuntu.md",
24+
"source_path": "docs/linux/sql-server-linux-setup-ubuntu.md",
25+
"redirect_url": "/sql/linux/quickstart-install-connect-ubuntu",
2626
"redirect_document_id": false
2727
},
2828
{
29-
"source_path": "docs/linux/sql-linux-quickstart-connect-docker",
30-
"redirect_url": "docs/linux/quickstart-install-connect-docker.md",
29+
"source_path": "docs/linux/sql-linux-quickstart-connect-docker.md",
30+
"redirect_url": "/sql/linux/quickstart-install-connect-docker",
3131
"redirect_document_id": false
3232
},
3333
{

docs/linux/quickstart-install-connect-docker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.topic: article
99
ms.prod: sql-linux
1010
ms.technology: database-engine
1111
---
12-
# Get started with SQL Server 2017 on Docker
12+
# Run the SQL Server 2017 container image with Docker
1313

1414
In this quick start tutorial, you use Docker to pull and run the SQL Server 2017 RC1 container image, [mssql-server-linux](https://hub.docker.com/r/microsoft/mssql-server-linux/). Then connect with **sqlcmd** to create your first database and run queries.
1515

docs/linux/quickstart-install-connect-red-hat.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ In this quick start tutorial, you first install SQL Server 2017 RC1 on Red Hat E
4040

4141
To configure SQL Server on RHEL, run the following commands in a terminal to install the **mssql-server** package:
4242

43+
> [!TIP]
44+
> These commands involve user input and assume a connection to the internet. If you are interested in the unattended or offline installation procedures, see [Installation guidance for SQL Server on Linux](sql-server-linux-setup.md).
45+
4346
1. Enter superuser mode.
4447

4548
```bash

docs/linux/quickstart-install-connect-suse.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ In this quick start tutorial, you first install SQL Server 2017 RC1 on SUSE Linu
4242

4343
To configure SQL Server on SLES, run the following commands in a terminal to install the **mssql-server** package:
4444

45+
> [!TIP]
46+
> These commands involve user input and assume a connection to the internet. If you are interested in the unattended or offline installation procedures, see [Installation guidance for SQL Server on Linux](sql-server-linux-setup.md).
47+
4548
1. Download the Microsoft SQL Server SLES repository configuration file:
4649

4750
```bash

docs/linux/quickstart-install-connect-ubuntu.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@ In this quick start tutorial, you first install SQL Server 2017 RC1 on Ubuntu 16
2424

2525
## <a id="install"></a>Install SQL Server
2626

27-
To configure SQL Server on Ubuntu, run the following commands in a terminal to install the **mssql-server** package:
27+
To configure SQL Server on Ubuntu, run the following commands in a terminal to install the **mssql-server** package.
28+
29+
> [!TIP]
30+
> These commands involve user input and assume a connection to the internet. If you are interested in the unattended or offline installation procedures, see [Installation guidance for SQL Server on Linux](sql-server-linux-setup.md).
2831
2932
1. Import the public repository GPG keys:
3033

docs/linux/sql-server-linux-setup-tools.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ Install the tools for your platform:
3939
- [macOS](#macos)
4040
- [Docker](#docker)
4141

42+
> [!TIP]
43+
> This topic describes how to install the command-line tools. If you are looking for examples of how to use **sqlcmd** or **bcp**, see the [links](#next-steps) at the end of this topic.
44+
4245
## <a id="RHEL"><a/>Install tools on RHEL
4346

4447
Use the following steps to install the **mssql-tools** on Red Hat Enterprise Linux.
@@ -261,9 +264,11 @@ To manually install these packages, use the following steps:
261264
262265
## Next steps
263266
264-
After installation, connect to the SQL Server instance to create and manage databases. For examples, see the following quick start tutorials:
267+
For an example of how to use **sqlcmd** to create a database, see one of the following quick start tutorials:
265268
266269
- [Install on Red Hat Enterprise Linux](quickstart-install-connect-red-hat.md)
267270
- [Install on SUSE Linux Enterprise Server](quickstart-install-connect-suse.md)
268271
- [Install on Ubuntu](quickstart-install-connect-ubuntu.md)
269-
- [Run on Docker](quickstart-install-connect-ubuntu.md)
272+
- [Run on Docker](quickstart-install-connect-ubuntu.md)
273+
274+
For an example of how to use **bcp** to bulk import and export data, see [Bulk copy data to SQL Server on Linux](sql-server-linux-migrate-bcp.md).

docs/linux/sql-server-linux-setup.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
# required metadata
33

4-
title: Install SQL Server on Linux | Microsoft Docs
5-
description: SQL Server 2017 RC1 now runs on Linux. This topic provides an overview on how to install SQL Server on Linux with links to the guides for specific platforms.
4+
title: Install SQL Server 2017 on Linux | Microsoft Docs
5+
description: Install, update, and uninstall SQL Server on Linux. This topic covers online, offline, and unattended scenarios.
66
author: rothja
77
ms.author: jroth
88
manager: jhubbard
@@ -24,13 +24,16 @@ ms.assetid: 565156c3-7256-4e63-aaf0-884522ef2a52
2424
# ms.custom: ""
2525

2626
---
27-
# Install SQL Server on Linux
27+
# Installation guidance for SQL Server on Linux
2828

29-
SQL Server 2017 RC1 is supported on Red Hat Enterprise Linux (RHEL), SUSE Linux Enterprise Server (SLES), and Ubuntu. It is also available as a Docker image, which can run on Docker Engine on Linux or Docker for Windows/Mac. The topics in this section provide tutorials and general guidance for installing SQL Server 2017 RC1 on Linux.
29+
This topic explains how to install, update, and uninstall SQL Server 2017 on Linux. SQL Server 2017 RC1 is supported on Red Hat Enterprise Linux (RHEL), SUSE Linux Enterprise Server (SLES), and Ubuntu. It is also available as a Docker image, which can run on Docker Engine on Linux or Docker for Windows/Mac.
30+
31+
> [TIP]
32+
> To get started quickly, jump to one of the quick start tutorials for [RHEL](quickstart-install-connect-red-hat.md), [SLES](quickstart-install-connect-suse.md), [Ubuntu](quickstart-install-connect-ubuntu.md), or [Docker](quickstart-install-connect-docker.md).
3033
3134
## <a id="supportedplatforms"></a> Supported platforms
3235

33-
SQL Server 2017 RC1 is supported on the following platforms:
36+
SQL Server 2017 is supported on the following Linux platforms:
3437

3538
| Platform | Supported version(s) | Get
3639
|-----|-----|-----
@@ -45,11 +48,11 @@ SQL Server 2017 has the following system requirements for Linux:
4548

4649
|||
4750
|-----|-----|
48-
| **Memory** | Minimum 3.25 GB |
51+
| **Memory** | 3.25 GB |
4952
| **File System** | **XFS** or **EXT4** (other file systems, such as **BTRFS**, are unsupported) |
50-
| **Disk space** | Minimum 1 GB |
51-
| **Processor speed** | Minimum 1.4 GHz |
52-
| **Processor cores** | Minimum 2 |
53+
| **Disk space** | 6 GB |
54+
| **Processor speed** | 2 GHz |
55+
| **Processor cores** | 2 cores |
5356
| **Processor type** | x64-compatible only |
5457

5558
> [!NOTE]

0 commit comments

Comments
 (0)