about summary refs log tree commit diff stats
path: root/html/031merge.cc.html
Commit message (Collapse)AuthorAgeFilesLines
* 4709Kartik Agaram2018-10-171-12/+12
|
* 4539Kartik Agaram2018-09-071-8/+8
|
* 4447Kartik Agaram2018-07-271-19/+18
|
* 4243Kartik Agaram2018-05-121-2/+2
|
* 4239Kartik Agaram2018-05-081-9/+9
|
* 4228Kartik K. Agaram2018-03-151-2/+2
|
* 4199Kartik K. Agaram2018-01-251-90/+89
|
* 4161Kartik K. Agaram2017-12-151-6/+6
|
* 4155Kartik K. Agaram2017-12-071-12/+12
|
* 4134 - 'input' = 'ingredient'Kartik K. Agaram2017-12-031-1/+1
|
* 4122Kartik K. Agaram2017-11-151-2/+2
|
* 4109Kartik K. Agaram2017-11-051-2/+2
|
* 4102Kartik K. Agaram2017-11-011-1/+1
|
* 3990Kartik K. Agaram2017-09-031-4/+4
|
* 3963Kartik K. Agaram2017-07-081-2/+2
| | | | | | | | Narrow the scope of implicit type conversions. Now only numbers can be freely converted to from other scalars (booleans, characters). We want in particular to make this an error: x:character <- new [abc]
* 3927Kartik K. Agaram2017-06-191-13/+13
|
* 3897 - various updates to documentationKartik K. Agaram2017-05-291-11/+11
|
* 3877Kartik K. Agaram2017-05-261-7/+7
|
* 3764 - better colors for cross-linksKartik K. Agaram2017-03-081-4/+5
|
* 3761Kartik K. Agaram2017-03-071-87/+88
|
* 3750Kartik K. Agaram2017-03-021-12/+12
|
* 3749Kartik K. Agaram2017-03-021-12/+12
|
* 3746Kartik K. Agaram2017-02-071-2/+2
|
* 3725Kartik K. Agaram2016-12-271-1/+1
| | | | | | More improvements to cross-linking example programs. Include their own functions as well in the tags for each program, even as you share the core .mu files everywhere.
* 3716Kartik K. Agaram2016-12-261-0/+2
| | | | Make hyperlinks less salient in the rendered html since there's so many of them.
* 3713 - cross-link calls with definitions in htmlKartik K. Agaram2016-12-261-48/+48
|
* 3710Kartik K. Agaram2016-12-261-227/+227
| | | | | Turns out we don't need to explicitly add anchors for each line. Vim's TOhtml has magic for that out of the box.
* 3709 - line numbers in htmlKartik K. Agaram2016-12-261-231/+255
| | | | | | Each line number also gets an anchor name, but I'm not hyperlinking them for now because I don't want to encourage bookmarking these links just yet. They aren't permalinks because every revision may change what's at any given line number.
* 3707Kartik K. Agaram2016-12-121-2/+2
| | | | | | | | | | | | | | | | | | Be more disciplined about tagging 2 different concepts in the codebase: a) Use the phrase "later layers" to highlight places where a layer doesn't have the simplest possible self-contained implementation. b) Use the word "hook" to point out functions that exist purely to provide waypoints for extension by future layers. Since both these only make sense in the pre-tangled representation of the codebase, using '//:' and '#:' comments to get them stripped out of tangled output. (Though '#:' comments still make it to tangled output at the moment. Let's see if we use it enough to be worth supporting. Scenarios are pretty unreadable in tangled output anyway.)
* 3667Kartik K. Agaram2016-11-111-3/+9
|
* 3558Kartik K. Agaram2016-10-221-1/+1
|
* 3544Kartik K. Agaram2016-10-221-1/+1
|
* 3543Kartik K. Agaram2016-10-221-1/+1
|
* 3524Kartik K. Agaram2016-10-201-3/+3
|
* 3431Kartik K. Agaram2016-09-301-14/+16
| | | | | Improvements to syntax highlighting, particularly for Mu code in C++ files.
* 3395Kartik K. Agaram2016-09-171-4/+4
|
* 3315Kartik K. Agaram2016-09-101-7/+9
|
* 3158Kartik K. Agaram2016-07-271-7/+7
|
* 3117Kartik K. Agaram2016-07-201-1/+0
|
* 3102Kartik K. Agaram2016-07-051-1/+2
|
* 2996Kartik K. Agaram2016-05-211-0/+258
s="s">"index.html">Tools Index</a> <h1>Storage</h1> <h2 id="fsck">1. Maintenance</h2> <p>SMART provides statistics of disk firmware, this system handle errors has their occur. Badblocks detect bad blocks by writing and reading from disk in a destructive test. Example of how to view SMART statistics of a disk;</p> <pre> # smartctl -t long /dev/sdb1 # smartctl -a /dev/sdb1 | less </pre> <p>Search for bad blocks using <a href="https://wiki.archlinux.org/index.php/Badblocks">non destructive test;</a></p> <pre> # badblocks -nsv /dev/sdb1 </pre> <h2 id="mv">2. Moving data</h2> <p>Temp partition with 20M-50M;</p> <pre> (parted) mkpart primary ext4 4000MiB 4050MiB </pre> <p>Ports partition with 120G allows to host sources, package backups and ports;</p> <pre> (parted) mkpart primary ext4 192000MiB 312000MiB </pre> <p>Reboot into single-user mode where services aren't started and networking is offline.<p> <pre> # init 1 </pre> <p>Copy the data:</p> <pre> # cp -apx /srv/* /mnt/srv </pre> <p>Rename directory, for later backup;</p> <pre> # mv /srv /srv.old # mkdir /srv </pre> <p>Edit the <a href="../conf/etc/fstab">/etc/fstab</a>file:</p> <pre> # Temporary Data /tmp UUID=50bf6e55-6461-4dd4-b315-65b53cac0995 /tmp ext4 defaults,nodev,nosuid,noexec 0 0 # Server Data /srv UUID=6fadcb98-e442-4af7-a5f2-1ddb6100a8c4 /srv ext4 defaults 0 2 # Ports Data /usr/ports UUID=d1df6743-d3cb-4d5a-badb-96cef3181095 /usr/ports ext4 defaults,nodev,nosuid,noexec 0 0 </pre> <p>Reboot in normal mode.</p> <h2 id="resize">2. Resize filesystem</h2> <p>If partition is using lvm read <a href="lvm.html#resize">lvm resize</a>, if you are using qemu images read <a href="qemu.html#resize">resize images</a></p> <pre> # resize2fs /dev/sda3 # e2fsck /dev/sda3 </pre> <a href="index.html">Tools Index</a> <p> This is part of the c9-doc Manual. Copyright (C) 2016 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> </html>