This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # .bashrc | |
| # If not running interactively, don't do anything | |
| [ -z "$PS1" ] && return | |
| # Source global definitions | |
| if [ -f /etc/bashrc ]; then | |
| . /etc/bashrc | |
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # /etc/fstab: static file system information. | |
| # | |
| # Use 'blkid' to print the universally unique identifier for a | |
| # device; this may be used with UUID= as a more robust way to name devices | |
| # that works even if disks are added and removed. See fstab(5). | |
| # | |
| # Package dependencies (Ubuntu): | |
| # apt-get install samba cifs-utils | |
| # | |
| # The .smbcredentials file looks like this (omit the '# ' preceding each line): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| ### BEGIN INIT INFO | |
| # Provides: vmwareautostart | |
| # Required-Start: $vmware $network $syslog | |
| # Required-Stop: $vmware $network $syslog | |
| # X-Start-Before: | |
| # X-Stop-After: | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 |